技能 clickup-automation
📦

clickup-automation

安全

自动化ClickUp任务和工作流

通过自然语言管理ClickUp项目。创建任务、导航工作区、添加评论并自动化团队工作流,无需手动数据录入。

支持: Claude Codex Code(CC)
🥉 74 青铜
1

下载技能 ZIP

2

在 Claude 中上传

前往 设置 → 功能 → 技能 → 上传技能

3

开启并开始使用

测试它

正在使用“clickup-automation”。 Create a task 'Deploy to staging' with high priority in the DevOps list, assign to Mike, due tomorrow at 5pm

预期结果:

Task created successfully:
- Name: Deploy to staging
- List: DevOps
- Status: To Do
- Priority: High (2)
- Assignee: Mike
- Due Date: 2026-02-26 17:00:00
- Task ID: 9hzabc123

View task: https://clickup.com/t/9hzabc123

正在使用“clickup-automation”。 List all tasks in 'Sprint 24' with status 'In Progress' or 'Code Review'

预期结果:

Found 8 tasks:

1. Implement user authentication (In Progress) - Assigned to: Anna
2. Add password reset flow (Code Review) - Assigned to: Carlos
3. Build API rate limiter (In Progress) - Assigned to: David
4. Design database schema (Code Review) - Assigned to: Elena

All tasks are due within 3 days. 2 subtasks included.

正在使用“clickup-automation”。 Add comment 'Tested on Chrome, Firefox, Safari - all passing' to task 'Browser compatibility check'

预期结果:

Comment added to task 'Browser compatibility check' (9hzxyz789):

"Tested on Chrome, Firefox, Safari - all passing"

Assigned to: QA Lead
Notifications sent to task watchers.

安全审计

安全
v1 • 2/25/2026

Static analysis detected 188 potential 'external command' patterns in SKILL.md, but all are false positives. The patterns are Markdown code formatting (backticks) used for ClickUp API tool names like CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES and RUBE_SEARCH_TOOLS. These are documentation references, not executable code. The 'network' finding at line 22 is also a false positive - it is a URL reference in documentation. No actual code execution, network calls, or security risks exist in this skill file.

1
已扫描文件
240
分析行数
0
发现项
1
审计总数
未发现安全问题
审计者: claude

质量评分

38
架构
100
可维护性
87
内容
50
社区
100
安全
91
规范符合性

你能构建什么

项目经理创建每周冲刺任务

项目经理需要为即将到来的冲刺创建20个任务,分配给不同的团队成员,设置优先级,并添加截止日期。他们用自然语言描述需求,技能会以正确的格式在ClickUp列表中创建所有任务。

开发人员在站会上更新任务状态

开发人员希望快速将分配给他们的任务从"进行中"移动到"审核中",并添加描述已完成内容的评论。技能会找到他们的任务并批量更新状态和评论。

团队负责人审查工作区容量

团队负责人需要检查当前席位使用情况,查看多个工作区中的活跃成员,并识别哪些列表分配了最多任务。技能会提供工作区指标和任务分布摘要。

试试这些提示

创建简单任务
Create a task in ClickUp called 'Review documentation' with status 'To Do', priority 'High', and assign it to me
创建多个相关任务
Create 5 tasks for the Q1 launch in the Marketing list: 'Design landing page' (urgent), 'Write copy' (high), 'Set up analytics' (normal), 'Test checkout flow' (high), 'Prepare social posts' (normal). Assign all to Sarah and set due dates for next Friday.
查询和筛选任务
Show me all tasks in the 'Backend API' list that are assigned to John, have status 'In Progress', and are due within the next 7 days. Include subtasks.
导航工作区并添加评论
Find the task 'Fix login bug' in the Engineering workspace, Backend folder, API list. Add a comment: 'Deployed hotfix to production, please verify.' and assign the comment to QA lead.

最佳实践

  • 在使用任何ClickUp工具之前,始终先调用RUBE_SEARCH_TOOLS以获取当前的API模式
  • 使用CLICKUP_GET_LIST检查可用的状态名称后再创建任务——状态值区分大小写且与列表相关
  • 对于批量任务创建,设置notify_all=false以避免向团队成员发送大量通知
  • 处理日期时,请记住ClickUp使用毫秒级的Unix时间戳(将秒数乘以1000)
  • 按顺序导航工作区层次结构:工作区 -> 空间 -> 文件夹 -> 列表,以获取正确的ID

避免

  • 不要假设"待办"等状态名称存在——始终先从特定列表获取可用状态
  • 不要在未检查速率限制的情况下快速创建20-30个以上的任务,以避免429错误
  • 不要使用'team_id'来指代用户组——在ClickUp API中,'team_id'指的是工作区ID
  • 不要传递空字符串来清除任务描述——请改用单个空格' '
  • 不要尝试使用另一个子任务作为父任务来创建子任务——子任务的父任务必须是顶级任务

常见问题

使用此技能前需要什么设置?
您需要连接Rube MCP服务器(将https://rube.app/mcp添加到您的MCP配置中)并建立有效的ClickUp连接。运行RUBE_MANAGE_CONNECTIONS并指定工具包'clickup',如需要请完成OAuth。
为什么我的任务创建失败并显示"未找到状态"错误?
状态值区分大小写,必须与您特定ClickUp列表中配置的状态完全匹配。使用CLICKUP_GET_LIST查看该列表中可用的确切状态名称。
如何找到创建任务的正确list_id?
导航层次结构:首先使用CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES获取您的工作区ID,然后使用CLICKUP_GET_SPACES,再使用CLICKUP_GET_FOLDERS(对于不在文件夹中的列表使用CLICKUP_GET_FOLDERLESS_LISTS),最后使用CLICKUP_GET_LIST验证列表。
我可以批量创建任务而不触达速率限制吗?
可以,但请为批量操作设置notify_all=false并在请求之间添加延迟。ClickUp会强制执行速率限制,因此快速创建超过20-30个任务可能会触发429响应。
team_id和用户组之间有什么区别?
在ClickUp的API中,'team_id'指的是工作区ID,而不是用户组。要管理用户组,请使用CLICKUP_GET_TEAMS,它会返回工作区内的团队组。
为什么我的截止日期显示的时间不正确?
ClickUp期望毫秒级的Unix时间戳。如果您提供的是秒数,请乘以1000。例如,2026年2月26日下午5点大约是1740592400000(毫秒)。

开发者详情

文件结构

📄 SKILL.md