skills$openclaw/onedrive
mrgoodb3.6k

by mrgoodb

onedrive – OpenClaw Skill

onedrive is an OpenClaw Skills integration for writing workflows. Manage OneDrive files and folders via Microsoft Graph. Upload, download, and share files.

3.6k stars9.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

nameonedrive
descriptionManage OneDrive files and folders via Microsoft Graph. Upload, download, and share files. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/onedrive
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/onedrive
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains onedrive in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
269 B
SKILL.md
951 B
SKILL.md

name: onedrive description: Manage OneDrive files and folders via Microsoft Graph. Upload, download, and share files. metadata: {"clawdbot":{"emoji":"☁️","requires":{"env":["MICROSOFT_ACCESS_TOKEN"]}}}

OneDrive

Microsoft cloud storage.

Environment

export MICROSOFT_ACCESS_TOKEN="xxxxxxxxxx"

List Root Files

curl "https://graph.microsoft.com/v1.0/me/drive/root/children" -H "Authorization: Bearer $MICROSOFT_ACCESS_TOKEN"

Upload File

curl -X PUT "https://graph.microsoft.com/v1.0/me/drive/root:/filename.txt:/content" \
  -H "Authorization: Bearer $MICROSOFT_ACCESS_TOKEN" \
  -H "Content-Type: text/plain" \
  --data-binary @localfile.txt
curl "https://graph.microsoft.com/v1.0/me/drive/items/{itemId}/content" \
  -H "Authorization: Bearer $MICROSOFT_ACCESS_TOKEN" -o downloaded.txt
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install onedrive?

Run openclaw add @mrgoodb/onedrive in your terminal. This installs onedrive into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/onedrive. Review commits and README documentation before installing.