Manage OneDrive files and folders via Microsoft Graph. Upload, download, and share files.
Scanned 2/10/2026
Install via CLI
openskills install openclaw/skills---
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
```bash
export MICROSOFT_ACCESS_TOKEN="xxxxxxxxxx"
```
## List Root Files
```bash
curl "https://graph.microsoft.com/v1.0/me/drive/root/children" -H "Authorization: Bearer $MICROSOFT_ACCESS_TOKEN"
```
## Upload File
```bash
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
```bash
curl "https://graph.microsoft.com/v1.0/me/drive/items/{itemId}/content" \
-H "Authorization: Bearer $MICROSOFT_ACCESS_TOKEN" -o downloaded.txt
```
## Links
- Docs: https://docs.microsoft.com/en-us/graph/api/resources/onedrive
No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.