Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Execute and validate ClickUp workspace, folder, list, task, and assignment operations deterministically with full error handling and progress diagnostics.
Execute and validate ClickUp workspace, folder, list, task, and assignment operations deterministically with full error handling and progress diagnostics.
This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.
Deterministic Operations Only โ Every command either succeeds with clear confirmation or fails with explicit error. No ambiguous states. No silent failures. Full validation at every step.
This skill contains the complete ClickUp API documentation internally: All 50+ API endpoints Request/response schemas Rate limits (100 req/min) Error codes and handling Webhook patterns Best practices from official docs MCP Context โ Included as documented fallback for edge cases only (complex workspace templates, bulk operations exceeding rate limits, cross-workspace moves).
Input: "Create a project for Acme Corp with onboarding, web design, and monthly retainer phases" Parse: - workspace: Delivery - client: Acme Corp - structure: folder โ 3 lists (onboarding, web-design, retainer) - assignees: find by email/name - due dates: infer from phases - custom fields: budget, priority, status Execute: deterministic sequence with rollback on failure Verify: each list created, each task present, assignments correct Confirm: "Project Acme Corp created with 3 phases, 12 tasks, assigned to George & Matthew, due 2026-03-15"
Input: "What's blocking the Scent of a Milien project?" Flow: - Scan all tasks in folder - Identify status: blocked, overdue, no-assignee - Check dependencies: waiting on other tasks - Estimate completion: based on task complexity, assignee velocity - Report: "3 tasks blocked (waiting on George's video edits). ETA: +5 days. Suggest: reassign or parallelize"
Input: "Get Sharyar and Matthew on the Kortex onboarding task" Flow: - Find Sharyar (check existing members or invite) - Find Matthew (check existing or invite) - Locate Kortex onboarding task - Add both as assignees - Comment: "@Sharyar @Matthew โ Kortex onboarding ready for your review. See attached Loom." - Set due date: +3 days - Set priority: high - Set status: "in progress" - Confirm: "Sharyar and Matthew assigned to Kortex onboarding, due 2026-02-21"
Input: "Set up a new client workspace for Luxury Homes using our real estate template" Parse: - Template: detect "real estate" โ use predefined structure - Spaces: Delivery + Operations - Folders: Client Name โ Market Research, Design, Build, Launch - Lists: Per-phase task lists with default tasks - Custom Fields: Budget, Timeline, Priority, Platform - Assignees: Based on team roles from People graph - Automations: Status change triggers, due date reminders Execute: Create full hierarchy, validate each step Confirm: "Luxury Homes workspace created: 2 spaces, 4 folders, 12 lists, 48 tasks, 5 team members assigned, automations active"
def create_task(params): # 1. Validate inputs assert params.name, "Task name required" assert len(params.name) <= 200, "Name too long" # 2. Check preconditions if params.list_id: assert list_exists(params.list_id), f"List {params.list_id} not found" # 3. Execute API call try: result = api_post("/task", params.dict()) except RateLimitError as e: # Retry with exponential backoff wait(e.retry_after + 1) result = api_post("/task", params.dict()) except ValidationError as e: # Return explicit error raise ClickUpError(f"Invalid data: {e.details}") # 4. Verify result assert result.id, "No task ID returned" assert result.name == params.name, "Name mismatch" # 5. Confirm success return { "id": result.id, "name": result.name, "url": result.url, "created": True, "validated": True }
rate_limit โ retry + backoff validation_failed โ return field-level errors not_found โ suggest corrections permission_denied โ suggest workspace access conflict โ offer resolution (rename, merge)
# What's the status of project X? clickup-op diagnose --project "Clarify" --depth full # Who's blocking project Y? clickup-op blockers --project "Scent Of A Milien" --format report # Estimate completion date clickup-op estimate --project "Mel website" --include-dependencies # Suggest resource allocation clickup-op allocate --team "George,Matthew,Sharyar" --capacity 40h/week
Before declaring operational: Create 10 test workspaces Generate 100 tasks with all variations (assignees, due dates, priorities, tags, dependencies, comments, checklists, time entries) Execute 50 bulk operations (update 10 tasks, move 5, delete 3, restore 2) Run all diagnostic commands, verify output accuracy Trigger 20 error conditions, verify explicit error messages Test fallback to MCP on bulk operations that hit rate limits Success criteria: 100% operation success rate OR explicit error with resolution 0 ambiguous states (task exists but unconfirmed) All diagnostics produce sensible estimates Natural language parsing handles 95% of user inputs
Every successful operation stores: Mem0: "Created 12 tasks for Acme Corp project" Neo4j: (Task) -[CREATED_IN]โ (Project "Acme Corp"), (George) -[ASSIGNED_TO]โ (Task) SQLite: decisions table: decision type, parameters, outcome, timestamp Enables queries like: "What projects did I create last week?" โ Mem0 search "Who's overloaded?" โ Neo4j query assignee task counts "What's my completion rate?" โ SQLite aggregation
skills/clickup-operational/ โโโ SKILL.md # This spec + user docs โโโ scripts/ โ โโโ clickup_op.py # Main CLI (800+ lines) โ โโโ diagnostic.py # Progress/suggestion engine โ โโโ natural_parser.py # NL โ structured commands โ โโโ brain_sync.py # Auto-store to brain system โโโ tests/ โโโ test_workspace_setup.py โโโ test_task_lifecycle.py โโโ test_diagnostics.py โโโ test_natural_language.py
Query to 4 models: "Design the most robust ClickUp operational skill possible. It must handle workspace creation, folder/list structures, task CRUD, assignments, comments, time tracking, reporting, and diagnostics. Must be deterministic (no ambiguous states), validate every API response, handle all errors explicitly, and include comprehensive testing. Include full CLI command list, request/response schemas, and error handling patterns." Synthesize responses โ extract best patterns from each model โ build unified implementation. Estimated build time: 4-6 hours with Model Council Lines of code: ~2,500 (comprehensive, not minimal) Test coverage: 95%+ of API endpoints and error paths
Model Council design session (when credits reset) Build core CLI (workspace, folder, list, task operations) Add diagnostic engine (progress, blockers, estimates) Build natural language parser (intent โ structured) Integrate brain sync (auto-store operations) Comprehensive testing (100 tasks, 50 bulk ops, all error paths) Operational verification (create real projects, diagnose real blockers) This skill becomes your Operational Co-CEO for ClickUp.
Spec saved: /home/node/.openclaw/workspace/skills/clickup-operational/spec.md Not yet implemented - awaiting Claude credits reset for Model Council build Priority: Critical - This unlocks full business operational capability
Brain ingestion must be implemented first (all ClickUp operations to flow through brain) ClickUp MCP available as fallback but skill is primary path All client projects go in Delivery space, agent operations in AgxntSix-openclaw space Natural language parsing must handle 95%+ of business owner requests without clarification
Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.
Largest current source with strong distribution and engagement signals.