Manage ClickUp tasks by listing, creating, updating statuses, and retrieving details via ClickUp API using provided workspace and API token.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install test-manager或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install test-manager⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/test-manager/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: clickup displayName: ClickUp Integration description: Interact with ClickUp API for task management. Use for listing tasks, creating tasks, updating task status, and managing workspaces. Base URL: https://api.clickup.com/api/v2 version: 1.0.0 tags: - productivity - task-management - api ---
Note: 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 | |-------|-----|----------| | [email protected] | Human | Tasks for you to do manually | | [email protected] | 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
安装 Test Integration 后,可以对 AI 说这些话来触发它
Help me get started with Test Integration
Explains what Test Integration does, walks through the setup, and runs a quick demo based on your current project
Use Test Integration to manage ClickUp tasks by listing, creating, updating statuses, and r...
Invokes Test Integration with the right parameters and returns the result directly in the conversation
What can I do with Test Integration in my developer & devops workflow?
Lists the top use cases for Test Integration, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/test-manager/ 目录(个人级,所有项目可用),或 .claude/skills/test-manager/(项目级)。重启 AI 客户端后,用 /test-manager 主动调用,或让 AI 根据上下文自动发现并使用。
Test Integration 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Test Integration 可免费安装使用。请查阅仓库了解许可证信息。
Manage ClickUp tasks by listing, creating, updating statuses, and retrieving details via ClickUp API using provided workspace and API token.
Test Integration 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Test Integration
Identifies repetitive steps in your workflow and sets up Test Integration to handle them automatically