Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

clickup-automation点击自动化

Agent Skill

clickup-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

635

周安装

27

GitHub Stars

52

下载量

222
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clickup-automation(点击自动化)
来源仓库:https://github.com/aaaaqwq/claude-code-skills
仓库路径:skills/clickup-automation
安装命令:
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill clickup-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill clickup-automation

简介

通过 Composio 的 ClickUp 工具集实现项目工作流自动化,支持任务创建、更新及团队协作。

  • 适用于需要管理 ClickUp 工作区层级、任务评论和成员权限的场景。
  • 需先配置 Rube MCP 并连接 ClickUp 账户,通过 npx 命令安装技能。
  • 使用前请确认 OAuth 授权范围,注意技能依赖外部服务且涉及账户操作权限。
  • clickup-automation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ClickUp Automation via Rube MCP

Automate ClickUp project management workflows including task creation and updates, workspace hierarchy navigation, comments, and team member management through Composio's ClickUp toolkit.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active ClickUp connection via RUBE_MANAGE_CONNECTIONS with toolkit clickup
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit clickup
  3. If connection is not ACTIVE, follow the returned auth link to complete ClickUp OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Create and Manage Tasks

When to use: User wants to create tasks, subtasks, update task properties, or list tasks in a ClickUp list.

Tool sequence:

  1. CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES - Get workspace/team IDs [Prerequisite]
  2. CLICKUP_GET_SPACES - List spaces in the workspace [Prerequisite]
  3. CLICKUP_GET_FOLDERS - List folders in a space [Prerequisite]
  4. CLICKUP_GET_FOLDERLESS_LISTS - Get lists not inside folders [Optional]
  5. CLICKUP_GET_LIST - Validate list and check available statuses [Prerequisite]
  6. CLICKUP_CREATE_TASK - Create a task in the target list [Required]
  7. CLICKUP_CREATE_TASK (with parent) - Create subtask under a parent task [Optional]
  8. CLICKUP_UPDATE_TASK - Modify task status, assignees, dates, priority [Optional]
  9. CLICKUP_GET_TASK - Retrieve full task details [Optional]
  10. CLICKUP_GET_TASKS - List all tasks in a list with filters [Optional]
  11. CLICKUP_DELETE_TASK - Permanently remove a task [Optional]

Key parameters for CLICKUP_CREATE_TASK:

  • list_id: Target list ID (integer, required)
  • name: Task name (string, required)
  • description: Detailed task description
  • status: Must exactly match (case-sensitive) a status name configured in the target list
  • priority: 1 (Urgent), 2 (High), 3 (Normal), 4 (Low)
  • assignees: Array of user IDs (integers)
  • due_date: Unix timestamp in milliseconds
  • parent: Parent task ID string for creating subtasks
  • tags: Array of tag name strings
  • time_estimate: Estimated time in milliseconds

Pitfalls:

  • status is case-sensitive and must match an existing status in the list; use CLICKUP_GET_LIST to check available statuses
  • due_date and start_date are Unix timestamps in milliseconds, not seconds
  • Subtask parent must be a task (not another subtask) in the same list
  • notify_all triggers watcher notifications; set to false for bulk operations
  • Retries can create duplicates; track created task IDs to avoid re-creation
  • custom_item_id for milestones (ID 1) is subject to workspace plan quotas

2. Navigate Workspace Hierarchy

When to use: User wants to browse or manage the ClickUp workspace structure (Workspaces > Spaces > Folders > Lists).

Tool sequence:

  1. CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES - List all accessible workspaces [Required]
  2. CLICKUP_GET_SPACES - List spaces within a workspace [Required]
  3. CLICKUP_GET_SPACE - Get details for a specific space [Optional]
  4. CLICKUP_GET_FOLDERS - List folders in a space [Required]
  5. CLICKUP_GET_FOLDER - Get details for a specific folder [Optional]
  6. CLICKUP_CREATE_FOLDER - Create a new folder in a space [Optional]
  7. CLICKUP_GET_FOLDERLESS_LISTS - List lists not inside any folder [Required]
  8. CLICKUP_GET_LIST - Get list details including statuses and custom fields [Optional]

