clickup
Installation
SKILL.md
ClickUp
Overview
Automate and extend ClickUp — the all-in-one productivity platform. This skill covers the full ClickUp API v2 for managing workspaces, spaces, folders, lists, and tasks programmatically. Includes webhooks for real-time events, custom fields, time tracking, goals, automations, and integration patterns with GitHub, Slack, and CI/CD pipelines.
Instructions
Step 1: Authentication & API Setup
Get an API token from ClickUp Settings → Apps → API Token (personal), or create an OAuth2 app for multi-user integrations.
export CLICKUP_API_TOKEN="pk_xxxxxxxxxxxxxxxxxxxx"
curl -s https://api.clickup.com/api/v2/user \
-H "Authorization: $CLICKUP_API_TOKEN" | python3 -m json.tool