skills$openclaw/box
mrgoodb4.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

namebox
descriptionManage files and folders via Box API. Upload, download, and share content securely. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/box
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/box
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains box in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
259 B
SKILL.md
837 B
SKILL.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"
curl "https://api.box.com/2.0/files/{fileId}/content" -H "Authorization: Bearer $BOX_ACCESS_TOKEN" -o file.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 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.