Clickup hello world
Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/clickup-hello-world
π§ The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.
npx -y skills add ComeOnOliver/skillshub --skill clickup-hello-worldAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
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".
The file declares its own license as MIT. That is the authorβs claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.6 KB, ~1.3k tokens by cl100k_base, as published. Nobody here has run it
ClickUp Hello World
Overview
Walk through the ClickUp hierarchy and make your first API calls. ClickUp's data model: Workspace (called "team" in API v2) > Space > Folder (optional) > List > Task.
Prerequisites
- Completed
clickup-install-authsetup - Valid
CLICKUP_API_TOKENin environment
ClickUp Hierarchy
Workspace (team_id) GET /api/v2/team
βββ Space (space_id) GET /api/v2/team/{team_id}/space
βββ List GET /api/v2/space/{space_id}/list (folderless lists)
βββ Folder GET /api/v2/space/{space_id}/folder
βββ List GET /api/v2/folder/{folder_id}/list
βββ Task GET /api/v2/list/{list_id}/task
Step 1: Discover Your Workspace
# Get authorized workspaces (returns team_id needed for all subsequent calls)
curl -s https://api.clickup.com/api/v2/team \
-H "Authorization: $CLICKUP_API_TOKEN" | jq '.teams[] | {id, name}'
Response shape:
{
"teams": [{
"id": "1234567",
"name": "My Workspace",
"color": "#536cfe",
"members": [{ "user": { "id": 123, "username": "john", "email": "[email protected]" } }]
}]
}
Step 2: List Spaces
TEAM_ID="1234567"
curl -s "https://api.clickup.com/api/v2/team/${TEAM_ID}/space?archived=false" \
-H "Authorization: $CLICKUP_API_TOKEN" | jq '.spaces[] | {id, name}'
Step 3: Get Lists in a Space
SPACE_ID="12345678"
# Folderless lists (directly in Space)
curl -s "https://api.clickup.com/api/v2/space/${SPACE_ID}/list" \
-H "Authorization: $CLICKUP_API_TOKEN" | jq '.lists[] | {id, name}'
# Or lists inside folders
curl -s "https://api.clickup.com/api/v2/space/${SPACE_ID}/folder" \
-H "Authorization: $CLICKUP_API_TOKEN" | jq '.folders[] | {id, name, lists: [.lists[] | {id, name}]}'
Step 4: Create Your First Task
LIST_ID="900100200300"
curl -s -X POST "https://api.clickup.com/api/v2/list/${LIST_ID}/task" \
-H "Authorization: $CLICKUP_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Hello from the ClickUp API!",
"description": "Created via API v2",
"priority": 3,
"status": "to do"
}' | jq '{id, name, url}'
// TypeScript equivalent
async function createFirstTask(listId: string) {
const task = await clickupRequest(`/list/${listId}/task`, {
method: 'POST',
body: JSON.stringify({
name: 'Hello from the ClickUp API!',
description: 'Created via API v2',
priority: 3, // 1=Urgent, 2=High, 3=Normal, 4=Low
status: 'to do',
assignees: [123456], // user IDs (optional)
due_date: Date.now() + 86400000, // tomorrow (Unix ms)
due_date_time: true,
}),
});
console.log(`Task created: ${task.name} (${task.id})`);
console.log(`URL: ${task.url}`);
return task;
}
Create Task Response Shape
{
"id": "abc123",
"custom_id": null,
"name": "Hello from the ClickUp API!",
"status": { "status": "to do", "color": "#d3d3d3", "type": "open" },
"priority": { "id": "3", "priority": "normal", "color": "#6fddff" },
"date_created": "1695000000000",
"date_updated": "1695000000000",
"due_date": "1695086400000",
"url": "https://app.clickup.com/t/abc123",
"list": { "id": "900100200300", "name": "My List" },
"folder": { "id": "456", "name": "My Folder" },
"space": { "id": "12345678" }
}
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Missing/invalid token | Check CLICKUP_API_TOKEN |
| 404 Not Found | Invalid list_id/team_id | Verify IDs via GET /team |
| 400 Bad Request | Missing name field | Task name is required |
| 429 Rate Limited | Too many requests | Wait for X-RateLimit-Reset |
Resources
Next Steps
Proceed to clickup-core-workflow-a for workspace/space/task management patterns.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.