4.7k★by mrgoodb
box – OpenClaw Skill
box is an OpenClaw Skills integration for coding workflows. Manage files and folders via Box API. Upload, download, and share content securely.
4.7k stars1.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding
Skill Snapshot
| name | box |
| description | Manage files and folders via Box API. Upload, download, and share content securely. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/box |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/box |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
259 BSKILL.md
837 BSKILL.md
name: box description: Manage files and folders via Box API. Upload, download, and share content securely. metadata: {"clawdbot":{"emoji":"📦","requires":{"env":["BOX_ACCESS_TOKEN"]}}}
Box
Enterprise cloud storage.
Environment
export BOX_ACCESS_TOKEN="xxxxxxxxxx"
List Files in Folder
curl "https://api.box.com/2.0/folders/0/items" -H "Authorization: Bearer $BOX_ACCESS_TOKEN"
Upload File
curl -X POST "https://upload.box.com/api/2.0/files/content" \
-H "Authorization: Bearer $BOX_ACCESS_TOKEN" \
-F "attributes={\"name\":\"file.txt\",\"parent\":{\"id\":\"0\"}}" \
-F "file=@localfile.txt"
Download File
curl "https://api.box.com/2.0/files/{fileId}/content" -H "Authorization: Bearer $BOX_ACCESS_TOKEN" -o file.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 box?
Run openclaw add @mrgoodb/box in your terminal. This installs box 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/box. Review commits and README documentation before installing.
