clickup-core-workflow-b

Featured

Manage ClickUp workspaces, spaces, folders, lists, and views via API v2. Use when creating project structures, organizing spaces and lists, or managing the ClickUp hierarchy programmatically. Trigger: "clickup space", "clickup folder", "clickup list", "clickup views", "create clickup space", "organize clickup workspace", "clickup hierarchy".

AI & Automation 2,266 stars 315 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 B — Spaces, Folders, Lists & Views ## Overview Manage the ClickUp organizational hierarchy: Workspace > Space > Folder > List. Also covers views (list, board, calendar, gantt) and tags. ## Space Operations ``` POST /api/v2/team/{team_id}/space Create Space GET /api/v2/team/{team_id}/space Get Spaces GET /api/v2/space/{space_id} Get Space PUT /api/v2/space/{space_id} Update Space DELETE /api/v2/space/{space_id} Delete Space ``` ```typescript // Create a Space with ClickApps enabled async function createSpace(teamId: string, name: string) { return clickupRequest(`/team/${teamId}/space`, { method: 'POST', body: JSON.stringify({ name, multiple_assignees: true, features: { due_dates: { enabled: true, start_date: true, remap_due_dates: true }, time_tracking: { enabled: true }, tags: { enabled: true }, time_estimates: { enabled: true }, checklists: { enabled: true }, custom_fields: { enabled: true }, points: { enabled: false }, }, }), }); } ``` ## Folder Operations ``` POST /api/v2/space/{space_id}/folder Create Folder GET /api/v2/space/{space_id}/folder Get Folders GET /api/v2/folder/{folder_id} Get Folder PUT /api/v2/folder/{folder_id} Update Folder DELETE /api/v2/folder/{folder_id} Delete Folder ``` ```typescript async ...

Details

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

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

clickup-hello-world

Make your first ClickUp API v2 calls: list workspaces, spaces, and create a task. Use when starting a new ClickUp integration, testing your setup, or learning the ClickUp hierarchy (Workspace > Space > Folder > List > Task). Trigger: "clickup hello world", "clickup first call", "clickup quick start", "test clickup API", "create clickup task".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clickup-enterprise-rbac

Implement ClickUp Enterprise SSO, OAuth 2.0 multi-workspace access, role-based permissions, and organization management via API v2. Trigger: "clickup SSO", "clickup RBAC", "clickup enterprise", "clickup roles", "clickup permissions", "clickup OAuth app", "clickup multi-workspace".

2,266 Updated today
jeremylongshore
AI & Automation Listed

clickup-automation

Automate ClickUp project management including tasks, spaces, folders, lists, comments, and team operations via Rube MCP (Composio). Always search tools first for current schemas.

335 Updated today
aiskillstore
AI & Automation Featured

clickup-automation

Automate ClickUp project management including tasks, spaces, folders, lists, comments, and team operations via Rube MCP (Composio). Always search tools first for current schemas.

39,227 Updated today
sickn33
AI & Automation Solid

clickup-automation

Automate ClickUp project management including tasks, spaces, folders, lists, comments, and team operations via Rube MCP (Composio). Always search tools first for current schemas.

2,987 Updated 4 days ago
davepoon