重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
clickup by membranedev/application-skills
npx skills add https://github.com/membranedev/application-skills --skill clickupClickUp 是一个项目管理平台,个人和团队使用它来组织任务、跟踪进度并协作完成项目。它将任务管理、时间跟踪和目标设定等功能整合到一个可自定义的工作空间中。从中小企业到大型企业,各类用户都在使用它。
此技能使用 Membrane CLI 与 Clickup 交互。Membrane 会自动处理身份验证和凭据刷新——因此您可以专注于集成逻辑,而无需操心身份验证的底层实现。
安装 Membrane CLI,以便您可以从终端运行 membrane 命令:
npm install -g @membranehq/cli
membrane login --tenant
浏览器窗口将打开以进行身份验证。
无头环境: 运行该命令,复制打印出的 URL 供用户在浏览器中打开,然后使用 membrane login complete <code> 完成验证。
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
创建新连接:
membrane search clickup --elementType=connector --json
从 output.items[0].element?.id 中获取连接器 ID,然后:
membrane connect --connectorId=CONNECTOR_ID --json
用户在浏览器中完成身份验证。输出结果包含新的连接 ID。
当您不确定连接是否已存在时:
检查现有连接:
membrane connection list --json
如果存在 Clickup 连接,请记下其 connectionId。
当您知道要做什么但不确定具体的操作 ID 时:
membrane action list --intent=QUERY --connectionId=CONNECTION_ID --json
这将返回包含 id 和 inputSchema 的操作对象,以便您了解如何运行它。
| 名称 | 键 | 描述 |
|---|---|---|
| 列出任务 | list-tasks | 获取列表中的所有任务 |
| 列出文件夹中的列表 | list-lists-in-folder | 获取文件夹中的所有列表 |
| 列出无文件夹列表 | list-folderless-lists | 获取空间中不在任何文件夹内的所有列表 |
| 列出文件夹 | list-folders | 获取空间中的所有文件夹 |
| 列出空间 | list-spaces | 获取工作区中的所有空间 |
| 列出任务评论 | list-task-comments | 获取任务的所有评论 |
| 获取任务 | get-task | 通过 ID 获取特定任务的详细信息 |
| 获取列表 | get-list | 通过 ID 获取特定列表的详细信息 |
| 获取文件夹 | get-folder | 通过 ID 获取特定文件夹的详细信息 |
| 获取空间 | get-space | 通过 ID 获取特定空间的详细信息 |
| 创建任务 | create-task | 在 ClickUp 列表中创建新任务 |
| 创建列表 | create-list | 在文件夹中创建新列表 |
| 创建文件夹 | create-folder | 在空间中创建新文件夹 |
| 创建空间 | create-space | 在工作区中创建新空间 |
| 更新任务 | update-task | 更新现有任务 |
| 更新列表 | update-list | 更新现有列表 |
| 更新文件夹 | update-folder | 更新现有文件夹 |
| 更新空间 | update-space | 更新现有空间 |
| 删除任务 | delete-task | 通过 ID 删除任务 |
| 删除列表 | delete-list | 通过 ID 删除列表 |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json
要传递 JSON 参数:
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"
当现有操作无法满足您的用例时,您可以通过 Membrane 的代理直接向 Clickup API 发送请求。Membrane 会自动将您提供的路径附加到基础 URL,并注入正确的身份验证头——如果凭据过期,还会透明地进行刷新。
membrane request CONNECTION_ID /path/to/endpoint
常用选项:
| 标志 | 描述 |
|---|---|
-X, --method | HTTP 方法(GET、POST、PUT、PATCH、DELETE)。默认为 GET |
-H, --header | 添加请求头(可重复),例如 -H "Accept: application/json" |
-d, --data | 请求体(字符串) |
--json | 发送 JSON 请求体并设置 Content-Type: application/json 的简写 |
--rawData | 按原样发送请求体,不做任何处理 |
--query | 查询字符串参数(可重复),例如 --query "limit=10" |
--pathParam | 路径参数(可重复),例如 --pathParam "id=123" |
membrane action list --intent=QUERY(将 QUERY 替换为您的意图)以查找现有操作。预构建的操作处理了原始 API 调用可能遗漏的分页、字段映射和边界情况。每周安装数
66
代码仓库
GitHub 星标数
18
首次出现
13 天前
安全审计
安装于
mcpjam66
iflow-cli66
kilo66
replit66
junie66
windsurf66
ClickUp is a project management platform used by individuals and teams to organize tasks, track progress, and collaborate on projects. It combines features like task management, time tracking, and goal setting into a single, customizable workspace. It's used by a wide range of users, from small businesses to large enterprises.
Official docs: https://clickup.com/api
This skill uses the Membrane CLI to interact with Clickup. Membrane handles authentication and credentials refresh automatically — so you can focus on the integration logic rather than auth plumbing.
Install the Membrane CLI so you can run membrane from the terminal:
npm install -g @membranehq/cli
membrane login --tenant
A browser window opens for authentication.
Headless environments: Run the command, copy the printed URL for the user to open in a browser, then complete with membrane login complete <code>.
Create a new connection:
membrane search clickup --elementType=connector --json
Take the connector ID from output.items[0].element?.id, then:
membrane connect --connectorId=CONNECTOR_ID --json
The user completes authentication in the browser. The output contains the new connection id.
When you are not sure if connection already exists:
Check existing connections:
membrane connection list --json
If a Clickup connection exists, note its connectionId
When you know what you want to do but not the exact action ID:
membrane action list --intent=QUERY --connectionId=CONNECTION_ID --json
This will return action objects with id and inputSchema in it, so you will know how to run it.
| Name | Key | Description |
|---|---|---|
| List Tasks | list-tasks | Get all tasks in a list |
| List Lists in Folder | list-lists-in-folder | Get all lists in a folder |
| List Folderless Lists | list-folderless-lists | Get all lists in a space that are not in a folder |
| List Folders | list-folders | Get all folders in a space |
| List Spaces | list-spaces | Get all spaces in a workspace |
| List Task Comments | list-task-comments | Get all comments on a task |
| Get Task | get-task | Get details of a specific task by ID |
| Get List | get-list | Get details of a specific list by ID |
| Get Folder | get-folder | Get details of a specific folder by ID |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json
To pass JSON parameters:
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"
When the available actions don't cover your use case, you can send requests directly to the Clickup API through Membrane's proxy. Membrane automatically appends the base URL to the path you provide and injects the correct authentication headers — including transparent credential refresh if they expire.
membrane request CONNECTION_ID /path/to/endpoint
Common options:
| Flag | Description |
|---|---|
-X, --method | HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
-H, --header | Add a request header (repeatable), e.g. -H "Accept: application/json" |
-d, --data | Request body (string) |
--json | Shorthand to send a JSON body and set Content-Type: application/json |
--rawData |
membrane action list --intent=QUERY (replace QUERY with your intent) to find existing actions before writing custom API calls. Pre-built actions handle pagination, field mapping, and edge cases that raw API calls miss.Weekly Installs
66
Repository
GitHub Stars
18
First Seen
13 days ago
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
mcpjam66
iflow-cli66
kilo66
replit66
junie66
windsurf66
GitHub Actions 官方文档查询助手 - 精准解答 CI/CD 工作流问题
47,200 周安装
| Get Space | get-space | Get details of a specific space by ID |
| Create Task | create-task | Create a new task in a ClickUp list |
| Create List | create-list | Create a new list in a folder |
| Create Folder | create-folder | Create a new folder in a space |
| Create Space | create-space | Create a new space in a workspace |
| Update Task | update-task | Update an existing task |
| Update List | update-list | Update an existing list |
| Update Folder | update-folder | Update an existing folder |
| Update Space | update-space | Update an existing space |
| Delete Task | delete-task | Delete a task by ID |
| Delete List | delete-list | Delete a list by ID |
| Send the body as-is without any processing |
--query | Query-string parameter (repeatable), e.g. --query "limit=10" |
--pathParam | Path parameter (repeatable), e.g. --pathParam "id=123" |