Key parameters:

  • team_id: Workspace ID from GET_AUTHORIZED_TEAMS_WORKSPACES (required for spaces)
  • space_id: Space ID (required for folders and folderless lists)
  • folder_id: Folder ID (required for GET_FOLDER)
  • list_id: List ID (required for GET_LIST)
  • archived: Boolean filter for archived/active items

Pitfalls:

  • ClickUp hierarchy is: Workspace (Team) > Space > Folder > List > Task
  • Lists can exist directly under Spaces (folderless) or inside Folders
  • Must use CLICKUP_GET_FOLDERLESS_LISTS to find lists not inside folders; CLICKUP_GET_FOLDERS only returns folders
  • team_id in ClickUp API refers to the Workspace ID, not a user group

3. Add Comments to Tasks

When to use: User wants to add comments, review existing comments, or manage comment threads on tasks.

Tool sequence:

  1. CLICKUP_GET_TASK - Verify task exists and get task_id [Prerequisite]
  2. CLICKUP_CREATE_TASK_COMMENT - Add a new comment to the task [Required]
  3. CLICKUP_GET_TASK_COMMENTS - List existing comments on the task [Optional]
  4. CLICKUP_UPDATE_COMMENT - Edit comment text, assignee, or resolution status [Optional]

Key parameters for CLICKUP_CREATE_TASK_COMMENT:

  • task_id: Task ID string (required)
  • comment_text: Comment content with ClickUp formatting support (required)
  • assignee: User ID to assign the comment to (required)
  • notify_all: true/false for watcher notifications (required)

Key parameters for CLICKUP_GET_TASK_COMMENTS:

  • task_id: Task ID string (required)
  • start / start_id: Pagination for older comments (max 25 per page)

Pitfalls:

  • CLICKUP_CREATE_TASK_COMMENT requires all four fields: task_id, comment_text, assignee, and notify_all
  • assignee on a comment assigns the comment (not the task) to that user
  • Comments are paginated at 25 per page; use start (Unix ms) and start_id for older pages
  • CLICKUP_UPDATE_COMMENT requires all four fields: comment_id, comment_text, assignee, resolved

4. Manage Team Members and Assignments

When to use: User wants to view workspace members, check seat utilization, or look up user details.

Tool sequence:

  1. CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES - List workspaces and get team_id [Required]
  2. CLICKUP_GET_WORKSPACE_SEATS - Check seat utilization (members vs guests) [Required]
  3. CLICKUP_GET_TEAMS - List user groups within the workspace [Optional]
  4. CLICKUP_GET_USER - Get details for a specific user (Enterprise only) [Optional]
  5. CLICKUP_GET_CUSTOM_ROLES - List custom permission roles [Optional]

Key parameters:

  • team_id: Workspace ID (required for all team operations)
  • user_id: Specific user ID for GET_USER
  • group_ids: Comma-separated group IDs to filter teams

Pitfalls:

  • CLICKUP_GET_WORKSPACE_SEATS returns seat counts, not member details; distinguish members from guests
  • CLICKUP_GET_TEAMS returns user groups, not workspace members; empty groups does not mean no members
  • CLICKUP_GET_USER is only available on ClickUp Enterprise Plan
  • Must repeat workspace seat queries for each workspace in multi-workspace setups

5. Filter and Query Tasks

When to use: User wants to find tasks with specific filters (status, assignee, dates, tags, custom fields).

Tool sequence:

  1. CLICKUP_GET_TASKS - Filter tasks in a list with multiple criteria [Required]
  2. CLICKUP_GET_TASK - Get full details for individual tasks [Optional]

Key parameters for CLICKUP_GET_TASKS:

  • list_id: List ID (integer, required)
  • statuses: Array of status strings to filter by
  • assignees: Array of user ID strings
  • tags: Array of tag name strings
  • due_date_gt / due_date_lt: Unix timestamp in ms for date range
  • include_closed: Boolean to include closed tasks
  • subtasks: Boolean to include subtasks
  • order_by: "id", "created", "updated", or "due_date"
  • page: Page number starting at 0 (max 100 tasks per page)

