ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

clickup

Enterprise-grade ClickUp project management integration with advanced reporting, multi-workspace support, and client/project tracking. Core capabilities: (1) Multi-workspace task management with automatic workspace switching, (2) Advanced analytics & reporting (task counts, assignee breakdowns, status/priority analysis, daily standup reports) with automatic subtask inclusion and pagination, (3) Client folder organization with project tracking, (4) Full CRUD operations for spaces, folders, lists, tasks, and custom fields, (5) Time tracking & timer management with billing support, (6) Document creation and page management (API v3), (7) Task dependencies, linking, and relationship mapping, (8) Sales pipeline tracking with prospect/project status, (9) Retainer & recurring billing management. Built for agencies managing multiple clients across complex workspace hierarchies.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/d3layd/clickup-skill
Or

ClickUp Skill

Enterprise-grade ClickUp integration for agency workflows. Manage multiple clients, projects, and workspaces with advanced reporting, automatic subtask handling, and sophisticated folder organization.

Key Benefits

FeatureWhy It Matters
šŸ” Always includes subtasksNever miss 70%+ of actual work — subtasks included automatically
šŸ“Š Advanced reportingTask counts, workload distribution, status breakdowns, standup reports
šŸ¢ Multi-workspaceSeamlessly switch between Elevated, Atrium, Winch Life, and more
šŸ‘„ Client organizationStructured folders: šŸ“‹ Client Overview, šŸ“ Completed Work, active projects
šŸ“ˆ Sales pipelineTrack proposals, negotiations, and project lifecycles
ā±ļø Time trackingBuilt-in timers and manual entries with billing support
šŸ“„ Document managementCreate docs and pages via API v3
šŸ”— Task relationshipsDependencies, blocking/waiting, and arbitrary task linking

Quick Start

Setup

Set your ClickUp API token:

export CLICKUP_API_TOKEN="pk_your_token_here"

Get your token from: ClickUp Settings → Apps → Generate API Token

Basic Operations

List all workspaces:

python scripts/clickup_client.py get_teams

Create a task:

python scripts/clickup_client.py create_task list_id="123" name="New Task" status="to do"

Update a task:

python scripts/clickup_client.py update_task task_id="abc" status="in progress"

Workspace Hierarchy

Team (Workspace)
ā”œā”€ā”€ Spaces
│   ā”œā”€ā”€ Folders
│   │   └── Lists → Tasks
│   └── Lists (Folderless) → Tasks
└── Documents

All operations require explicit workspace identification via IDs.

Multi-Workspace Support

This skill supports operations across multiple ClickUp workspaces:

  1. Use get_teams to list available workspaces
  2. Reference workspace by team_id in operations
  3. Each workspace maintains independent spaces, folders, lists
  4. Custom task IDs require both custom_task_ids=true and team_id

Common Workflows

Workflow: Create Task in Specific Workspace

  1. Get workspace ID: get_teams
  2. Get target space: get_spaces team_id="xxx"
  3. Get or create list: get_folders space_id="yyy" → get_lists folder_id="zzz"
  4. Create task: create_task list_id="aaa" name="Task" ...

Workflow: Configure Space Statuses

  1. Get space: get_space space_id="xxx"
  2. Update space with statuses: update_space space_id="xxx" statuses=[...]

See API Reference for status configuration format.

Workflow: Track Time on Task

Option A - Manual Entry:

python scripts/clickup_client.py create_time_entry \
  team_id="xxx" \
  task_id="yyy" \
  duration=3600000 \
  description="Worked on feature"

Option B - Timer:

# Start timer
python scripts/clickup_client.py start_timer team_id="xxx" task_id="yyy"

Metadata

Author@d3layd
Stars2102
Views0
Updated2026-03-06
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-d3layd-clickup-skill": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.