com um clique
clickup-attach
Attach files to ClickUp tasks via LocalApiServer
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Attach files to ClickUp tasks via LocalApiServer
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
When planning, flag uncertain assumptions and supply a ready-to-run web-research prompt to confirm them.
Local Switchboard management console — drive the board when the VS Code extension is running
Implement with high accuracy and self-review (invest effort up front to minimize rework)
Reconcile and restructure a feature's subtasks — improve each, then merge/delete/rewrite/split to make the set coherent
Deep planning, dependency checks, and adversarial review
Cloud-VM planning mode — plan first, do not auto-code in a remote VM
| name | clickup-attach |
| description | Attach files to ClickUp tasks via LocalApiServer |
| allowed-tools | Bash |
| disable-model-invocation | true |
switchboard.apiToken configuredCUR="$PWD"
while [ "$CUR" != "/" ] && [ ! -d "$CUR/.agents/skills" ]; do CUR=$(dirname "$CUR"); done
source "$CUR/.agents/skills/_lib/sb_api_call.sh"
# Encode file as Base64 (macOS/Linux)
FILE_BASE64=$(base64 -i "./screenshot.png" | tr -d '\n')
sb_api_call POST "/task/clickup/$TASK_ID/attach" \
-H "Content-Type: application/json" \
-d "{
\"fileName\": \"screenshot.png\",
\"fileDataBase64\": \"$FILE_BASE64\",
\"comment\": \"Screenshot of issue\"
}"
{
"success": true,
"url": "https://...",
"fileName": "screenshot.png",
"size": 12345
}