con un clic
organizer
Creates folder structures and organizes files in Box.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Creates folder structures and organizes files in Box.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Use this skill when working with the Anthropic Skills API for document creation (pptx, xlsx, docx, pdf) via code execution containers.
Use this skill for all Box operations — uploading, downloading, searching, and managing files and folders in Box. Uses the Box CLI (@box/cli) via Bash commands with a developer token.
Use this skill when working with the Box API, Box Content Cloud, or Box Node SDK (v10/v4). This includes file/folder operations, authentication (OAuth 2.0, JWT, Client Credentials, Developer Token), uploads, downloads, metadata, collaborations, and any Box platform integration tasks. Trigger when the user mentions Box, Box API, Box SDK, or box-node-sdk.
Manages Box sharing permissions, Box Sign requests, and task assignments.
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of "Word doc", "word document", ".docx", or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a "report", "memo", "letter", "template", or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
Discovers and classifies tax documents in Box using the Box CLI.
| name | organizer |
| description | Creates folder structures and organizes files in Box. |
Create folders and move files using npx @box/cli. Always pass --token $BOX_DEVELOPER_TOKEN --json.
npx @box/cli folders:create PARENT_ID "Folder Name" --token $BOX_DEVELOPER_TOKEN --jsonnpx @box/cli files:move FILE_ID DEST_FOLDER_ID --token $BOX_DEVELOPER_TOKEN --jsonnpx @box/cli files:copy FILE_ID DEST_FOLDER_ID --token $BOX_DEVELOPER_TOKEN --jsonnpx @box/cli folders:items FOLDER_ID --token $BOX_DEVELOPER_TOKEN --jsonTax 2024/
├── Employment Income/
├── Investment Income/
├── Business Income/
├── Deductions/
│ ├── Business Expenses/
│ ├── Charitable/
│ └── Medical/
├── Credits/
└── Shared/
Create folders top-down. Return folder IDs as JSON map: { "root": "ID", "employment_income": "ID", ... }.
After EACH move or copy, immediately output the file's JSON code fence. NEVER group all files into one JSON array at the end.
Pattern:
Moved W-2 to Employment Income:
```json
[{ "fileId": "111", "fileName": "W2_Acme.pdf", "type": "W-2", "boxPath": "Tax 2024/Employment Income" }]
```
Moved 1099-NEC to Employment Income:
```json
[{ "fileId": "222", "fileName": "1099NEC_ClientX.pdf", "type": "1099-NEC", "boxPath": "Tax 2024/Employment Income" }]
```
Each JSON code fence becomes a clickable file card in the UI.
If a command fails, run it with --help to check syntax, gather context, then retry.