一键导入
use-clickup
Task and list management in ClickUp via the official API. Use when creating tasks, updating dates, searching activities, and managing lists.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Task and list management in ClickUp via the official API. Use when creating tasks, updating dates, searching activities, and managing lists.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Fetches live model data from OpenRouter and Artificial Analysis APIs, merges benchmarks with pricing, runs deep cost analysis on usage logs, exports usage from LLM surfaces (OpenCode, VS Code, etc.), analyzes subscription efficiency, and forecasts future spend with cheaper-model alternatives. Use when comparing LLM costs or quality, analyzing total API spend from usage logs, exporting agent usage for cost analysis, evaluating subscription cost efficiency, forecasting future LLM costs, finding cheaper alternatives, or when the user asks about model pricing, intelligence index, speed, or token costs across providers.
Genera documentos académicos en formato APA 7 (estudiante) con validación estricta de citas y salida en PDF vía Typst. Usa cuando el usuario necesita validar referencias, formatear bibliografía, componer un paper con estructura IMRaD, o compilar un documento académico a PDF.
Extrae información de cursos Moodle Uniremington y organiza estructura de carpetas local. Usa cuando necesites inicializar cursos, sincronizar contenido o verificar estado de un curso vs Moodle.
Proactive version control strategy for AI agents. Creates worktrees, commits at plan checkpoints with conventional commits, merges at plan completion. Use when starting any development session that involves code changes. Load at session start and keep in context permanently.
Generate software architecture diagrams, flowcharts, sequence diagrams, block diagrams, C4 models, ER schemas, Sankey flows, state machines, GitGraphs, timelines, and more using Mermaid (v11+) with ELK layout engine. Renders SVG, PNG, and ASCII art via beautiful-mermaid. Use when users ask to diagram, visualize, or map software concepts, system architecture, data flows, processes, or database schemas.
Busca artículos académicos usando EXA, Semantic Scholar y Google Scholar. Usa cuando el usuario necesita encontrar fuentes para un paper, revisar literatura, o dice "busca papers sobre...", "encuentra artículos de...", "qué investigaciones hay sobre...".
| name | use-clickup |
| description | Task and list management in ClickUp via the official API. Use when creating tasks, updating dates, searching activities, and managing lists. |
| language | en-US |
| metadata | {"version":"1.0.0","risk_tier":"MEDIUM"} |
Skill for complete ClickUp management. Essential workflows only,
with comprehensive internal documentation in references/ for advanced capabilities.
ClickUp exposes two API versions for different resource types:
| Version | Base URL | Resources |
|---|---|---|
| v2 | api.clickup.com/api/v2 | Tasks, Lists, Folders, Spaces, Comments, Checklists, Tags, Custom Fields, Goals |
| v3 | api.clickup.com/api/v3 | Docs, Chat (channels, messages, reactions) |
The client routes to the correct version. Use client.get() for v2 resources,
client.v3_get() for v3 resources (Docs, Chat).
script: client.py — shared API client for all ClickUp operations. Authentication and
team configuration are resolved from environment in order:
API key:
.env file in current workspace (CLICKUP_API_KEY variable)CLICKUP_API_KEY environment variableDefault team (optional):
.env file in current workspace (CLICKUP_TEAM variable)CLICKUP_TEAM environment variableNone — caller must specify team at runtimeAll GET requests are cached automatically with endpoint-aware TTLs:
| Tier | Endpoint pattern | TTL | Reasoning |
|---|---|---|---|
| Static | /user, /team, /team/{id}/space | 30 min | Rarely changes |
| Structural | /space/{id}, /folder, /list endpoints | 5 min | Folder/list structure stable |
| Tasks | /list/{id}/task, /team/{id}/task | 1 min | Task lists change often |
Cache invalidation: Any POST, PUT, or DELETE call clears the entire cache.
Cache is stored at use-clickup/.cache/api_cache.json and survives across
script invocations.
Usage: create-task <list_id> <name> [--description] [--due_date] [--tags] [--priority]
script: create_task.py
Example:
/use-clickup create-task abc123 "Initial Test" \
--description "## Instructions\nRun the integration suite" \
--due_date 2026-02-01 \
--tags backend,critical \
--priority high
Priorities: urgent, high, normal, low
Usage: update-task <task_id> [--name] [--description] [--due_date] [--priority] [--tags]
script: update_task.py
Example:
/use-clickup update-task def456 \
--due_date 2026-02-15 \
--priority high
Note: Custom fields cannot be updated via this workflow.
Usage: search-task [--name] [--tag] [--list_id]
script: search_task.py
Example:
/use-clickup search-task --name "Backend tests" --tag backend
For workspace-wide queries (no list ID needed), use the Python API directly:
from search_task import search_workspace_tasks
# All tasks in the default workspace, including closed
results = search_workspace_tasks(
team_id="90132304521",
include_closed=True
)
# Results are auto-sorted by date_closed descending when include_closed=True
Usage: create-list <folder_id> <name>
script: create_list.py
Example:
/use-clickup create-list folder123 "Sprint 23 — Backend Refactor"
Usage: view-lists [--folder_id] [--space_id]
script: view_lists.py
Example:
/use-clickup view-lists --folder_id folder123
| Code | Meaning | Retry? | Action |
|---|---|---|---|
| 200 | Success | - | Continue |
| 400 | Bad request | No | Fix input |
| 401 | Auth failed | No | Verify API key |
| 403 | No permissions | No | Verify access |
| 404 | Not found | No | Verify ID |
| 409 | Conflict | No | Resolve duplicate |
| 429 | Rate limit | Yes | Backoff 1s, 2s, 4s |
| 500 | Server error | Yes | Retry 3x |
ALL ClickUp API documentation lives in references/. Agents MUST search these
files first before making any external lookup — they are designed to be the
canonical reference for forming API queries.
Canonical source: https://developer.clickup.com/reference
If these references are stale (API behavior doesn't match), cross-check against the live docs above and update the reference files.
| File | Covers | Key endpoints |
|---|---|---|
api-tasks.md | Task CRUD, team-level queries, global search | POST /list/{id}/task, PUT /task/{id}, GET /list/{id}/task, GET /team/{id}/task, GET /tasks |
api-lists.md | List CRUD (folder & folderless) | POST /list, POST /space/{id}/list, GET /folder/{id}/list, GET /space/{id}/list |
api-folders.md | Folder CRUD | POST /space/{id}/folder, GET /space/{id}/folder |
api-spaces.md | Space & team discovery | GET /team/{id}/space, GET /team |
api-comments.md | Task & list comments | POST /task/{id}/comment, GET /task/{id}/comment, POST /list/{id}/comment |
api-checklists.md | Checklists & items | POST /task/{id}/checklist, POST /checklist/{id}/checklist_item |
api-tags.md | Space tag management | GET /space/{id}/tag, POST /space/{id}/tag |
api-custom-fields.md | Task custom fields | POST /task/{id}/field/{id}, GET /list/{id}/field |
date-formatting.md | Timestamps (ms), ISO conversion helpers | iso_to_milliseconds(), milliseconds_to_iso() |
error-handling.md | HTTP codes, rate limits, retry strategy | Status codes 200-503, backoff logic |
api-user.md | Authenticated user verification | GET /user |
api-chat.md | Chat channels, messages, reactions (v3) | GET /workspaces/{id}/chat/channels, POST .../messages, POST .../replies |
api-docs.md | Docs & pages (v3) | GET /workspaces/{id}/docs, POST .../docs, GET .../pages |
scripts/*.py call these endpoints. If a script
doesn't support a parameter you need, use the raw client.get() / client.post()
with the endpoint and payload from the reference.These are non-obvious behaviors discovered through live testing. Every agent MUST know these before querying:
| Quirk | Where documented | Workaround |
|---|---|---|
Archived folders hide their lists from GET /folder/{id}/list | api-folders.md, api-lists.md | Fetch folder details (GET /folder/{id}) — lists are embedded inline under lists key |
include_closed=true is mandatory for closed tasks | api-tasks.md | Always pass include_closed=true when querying tasks; lists with only closed tasks appear empty otherwise. Custom statuses with type done/closed are invisible without this flag — discover them via GET /space/{id} → statuses[].type |
Team-level GET /team/{id}/task ignores archived folders | api-tasks.md | Discover archived folders first, then query each list individually |
order_by=closed returns 500 | api-tasks.md | Sort client-side on date_closed instead |
Authorization: Bearer <token> fails for PATs | client.py | Use raw token without Bearer prefix: Authorization: <token> |