test-managerManage ClickUp tasks by listing, creating, updating statuses, and retrieving details via ClickUp API using provided workspace and API token.
Install via ClawdBot CLI:
clawdbot install savelieve/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:
| Email | 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
AI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Manage Trello boards, lists, and cards via the Trello REST API.
Sync and query CalDAV calendars (iCloud, Google, Fastmail, Nextcloud, etc.) using vdirsyncer + khal. Works on Linux.
Manage tasks and projects in Todoist. Use when user asks about tasks, to-dos, reminders, or productivity.
Master OpenClaw's timing systems. Use for scheduling reliable reminders, setting up periodic maintenance (janitor jobs), and understanding when to use Cron v...
Calendar management and scheduling. Create events, manage meetings, and sync across calendar providers.
Kanban-style task management dashboard for AI assistants. Manage tasks via CLI or dashboard UI. Use when user mentions tasks, kanban, task board, mission con...