3.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
| name | onedrive |
| description | Manage OneDrive files and folders via Microsoft Graph. Upload, download, and share files. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/onedrive |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/onedrive |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
269 BSKILL.md
951 BSKILL.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
Download File
curl "https://graph.microsoft.com/v1.0/me/drive/items/{itemId}/content" \
-H "Authorization: Bearer $MICROSOFT_ACCESS_TOKEN" -o downloaded.txt
Links
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.
