@krodak/clickup-cli 1.25.2 → 1.26.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/plugin.json +1 -1
- package/dist/index.js +13 -6
- package/package.json +1 -1
- package/skills/clickup-cli/SKILL.md +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clickup-cli",
|
|
3
3
|
"description": "ClickUp CLI skills for managing tasks, sprints, comments, checklists, custom fields, tags, and time tracking via the cup command",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.26.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Krzysztof Rodak"
|
|
7
7
|
},
|
package/dist/index.js
CHANGED
|
@@ -1521,6 +1521,7 @@ function formatAssignConfirmation(taskId, opts) {
|
|
|
1521
1521
|
import { execFileSync } from "child_process";
|
|
1522
1522
|
import { checkbox, confirm, Separator } from "@inquirer/prompts";
|
|
1523
1523
|
import chalk2 from "chalk";
|
|
1524
|
+
var vimTheme = { keybindings: ["vim"] };
|
|
1524
1525
|
function openUrl(url) {
|
|
1525
1526
|
switch (process.platform) {
|
|
1526
1527
|
case "darwin":
|
|
@@ -1672,7 +1673,8 @@ async function interactiveTaskPicker(tasks) {
|
|
|
1672
1673
|
name: formatChoiceName(t),
|
|
1673
1674
|
value: t.id
|
|
1674
1675
|
})),
|
|
1675
|
-
pageSize: 20
|
|
1676
|
+
pageSize: 20,
|
|
1677
|
+
theme: vimTheme
|
|
1676
1678
|
});
|
|
1677
1679
|
return tasks.filter((t) => selected.includes(t.id));
|
|
1678
1680
|
}
|
|
@@ -1691,7 +1693,8 @@ async function groupedTaskPicker(groups) {
|
|
|
1691
1693
|
const selected = await checkbox({
|
|
1692
1694
|
message: `${totalCount} task(s) found. Select to view details / open in browser:`,
|
|
1693
1695
|
choices,
|
|
1694
|
-
pageSize: 20
|
|
1696
|
+
pageSize: 20,
|
|
1697
|
+
theme: vimTheme
|
|
1695
1698
|
});
|
|
1696
1699
|
return allTasks.filter((t) => selected.includes(t.id));
|
|
1697
1700
|
}
|
|
@@ -2171,7 +2174,8 @@ ${NEXT_STEPS}`);
|
|
|
2171
2174
|
} else {
|
|
2172
2175
|
teamId = await select({
|
|
2173
2176
|
message: "Select workspace:",
|
|
2174
|
-
choices: teams.map((t) => ({ name: t.name, value: t.id }))
|
|
2177
|
+
choices: teams.map((t) => ({ name: t.name, value: t.id })),
|
|
2178
|
+
theme: { keybindings: ["vim"] }
|
|
2175
2179
|
});
|
|
2176
2180
|
}
|
|
2177
2181
|
writeConfig({ apiToken, teamId });
|
|
@@ -2363,7 +2367,8 @@ async function runSprintCommand(config, opts) {
|
|
|
2363
2367
|
choices: sprintLists.map((l) => ({
|
|
2364
2368
|
name: `${l.name} (${l.id})`,
|
|
2365
2369
|
value: l
|
|
2366
|
-
}))
|
|
2370
|
+
})),
|
|
2371
|
+
theme: { keybindings: ["vim"] }
|
|
2367
2372
|
});
|
|
2368
2373
|
activeList = choice;
|
|
2369
2374
|
}
|
|
@@ -5382,7 +5387,8 @@ async function installSkillInteractive() {
|
|
|
5382
5387
|
name: `${t.name}${t.detected ? chalk8.dim(" (detected)") : ""}`,
|
|
5383
5388
|
value: t.name,
|
|
5384
5389
|
checked: t.detected
|
|
5385
|
-
}))
|
|
5390
|
+
})),
|
|
5391
|
+
theme: { keybindings: ["vim"] }
|
|
5386
5392
|
});
|
|
5387
5393
|
if (selected.length === 0) {
|
|
5388
5394
|
throw new Error("No agents selected");
|
|
@@ -8592,7 +8598,8 @@ function buildProgram(programName = basename(process.argv[1] ?? "cup")) {
|
|
|
8592
8598
|
} else {
|
|
8593
8599
|
teamId = await select3({
|
|
8594
8600
|
message: "Select workspace:",
|
|
8595
|
-
choices: teams.map((t) => ({ name: t.name, value: t.id }))
|
|
8601
|
+
choices: teams.map((t) => ({ name: t.name, value: t.id })),
|
|
8602
|
+
theme: { keybindings: ["vim"] }
|
|
8596
8603
|
});
|
|
8597
8604
|
}
|
|
8598
8605
|
addProfile(name, { apiToken, teamId });
|
package/package.json
CHANGED
|
@@ -3,11 +3,11 @@ name: clickup
|
|
|
3
3
|
description: 'Use when managing ClickUp tasks, sprints, or comments via the `cup` CLI tool. Triggers: task queries, status updates, sprint tracking, creating subtasks, posting comments, threaded replies, standup summaries, searching tasks, checking overdue items, assigning tasks, listing spaces and lists, opening tasks in browser, checking auth or config, setting custom fields, deleting tasks, managing tags, managing checklists, editing comments, task links, time tracking, attachments, file uploads, listing members, listing fields, duplicating tasks, bulk operations, goals, key results, saved filters, favorites.'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# ClickUp CLI (`cup`) - skill version 1.
|
|
6
|
+
# ClickUp CLI (`cup`) - skill version 1.26.0
|
|
7
7
|
|
|
8
8
|
Reference for AI agents using the `cup` CLI tool. Covers task management, sprint tracking, comments, time tracking, custom fields, goals, docs, and project workflows.
|
|
9
9
|
|
|
10
|
-
> **Version check:** Run `cup --version`. If your installed version is older than 1.
|
|
10
|
+
> **Version check:** Run `cup --version`. If your installed version is older than 1.26.0, update with `npm install -g @krodak/clickup-cli` and refresh this skill with `cup skill`.
|
|
11
11
|
|
|
12
12
|
## Install & Configure
|
|
13
13
|
|