Install
openclaw skills install test-managerManage ClickUp tasks by listing, creating, updating statuses, and retrieving details via ClickUp API using provided workspace and API token.
openclaw skills install test-managerNote: Configure your credentials in TOOLS.md or set environment variables:
CLICKUP_API_TOKEN - Your ClickUp API tokenCLICKUP_WORKSPACE_ID - Your ClickUp workspace IDWhen assigning tasks, use the correct email based on who should do the work:
| Who | Use When | |
|---|---|---|
your-email@example.com | Human | Tasks for you to do manually |
ai-assistant@example.com | AI Assistant | Tasks for AI to execute |
| Both emails | Both Human + AI | Collaborative tasks where AI does research/writing, human reviews/decides |
GET https://api.clickup.com/api/v2/list/{list_id}/task
Authorization: {your_api_token}
GET https://api.clickup.com/api/v2/team/{workspace_id}/task
Authorization: {your_api_token}
POST https://api.clickup.com/api/v2/list/{list_id}/task
Authorization: {your_api_token}
Content-Type: application/json
{
"name": "Task name",
"description": "Task description",
"status": "active"
}
PUT https://api.clickup.com/api/v2/task/{task_id}
Authorization: {your_api_token}
Content-Type: application/json
{
"status": "done"
}
GET https://api.clickup.com/api/v2/task/{task_id}
Authorization: {your_api_token}
Authorization: {your_api_token}
Content-Type: application/json
Common statuses: active, pending, review, completed, done