Agent skill

box

Manage files and folders via Box API. Upload, download, and share content securely.

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/box

Metadata

Additional technical details for this skill

clawdbot
{
    "emoji": "\ud83d\udce6",
    "requires": {
        "env": [
            "BOX_ACCESS_TOKEN"
        ]
    }
}

SKILL.md

Box

Enterprise cloud storage.

Environment

bash
export BOX_ACCESS_TOKEN="xxxxxxxxxx"

List Files in Folder

bash
curl "https://api.box.com/2.0/folders/0/items" -H "Authorization: Bearer $BOX_ACCESS_TOKEN"

Upload File

bash
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

bash
curl "https://api.box.com/2.0/files/{fileId}/content" -H "Authorization: Bearer $BOX_ACCESS_TOKEN" -o file.txt

Links

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results