clickup-automation

clickup-automation is a skill for Claude Code from aAAaqwq/AGI-Super-Team. It costs 42 tokens per session (3,016 once invoked), scanned A, original, MIT.

A ClickUp integration for managing project work through an external service. ClickUp is a tool for organizing tasks, teams, and workspaces.

In plain words
What is it for?
Use it to create and update tasks and subtasks, browse spaces, folders, and lists, add comments, and manage team members.
Why use it?
It removes the need to switch tools or update ClickUp tasks by hand for common project-management actions.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the agi-super-team plugin — 194 skills, 1 agent shipped together

Good fit Use it to create and update tasks and subtasks, browse spaces, folders, and lists, add comments, and manage team members.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aaaaqwq/agi-super-team/clickup-automation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aAAaqwq/AGI-Super-Team --skill clickup-automation
Clone the repo
git clone --depth 1 https://github.com/aAAaqwq/AGI-Super-Team

Made for: Claude Code.

Or install agi-super-team, the plugin that ships this one along with the rest of its 194 skills, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for clickup-automation

README.md
[![agentmods](https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/clickup-automation/github.svg)](https://agentmods.dev/skills/aaaaqwq/agi-super-team/clickup-automation)
Your own site
<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/clickup-automation"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/clickup-automation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for clickup-automation

Your own site · 80×15
<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/clickup-automation"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/clickup-automation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,016 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.03016
Opus 5 $0.00021 $0.01508
Sonnet 5 $0.00008 $0.00603
Haiku 4.5 $0.00004 $0.00302

Measured 6d ago against content hash cd6f021138bc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

clickup-automation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/clickup-automation/SKILL.md · 235 lines

How it starts

The opening of the file, as written. The whole thing — 235 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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

Read the full file on GitHub · 235 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 235 lines · 42 tokens per session scan A cd6f021138bc

Subscribe to this mod's changes

clickup-automation is a skill published in the GitHub repository aAAaqwq/AGI-Super-Team (91 stars, last pushed today), licensed MIT. It adds 42 tokens to every session and 3,016 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

mission-control

Interact with Mission Control — AI agent orchestration dashboard. Use when registering agents, managing tasks, syncing skills, or querying agent/task status via MC APIs.

builderz-labs/mission-control · 34 tokens

triage

Triage a GitHub repository's open issues by finding exact duplicates, rejecting evidenceably off-base requests, requesting concrete clarification, applying only existing labels, and opening a linked root-cause issue when multiple reports share one underlying invariant failure. Use when a maintainer asks to triage…

arcee-ai/nac · 65 tokens

dos-goal-fleet

Launch multiple goal-scoped workers in waves, each with a witness-gated stop condition and dos arbitrate file-tree safety. Use when an operator asks to run several independent goals in parallel and fold only verified ships.

anthony-chaudhary/dos-kernel · 51 tokens

flo

MoFlo ticket spell - analyze and execute GitHub issues.

eric-cielo/moflo · 13 tokens

dos-next-up

Snapshot the repo's phased-plan portfolio into a dispatch packet: audit candidates with dos verify, render who-does-what, and emit a dos gate verdict. Use when you need the current next-work view before dispatching agents.

anthony-chaudhary/dos-kernel · 53 tokens

dos-dispatch

Plan and ship the next batch on one lane: run dos-next-up, acquire a lease with dos arbitrate, gate empty work, dispatch the packet, and archive the run. Use when a single lane should move end to end with collision safety.

anthony-chaudhary/dos-kernel · 56 tokens