Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

clickupclickup CLI

Agent Skill

clickup 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

441

周安装

18

GitHub Stars

4

下载量

143
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill clickup

简介

clickup 用于与 ClickUp 平台交互,管理项目任务、空间、列表、文档和自动化流程,适合在 Codex、Claude、Cursor、Gemini CLI 中处理生产力任务时调用。

  • 它支持通过 API 获取或更新任务数据,适用于同步应用、生成报告或集成 CI/CD 流水线等场景。
  • 安装命令为 npx skills add https://github.com/alphaonedev/openclaw-graph --skill clickup,需从 GitHub 获取原始 README 进一步确认用法。
  • 使用前建议核对权限范围、维护状态,并确认是否会触发联网、API 调用或文件读写操作。
  • clickup 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

clickup

Purpose

This skill allows the AI to interact with ClickUp's API for managing project tasks, spaces, lists, documents, goals, dashboards, automation, time tracking, and integrations. Use it to automate workflows by fetching or updating ClickUp data programmatically.

When to Use

Use this skill when handling productivity tasks in code, such as syncing tasks with other apps, generating reports from ClickUp data, automating task creation based on events, or integrating with CI/CD pipelines. Apply it in scripts for project management automation or when real-time updates are needed, like in chatbots or monitoring tools.

Key Capabilities

  • Manage tasks via API endpoints like POST /api/v2/list/{list_id}/task to create tasks.
  • Handle spaces and lists with GET /api/v2/team/{team_id}/space to retrieve spaces.
  • Access documents and goals using GET /api/v2/folder/{folder_id}/doc for docs.
  • Track time with endpoints like POST /api/v2/task/{task_id}/time_entry.
  • Automate workflows via ClickUp's automation rules, queried through GET /api/v2/space/{space_id}/automation.
  • Use dashboards with GET /api/v2/team/{team_id}/dashboard.
  • All operations require authentication via Bearer token in the Authorization header.
  • Supports pagination for large datasets, e.g., via query params like?page=1&limit=50.

Usage Patterns

Always authenticate requests with the API token stored in an environment variable, e.g., $CLICKUP_API_TOKEN. Use HTTP libraries like requests in Python to make calls. For example, construct requests with base URL https://api.clickup.com/api/v2, and handle JSON payloads. Pattern: First, fetch team ID with GET /api/v2/team, then use it to access nested resources. If rate-limited, implement exponential backoff. For CLI integration, pipe outputs to tools like jq for parsing JSON responses.

Common Commands/API

  • Create a task: Use POST /api/v2/list/{list_id}/task with JSON body {"name": "New Task", "description": "Details"}. Example in Python: import requests; token = os.environ['CLICKUP_API_TOKEN'] response = requests.post('https://api.clickup.com/api/v2/list/123/task', headers={'Authorization': token}, json={'name': 'Task'})
  • Get tasks in a list: GET /api/v2/list/{list_id}/task?subtasks=true. CLI example: curl -H "Authorization: $CLICKUP_API_TOKEN" https://api.clickup.com/api/v2/list/456/task.
  • Update a task: PUT /api/v2/task/{task_id} with body {"status": "in progress"}. Snippet: requests.put('https://api.clickup.com/api/v2/task/789', headers={'Authorization': token}, json={'status': 'complete'})
  • Fetch spaces: GET /api/v2/team/{team_id}/space. Config format: Store team ID in a.env file as CLICKUP_TEAM_ID=123.
  • Time tracking: POST /api/v2/task/{task_id}/time_entry with {"start": "2023-01-01T00:00:00Z"}.

Integration Notes

Set up authentication by exporting $CLICKUP_API_TOKEN from your ClickUp account settings. For integrations, use ClickUp's webhooks (e.g., subscribe via POST /api/v2/webhook) and handle incoming payloads in your app. When integrating with other services, map ClickUp IDs (e.g., task IDs) to external keys. Config format: Use a JSON config file like {"api_base": "https://api.clickup.com/api/v2", "team_id": "123"}. Avoid hardcoding tokens; always use env vars. For OAuth, redirect users to ClickUp's auth flow if needed, but for API access, stick to token-based auth.

Error Handling

Check HTTP status codes: 401 for unauthorized (retry with fresh token), 429 for rate limit (wait and retry with backoff), 404 for not found (log and skip). Parse JSON errors, e.g., if response.json()['err'] == 'Access denied', raise a custom exception. In code, wrap requests in try-except blocks:

try: response = requests.get(url, headers={'Authorization': token})
except requests.exceptions.RequestException as e: print(f"Error: {e}, Status: {response.status_code}")

Handle pagination errors by checking for 'next_page' in responses. Validate inputs, like ensuring list_id is an integer before API calls.

Concrete Usage Examples

  1. Automate task creation: When a user requests a new task via chat, use this skill to create it in ClickUp. Example: In a script, parse user input, then call POST /api/v2/list/123/task with the task details. Code: task_data = {'name': 'User-reported issue', 'description': user_input} requests.post('https://api.clickup.com/api/v2/list/123/task', headers={'Authorization': $CLICKUP_API_TOKEN}, json=task_data) This integrates with messaging apps for real-time task management.
  2. Fetch and report on tasks: To generate a daily summary, query tasks in a space and filter by status. Example: Use GET /api/v2/space/456/task?status=active, then process the response to count open tasks. Code: response = requests.get('https://api.clickup.com/api/v2/space/456/task', headers={'Authorization': $CLICKUP_API_TOKEN}) tasks = response.json()['tasks']; open_tasks = [t for t in tasks if t['status']['status'] == 'active'] print(f"Open tasks: {len(open_tasks)}") This is useful for dashboard updates or alerts in productivity tools.

Graph Relationships

  • Related to cluster: community (e.g., links to other community tools like GitHub or Trello skills).
  • Tagged with: clickup (direct match), tasks (connects to project management skills), project (links to Jira or Asana equivalents), productivity (associates with time-tracking or automation skills).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.83%
按下载量换算47

Claude

31.81%
按下载量换算45

Cursor

18.01%
按下载量换算26

Gemini CLI

10.3%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills