← Back to Skills Marketplace
aiwithabidi

Clickup Operational

by aiwithabidi · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
440
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install clickup-operational
Description
Execute and validate ClickUp workspace, folder, list, task, and assignment operations deterministically with full error handling and progress diagnostics.
README (SKILL.md)

ClickUp Operational Master Skill - Design Spec

Core Philosophy

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.

Embedded Knowledge Base

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).

Operational Capabilities

1. Natural Language Parsing → Structured Commands

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"

2. Progress Diagnosis & Timeline Estimation

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"

3. Assignment Orchestration

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"

4. Workspace Creation from Template

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"

5. Intelligent Task Generation

Input: "Break down the Clarify website project into technical tasks"
Generate: 
- [ ] Setup Git repository and CI/CD pipeline
- [ ] Install dependencies (npm, build tools)
- [ ] Create page components: Home, About, Contact, Services
- [ ] Implement contact form with validation
- [ ] SEO setup: sitemap.xml, robots.txt, LLMs.txt
- [ ] Lighthouse audit and performance optimization
- [ ] Deploy to Vercel/production
- [ ] Set up analytics tracking

Each task gets: estimated hours, assignee (based on skills), dependencies (creates task links), custom fields (priority: high, tags: website, client: Clarify)

Error Handling & Determinism

Every operation follows this pattern:

def create_task(params):
    # 1. Validate inputs
    assert params.name, "Task name required"
    assert len(params.name) \x3C= 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
    }

Common errors handled explicitly:

  • rate_limit → retry + backoff
  • validation_failed → return field-level errors
  • not_found → suggest corrections
  • permission_denied → suggest workspace access
  • conflict → offer resolution (rename, merge)

Diagnostic Commands

# 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

Testing Strategy

Before declaring operational:

  1. Create 10 test workspaces
  2. Generate 100 tasks with all variations (assignees, due dates, priorities, tags, dependencies, comments, checklists, time entries)
  3. Execute 50 bulk operations (update 10 tasks, move 5, delete 3, restore 2)
  4. Run all diagnostic commands, verify output accuracy
  5. Trigger 20 error conditions, verify explicit error messages
  6. 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

Integration with Brain System

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

Files Structure

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

Building This Skill (Model Council Required)

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

Execution Order

  1. Model Council design session (when credits reset)
  2. Build core CLI (workspace, folder, list, task operations)
  3. Add diagnostic engine (progress, blockers, estimates)
  4. Build natural language parser (intent → structured)
  5. Integrate brain sync (auto-store operations)
  6. Comprehensive testing (100 tasks, 50 bulk ops, all error paths)
  7. Operational verification (create real projects, diagnose real blockers)

This skill becomes your Operational Co-CEO for ClickUp.

Status

  • 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

Related Decisions

  • 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
Usage Guidance
Do not install or grant permissions yet. The skill's spec describes automated ClickUp operations and writes to external "brain" systems, but the package contains only documentation (no code or installer) and declares no API tokens, database URIs, or install steps. Ask the publisher for: (1) source code or a verifiable homepage/repo; (2) an explicit install mechanism and a checksumed release; (3) a clear list of required environment variables (ClickUp API token and scopes, Neo4j/SQLite/Mem0 connection details) and why each is needed; (4) privacy/retention policy for stored data and where Mem0/Neo4j writes will live; (5) whether the skill will invite users or send emails and what scopes are required. Until you can review code and confirm the exact credentials and endpoints, test only in a sandbox ClickUp workspace with least privilege API tokens and no access to sensitive data.
Capability Analysis
Type: OpenClaw Skill Name: clickup-operational Version: 1.0.0 The skill describes extensive and high-privilege operations with the ClickUp API, including creating/managing workspaces, tasks, and users. While the design emphasizes robust error handling, input validation, and deterministic operations, the description of internal CLI commands (e.g., `clickup-op diagnose --project "Clarify"`) in `SKILL.md` and `spec.md` presents a potential shell injection vulnerability if user-controlled input is directly interpolated without proper sanitization in the actual implementation. This represents a significant vulnerability risk, classifying the skill as suspicious due to risky capabilities, even without clear evidence of intentional malicious behavior or data exfiltration.
Capability Assessment
Purpose & Capability
The README/spec claim full ClickUp API automation (creating workspaces, inviting users, reading all tasks, webhooks) and integration with brain systems (Mem0, Neo4j, SQLite). Yet the skill declares no required environment variables, no primary credential, and no required config paths. Real ClickUp operations require an API token and scopes; Neo4j/SQLite/Mem0 integrations require connection URIs/credentials. This mismatch indicates the declared requirements do not match the stated purpose.
Instruction Scope
SKILL.md instructs scanning tasks, finding/inviting users, posting comments (including mentions), attaching external artifacts (Loom), and auto-storing every operation into Mem0/Neo4j/SQLite. Those instructions go beyond a passive helper: they read workspace state, modify resources, and persist data to other systems. The spec also references fallbacks to 'MCP' and a 'People graph' with no explanation of endpoints or privacy controls. The instructions therefore ask the agent to access and transmit data without specifying where credentials/configuration come from.
Install Mechanism
There is no install spec and no code files shipped, but the spec refers to a substantive codebase (scripts/, CLI clickup-op, tests). The skill documents CLI commands and Python function examples as if binaries exist. That inconsistency (commands referenced but not provided) is a red flag: either the skill is incomplete or it expects external binaries/implementation to already exist in the environment — which should have been declared.
Credentials
No environment variables, tokens, or config paths are declared, yet the operational steps require: ClickUp API token and OAuth scopes, DB connection strings (Neo4j, SQLite file path or URI), and likely access to a People graph and email/invite capabilities. The skill also implies the ability to post comments and upload attachments. Requiring broad unspecified credentials would be disproportionate; the absence of explicit credential requirements is a coherence problem.
Persistence & Privilege
The skill states it will auto-store every successful operation into persistent systems (Mem0, Neo4j, SQLite). While always:false (not force-included), the spec envisions persistent writes to multiple backends. Those persistence actions require clear consent, storage locations, and retention rules — none are declared. There's no evidence how/where data is stored or how brain credentials are provided, which increases the risk of unexpected data persistence or leakage.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clickup-operational
  3. After installation, invoke the skill by name or use /clickup-operational
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release: Deterministic, full-featured ClickUp operational skill with embedded API knowledge and robust error handling. - Implements natural language parsing for complex project/task actions with step-by-step validation and explicit success/error confirmations. - Diagnoses project progress, blockers, and estimates completion timelines using structured analysis. - Automates assignment orchestration, workspace creation from templates, and intelligent technical task breakdowns. - Enforces strict error handling across all operations (rate limits, validation, permissions, conflict resolution). - Integrates with internal brain systems (Mem0, Neo4j, SQLite) for cross-project insight and audit trails. - Comprehensive CLI and automated test strategy to ensure operational reliability and deterministic results.
Metadata
Slug clickup-operational
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Clickup Operational?

Execute and validate ClickUp workspace, folder, list, task, and assignment operations deterministically with full error handling and progress diagnostics. It is an AI Agent Skill for Claude Code / OpenClaw, with 440 downloads so far.

How do I install Clickup Operational?

Run "/install clickup-operational" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Clickup Operational free?

Yes, Clickup Operational is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Clickup Operational support?

Clickup Operational is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Clickup Operational?

It is built and maintained by aiwithabidi (@aiwithabidi); the current version is v1.0.0.

💬 Comments