clickup-core-workflow-a

Featured

Manage ClickUp tasks via API v2: create, read, update, delete tasks with assignees, priorities, due dates, subtasks, and statuses. Trigger: "clickup task", "create clickup task", "update task status", "manage clickup tasks", "clickup CRUD", "clickup task management".

AI & Automation 2,359 stars 334 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# ClickUp Core Workflow A — Task Management ## Overview CRUD operations on ClickUp tasks via API v2. Tasks live in Lists and support assignees, priorities (1-4), statuses, due dates, tags, checklists, and custom fields. ## Endpoints | Operation | Method | Endpoint | |-----------|--------|----------| | Create task | POST | `/api/v2/list/{list_id}/task` | | Get task | GET | `/api/v2/task/{task_id}` | | Update task | PUT | `/api/v2/task/{task_id}` | | Delete task | DELETE | `/api/v2/task/{task_id}` | | Get tasks in list | GET | `/api/v2/list/{list_id}/task` | | Add task to list | POST | `/api/v2/list/{list_id}/task/{task_id}` | | Create subtask | POST | `/api/v2/list/{list_id}/task` (with `parent` field) | ## Create Task ```typescript interface CreateTaskBody { name: string; // Required description?: string; // Plain text markdown_description?: string; // Markdown (use instead of description) assignees?: number[]; // Array of user IDs tags?: string[]; // Tag names status?: string; // Status name (e.g., "to do", "in progress") priority?: 1 | 2 | 3 | 4 | null; // 1=Urgent, 2=High, 3=Normal, 4=Low due_date?: number; // Unix timestamp in milliseconds due_date_time?: boolean; // true = show time, false = date only start_date?: number; // Unix ms start_date_time?: boolean; time_estimate?: number; // Time estimate in milliseconds notify_a...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
8 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category