← Back to Skills Marketplace
aiwithabidi

Clickup Pro

by aiwithabidi · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
358
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install clickup-pro
Description
AI-powered ClickUp project management — tasks, spaces, folders, time tracking, comments, custom fields. AI task prioritization by urgency and importance, dai...
README (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

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clickup-pro
  3. After installation, invoke the skill by name or use /clickup-pro
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug clickup-pro
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Clickup Pro?

AI-powered ClickUp project management — tasks, spaces, folders, time tracking, comments, custom fields. AI task prioritization by urgency and importance, dai... It is an AI Agent Skill for Claude Code / OpenClaw, with 358 downloads so far.

How do I install Clickup Pro?

Run "/install clickup-pro" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Clickup Pro free?

Yes, Clickup Pro is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Clickup Pro support?

Clickup Pro is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Clickup Pro?

It is built and maintained by aiwithabidi (@aiwithabidi); the current version is v1.0.0.

💬 Comments