← 返回 Skills 市场
aiwithabidi

Clickup Pro

作者 aiwithabidi · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
358
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install clickup-pro
功能描述
AI-powered ClickUp project management — tasks, spaces, folders, time tracking, comments, custom fields. AI task prioritization by urgency and importance, dai...
使用说明 (SKILL.md)

✅ ClickUp Pro

AI-powered ClickUp task management for OpenClaw agents. Fork of clickup-api v1.0.3, massively improved with AI prioritization and standup generation.

What's New vs clickup-api

  • AI task prioritization — score tasks by urgency × importance using LLM
  • Daily standup generator — auto-summarize done/in-progress/blocked
  • Time tracking — start, stop, log time entries
  • Custom fields — read and write custom fields
  • Comments — add comments to tasks
  • Full CRUD — spaces, folders, lists, tasks

Requirements

Variable Required Description
CLICKUP_API_KEY ClickUp personal API token
OPENROUTER_API_KEY Optional For AI prioritization and standups

Quick Start

# List workspaces (teams)
python3 {baseDir}/scripts/clickup_api.py workspaces

# List spaces
python3 {baseDir}/scripts/clickup_api.py spaces \x3Cteam_id>

# List folders in a space
python3 {baseDir}/scripts/clickup_api.py folders \x3Cspace_id>

# List lists in a folder
python3 {baseDir}/scripts/clickup_api.py lists \x3Cfolder_id>

# List tasks in a list
python3 {baseDir}/scripts/clickup_api.py tasks \x3Clist_id>

# Create a task
python3 {baseDir}/scripts/clickup_api.py create-task \x3Clist_id> --name "Fix bug" --priority 2 --due "2026-02-20"

# Update a task
python3 {baseDir}/scripts/clickup_api.py update-task \x3Ctask_id> --status "in progress" --assignee user123

# Add comment
python3 {baseDir}/scripts/clickup_api.py comment \x3Ctask_id> --text "Working on this now"

# Time tracking
python3 {baseDir}/scripts/clickup_api.py start-timer \x3Ctask_id>
python3 {baseDir}/scripts/clickup_api.py stop-timer \x3Cteam_id>
python3 {baseDir}/scripts/clickup_api.py log-time \x3Ctask_id> --duration 3600000 --description "Code review"

# AI prioritize tasks in a list
python3 {baseDir}/scripts/clickup_api.py prioritize \x3Clist_id>

# Daily standup summary
python3 {baseDir}/scripts/clickup_api.py standup \x3Clist_id>

Commands

Navigation

  • workspaces — List all workspaces/teams
  • spaces \x3Cteam_id> — List spaces in a workspace
  • folders \x3Cspace_id> — List folders in a space
  • lists \x3Cfolder_id> — List lists in a folder (also: folderless-lists \x3Cspace_id>)

Tasks

  • tasks \x3Clist_id> — List tasks (with --status, --assignee, --subtasks filters)
  • get-task \x3Ctask_id> — Get task details
  • create-task \x3Clist_id> — Create task (--name, --description, --priority 1-4, --due DATE, --assignee)
  • update-task \x3Ctask_id> — Update task (--name, --status, --priority, --due, --assignee)
  • delete-task \x3Ctask_id> — Delete a task

Time Tracking

  • start-timer \x3Ctask_id> — Start tracking time
  • stop-timer \x3Cteam_id> — Stop current timer
  • log-time \x3Ctask_id> — Log time entry (--duration MS, --description)

Comments

  • comment \x3Ctask_id> — Add comment (--text)

AI Features (require OPENROUTER_API_KEY)

  • prioritize \x3Clist_id> — AI-score tasks by urgency × importance, output ranked list
  • standup \x3Clist_id> — Generate daily standup (done, in progress, blocked)

Credits

Built by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.

📅 Need help setting up OpenClaw for your business? Book a free consultation

安全使用建议
This skill appears to do what it says: interact with ClickUp and optionally call OpenRouter for AI summaries/prioritization. Before installing, consider: 1) Use a ClickUp API token with minimal scopes needed (avoid full admin tokens if possible). 2) If you enable AI features, know that task names, statuses, assignees, and due dates are sent to openrouter.ai — treat that as sensitive data leakage and only provide OPENROUTER_API_KEY if you trust the provider and accept that data flow. 3) Review the included Python script yourself (it’s bundled) and test with a low-privilege token first. 4) Note there are minor implementation bugs (e.g., some API calls may not pass expected payloads), but these look like quality issues rather than malicious behavior.
功能分析
Type: OpenClaw Skill Name: clickup-pro Version: 1.0.0 The skill is benign. It provides ClickUp management with AI features, requiring `CLICKUP_API_KEY` and optionally `OPENROUTER_API_KEY`. The `scripts/clickup_api.py` interacts with `api.clickup.com` and `openrouter.ai` as expected for its stated purpose. It retrieves API keys from environment variables and sends ClickUp task data to OpenRouter for AI processing, which is the core functionality of its 'AI features'. There is no evidence of unauthorized data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts against the OpenClaw agent in `SKILL.md`. All network calls and data handling are transparent and aligned with the skill's described functionality.
能力评估
Purpose & Capability
Name/description (ClickUp task management + optional AI features) matches the code and SKILL.md. The only required credential is CLICKUP_API_KEY (ClickUp token) and OPENROUTER_API_KEY is optional and only used by AI features — both are proportionate to the stated functionality.
Instruction Scope
Runtime instructions and the script only call the ClickUp API (api.clickup.com) and, for LLM features, openrouter.ai. The AI features send task metadata (names, statuses, assignees, due dates) to the LLM provider — this is expected for prioritization/standups but is a data-exposure consideration the user should be aware of.
Install Mechanism
No install spec or external binary downloads; this is an instruction-only skill plus an included Python script. Nothing is downloaded from arbitrary URLs and the bundle runs using standard Python libraries.
Credentials
Only CLICKUP_API_KEY is required (primary) and OPENROUTER_API_KEY is optional for AI features. That is reasonable, but providing the OpenRouter key will send task content to a third-party LLM endpoint. Users should limit token scopes and avoid supplying high-privilege tokens if unnecessary.
Persistence & Privilege
Skill does not request always:true or elevated persistence, and does not modify other skills or system-wide configs. Default autonomous invocation is allowed (platform default) but is not combined here with other red flags.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clickup-pro
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clickup-pro 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
ClickUp Pro 1.0.0 brings AI-powered enhancements to ClickUp project management: - Adds AI task prioritization based on urgency and importance. - Introduces daily standup generator to summarize work status. - Supports time tracking: start, stop, and log time entries. - Enables reading and writing custom fields and adding comments to tasks. - Provides full CRUD capabilities for spaces, folders, lists, and tasks. - Requires a ClickUp API key; AI features require an OpenRouter API key.
元数据
Slug clickup-pro
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Clickup Pro 是什么?

AI-powered ClickUp project management — tasks, spaces, folders, time tracking, comments, custom fields. AI task prioritization by urgency and importance, dai... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 358 次。

如何安装 Clickup Pro?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install clickup-pro」即可一键安装,无需额外配置。

Clickup Pro 是免费的吗?

是的,Clickup Pro 完全免费(开源免费),可自由下载、安装和使用。

Clickup Pro 支持哪些平台?

Clickup Pro 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Clickup Pro?

由 aiwithabidi(@aiwithabidi)开发并维护,当前版本 v1.0.0。

💬 留言讨论