Pitfalls:

  • Only tasks whose home list matches list_id are returned; tasks in sublists are not included
  • Date filters use Unix timestamps in milliseconds
  • Status strings must match exactly; use URL encoding for spaces (e.g., "to%20do")
  • Page numbering starts at 0; each page returns up to 100 tasks
  • custom_fields filter accepts an array of JSON strings, not objects

Common Patterns

ID Resolution

Always resolve names to IDs through the hierarchy:

  • Workspace name -> team_id: CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES and match by name
  • Space name -> space_id: CLICKUP_GET_SPACES with team_id
  • Folder name -> folder_id: CLICKUP_GET_FOLDERS with space_id
  • List name -> list_id: Navigate folders or use CLICKUP_GET_FOLDERLESS_LISTS
  • Task name -> task_id: CLICKUP_GET_TASKS with list_id and match by name

Pagination

  • CLICKUP_GET_TASKS: Page-based with page starting at 0, max 100 tasks per page
  • CLICKUP_GET_TASK_COMMENTS: Uses start (Unix ms) and start_id for cursor-based paging, max 25 per page
  • Continue fetching until response returns fewer items than the page size

Known Pitfalls

ID Formats

  • Workspace/Team IDs are large integers
  • Space, folder, and list IDs are integers
  • Task IDs are alphanumeric strings (e.g., "9hz", "abc123")
  • User IDs are integers
  • Comment IDs are integers

Rate Limits

  • ClickUp enforces rate limits; bulk task creation can trigger 429 responses
  • Honor Retry-After header when present
  • Set notify_all=false for bulk operations to reduce notification load

Parameter Quirks

  • team_id in the API means Workspace ID, not a user group
  • status on tasks is case-sensitive and list-specific
  • Dates are Unix timestamps in milliseconds (multiply seconds by 1000)
  • priority is an integer 1-4 (1=Urgent, 4=Low), not a string
  • CLICKUP_CREATE_TASK_COMMENT marks assignee and notify_all as required
  • To clear a task description, pass a single space " " to CLICKUP_UPDATE_TASK

Hierarchy Rules

  • Subtask parent must not itself be a subtask
  • Subtask parent must be in the same list
  • Lists can be folderless (directly in a Space) or inside a Folder
  • Subitem boards are not supported by CLICKUP_CREATE_TASK

Quick Reference

TaskTool SlugKey Params
List workspacesCLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES(none)
List spacesCLICKUP_GET_SPACESteam_id
Get space detailsCLICKUP_GET_SPACEspace_id
List foldersCLICKUP_GET_FOLDERSspace_id
Get folder detailsCLICKUP_GET_FOLDERfolder_id
Create folderCLICKUP_CREATE_FOLDERspace_id, name
Folderless listsCLICKUP_GET_FOLDERLESS_LISTSspace_id
Get list detailsCLICKUP_GET_LISTlist_id
Create taskCLICKUP_CREATE_TASKlist_id, name, status, assignees
Update taskCLICKUP_UPDATE_TASKtask_id, status, priority
Get taskCLICKUP_GET_TASKtask_id, include_subtasks
List tasksCLICKUP_GET_TASKSlist_id, statuses, page
Delete taskCLICKUP_DELETE_TASKtask_id
Add commentCLICKUP_CREATE_TASK_COMMENTtask_id, comment_text, assignee
List commentsCLICKUP_GET_TASK_COMMENTStask_id, start, start_id
Update commentCLICKUP_UPDATE_COMMENTcomment_id, comment_text, resolved
Workspace seatsCLICKUP_GET_WORKSPACE_SEATSteam_id
List user groupsCLICKUP_GET_TEAMSteam_id
Get user detailsCLICKUP_GET_USERteam_id, user_id
Custom rolesCLICKUP_GET_CUSTOM_ROLESteam_id

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.7%
按下载量换算81

Claude

28.99%
按下载量换算64

Cursor

18.68%
按下载量换算41

Gemini CLI

11.24%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills