clickup-agent-cli 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +5 -5
- package/dist/clickup.js +470 -291
- package/package.json +11 -3
- package/skills/clickup-fields/SKILL.md +3 -3
- package/skills/clickup-time/SKILL.md +3 -2
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"name": "clickup",
|
|
12
12
|
"source": "./",
|
|
13
13
|
"description": "ClickUp CLI with 25 agent skills covering the full API -- token-efficient alternative to MCP with chat, time tracking, docs, and project management workflows",
|
|
14
|
-
"version": "0.
|
|
14
|
+
"version": "0.4.0",
|
|
15
15
|
"homepage": "https://github.com/henryreith/clickup-cli",
|
|
16
16
|
"keywords": ["clickup", "project-management", "tasks", "time-tracking"],
|
|
17
17
|
"category": "productivity"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clickup",
|
|
3
3
|
"description": "ClickUp CLI with 25 agent skills covering the full API -- token-efficient alternative to MCP with chat, time tracking, docs, and project management workflows",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.4.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Henry Reith"
|
|
7
7
|
},
|
package/README.md
CHANGED
|
@@ -80,7 +80,7 @@ Every command supports multiple output formats:
|
|
|
80
80
|
|
|
81
81
|
## AI Agent Usage
|
|
82
82
|
|
|
83
|
-
The CLI is built from the ground up for AI agents, following the "CLI as execution layer, skills as guidance layer" pattern. It ships as a Claude Code plugin with
|
|
83
|
+
The CLI is built from the ground up for AI agents, following the "CLI as execution layer, skills as guidance layer" pattern. It ships as a Claude Code plugin with 25 agent skills, and works with any agent platform that can run bash commands.
|
|
84
84
|
|
|
85
85
|
**vs ClickUp MCP:** This CLI covers the same operations as the official ClickUp MCP server (tasks, docs, time tracking, chat, members, hierarchy) plus more, while consuming far fewer tokens. A full skills hierarchy loads in ~150 tokens at session start vs injecting an entire API schema. Works in any agent platform that supports bash -- not just MCP-compatible hosts.
|
|
86
86
|
|
|
@@ -93,14 +93,14 @@ Install the ClickUp CLI as a Claude Code plugin for zero-friction access to all
|
|
|
93
93
|
/plugin marketplace add henryreith/clickup-cli
|
|
94
94
|
|
|
95
95
|
# Install the plugin
|
|
96
|
-
/plugin install clickup@clickup-cli
|
|
96
|
+
/plugin install clickup@clickup-agent-cli
|
|
97
97
|
|
|
98
98
|
# Use skills directly
|
|
99
99
|
/clickup:weekly-review 12345678
|
|
100
100
|
/clickup:sprint-planning list-id-here
|
|
101
101
|
```
|
|
102
102
|
|
|
103
|
-
Once installed, Claude Code auto-discovers all
|
|
103
|
+
Once installed, Claude Code auto-discovers all 25 skills and loads them on demand. Recipe skills like `/clickup:weekly-review` run in isolated subagents with full ClickUp CLI access.
|
|
104
104
|
|
|
105
105
|
### Claude Agent SDK
|
|
106
106
|
|
|
@@ -141,8 +141,8 @@ clickup skill show clickup-weekly-review
|
|
|
141
141
|
|
|
142
142
|
**Three skill tiers:**
|
|
143
143
|
- **Root skill** - Index and router. What the CLI does, how to discover more.
|
|
144
|
-
- **Sub-skills** (
|
|
145
|
-
- **Recipe skills** (
|
|
144
|
+
- **Sub-skills** (11) - Per-resource command reference. Tasks, spaces, comments, time tracking, chat, etc.
|
|
145
|
+
- **Recipe skills** (13) - Multi-step workflow guides that accept natural language arguments. Scope any recipe to a specific team, department, or person.
|
|
146
146
|
|
|
147
147
|
**Example recipe invocations:**
|
|
148
148
|
```bash
|