@krodak/clickup-cli 1.19.3 → 1.19.4
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 +9 -3
- package/package.json +1 -1
|
@@ -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.19.
|
|
4
|
+
"version": "1.19.4",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Krzysztof Rodak"
|
|
7
7
|
},
|
package/dist/index.js
CHANGED
|
@@ -4569,7 +4569,13 @@ function buildProgram(programName = basename(process.argv[1] ?? "cup")) {
|
|
|
4569
4569
|
}
|
|
4570
4570
|
})
|
|
4571
4571
|
);
|
|
4572
|
-
program.command("update <taskId>").description("Update a task").option("-n, --name <text>", "New task name").option("-d, --description <text>", "New description (markdown supported)").option(
|
|
4572
|
+
program.command("update <taskId>").description("Update a task").option("-n, --name <text>", "New task name").option("-d, --description <text>", "New description (markdown supported)").option(
|
|
4573
|
+
"-s, --status <status>",
|
|
4574
|
+
'New status (fuzzy matched, e.g. "prog" matches "in progress")'
|
|
4575
|
+
).option("--priority <level>", "Priority: urgent, high, normal, low (or 1-4)").option("--due-date <date>", 'Due date (YYYY-MM-DD, or "none"/"clear" to remove)').option("--start-date <date>", "Start date (YYYY-MM-DD)").option(
|
|
4576
|
+
"--time-estimate <duration>",
|
|
4577
|
+
'Time estimate (e.g. "2h", "30m", "1h30m", "0" or "none" to clear)'
|
|
4578
|
+
).option("--assignee <userId>", 'Add assignee by user ID or "me"').option("--remove-assignee <userId>", 'Remove assignee by user ID or "me"').option("--parent <taskId>", "Set parent task (makes this a subtask)").option("--detach", "Remove parent task (promote subtask to top-level)").option("--archive", "Archive the task").option("--unarchive", "Unarchive the task").option("--field <nameAndValue...>", 'Set custom field: --field "Name" value').option("--json", "Force JSON output even in terminal").action(
|
|
4573
4579
|
wrapAction(
|
|
4574
4580
|
async (taskId, opts) => {
|
|
4575
4581
|
const config = loadConfig(getProfileName());
|
|
@@ -4615,7 +4621,7 @@ function buildProgram(programName = basename(process.argv[1] ?? "cup")) {
|
|
|
4615
4621
|
}
|
|
4616
4622
|
)
|
|
4617
4623
|
);
|
|
4618
|
-
program.command("create").description("Create a new task").option("-l, --list <listId>",
|
|
4624
|
+
program.command("create").description("Create a new task").option("-l, --list <listId>", 'Target list ID or "sprint:current" for active sprint').requiredOption("-n, --name <name>", "Task name").option("-d, --description <text>", "Task description (markdown supported)").option("-p, --parent <taskId>", "Parent task ID (list auto-detected from parent)").option("-s, --status <status>", "Initial status").option("--priority <level>", "Priority: urgent, high, normal, low (or 1-4)").option("--due-date <date>", "Due date (YYYY-MM-DD)").option("--start-date <date>", "Start date (YYYY-MM-DD)").option("--assignee <userId>", 'Assignee user ID or "me"').option("--tags <tags>", "Comma-separated tag names").option("--custom-item-id <id>", "Custom task type ID (use to create initiatives)").option("--time-estimate <duration>", 'Time estimate (e.g. "2h", "30m", "1h30m")').option("--template <id>", "Create from a task template (find IDs with cup templates)").option("--json", "Force JSON output even in terminal").action(
|
|
4619
4625
|
wrapAction(async (opts) => {
|
|
4620
4626
|
const config = loadConfig(getProfileName());
|
|
4621
4627
|
if (opts.list === "sprint:current") {
|
|
@@ -4936,7 +4942,7 @@ function buildProgram(programName = basename(process.argv[1] ?? "cup")) {
|
|
|
4936
4942
|
}
|
|
4937
4943
|
})
|
|
4938
4944
|
);
|
|
4939
|
-
program.command("move <taskId>").description("Add or remove a task from a list").option("--to <listId>",
|
|
4945
|
+
program.command("move <taskId>").description("Add or remove a task from a list").option("--to <listId>", 'Add task to this list (or "sprint:current" for active sprint)').option("--remove <listId>", "Remove task from this list").option("--json", "Force JSON output even in terminal").action(
|
|
4940
4946
|
wrapAction(async (taskId, opts) => {
|
|
4941
4947
|
const config = loadConfig(getProfileName());
|
|
4942
4948
|
if (opts.to === "sprint:current") {
|