@krodak/clickup-cli 1.38.0 → 1.38.1

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.
@@ -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.38.0",
4
+ "version": "1.38.1",
5
5
  "author": {
6
6
  "name": "Krzysztof Rodak"
7
7
  },
package/dist/index.js CHANGED
@@ -8879,7 +8879,7 @@ function buildProgram(programName = basename(process.argv[1] ?? "cup")) {
8879
8879
  );
8880
8880
  program.command("comment <taskId>").description("Post a comment on a task").requiredOption("-m, --message <text>", "Comment text").option("--notify-all", "Notify all assignees").option(
8881
8881
  "--mention <user>",
8882
- 'Mention a user (ID, email, username, or "me"). Repeatable.',
8882
+ 'Prepend an @mention (ID, email, username, or "me"), repeatable. For a mid-sentence mention, put a <@userId> token in -m instead; bare @Name is not parsed.',
8883
8883
  collect,
8884
8884
  []
8885
8885
  ).option("--json", "Force JSON output even in terminal").action(
@@ -8906,7 +8906,7 @@ function buildProgram(programName = basename(process.argv[1] ?? "cup")) {
8906
8906
  );
8907
8907
  program.command("comment-edit <commentId>").description("Edit an existing comment").option("-m, --message <text>", "New comment text").option("--resolved", "Mark comment as resolved").option("--unresolved", "Mark comment as unresolved").option(
8908
8908
  "--mention <user>",
8909
- 'Mention a user (ID, email, username, or "me"). Repeatable.',
8909
+ 'Prepend an @mention (ID, email, username, or "me"), repeatable. For a mid-sentence mention, put a <@userId> token in -m instead; bare @Name is not parsed.',
8910
8910
  collect,
8911
8911
  []
8912
8912
  ).option("--json", "Force JSON output even in terminal").action(
@@ -8979,7 +8979,7 @@ function buildProgram(programName = basename(process.argv[1] ?? "cup")) {
8979
8979
  );
8980
8980
  program.command("reply <commentId>").description("Reply to a comment").requiredOption("-m, --message <text>", "Reply text").option("--notify-all", "Notify all assignees").option(
8981
8981
  "--mention <user>",
8982
- 'Mention a user (ID, email, username, or "me"). Repeatable.',
8982
+ 'Prepend an @mention (ID, email, username, or "me"), repeatable. For a mid-sentence mention, put a <@userId> token in -m instead; bare @Name is not parsed.',
8983
8983
  collect,
8984
8984
  []
8985
8985
  ).option("--json", "Force JSON output even in terminal").action(
@@ -10819,7 +10819,7 @@ function buildProgram(programName = basename(process.argv[1] ?? "cup")) {
10819
10819
  );
10820
10820
  program.command("list-comment <listId>").description("Post a comment on a list").requiredOption("-m, --message <text>", "Comment text").option("--notify-all", "Notify all assignees").option(
10821
10821
  "--mention <user>",
10822
- 'Mention a user (ID, email, username, or "me"). Repeatable.',
10822
+ 'Prepend an @mention (ID, email, username, or "me"), repeatable. For a mid-sentence mention, put a <@userId> token in -m instead; bare @Name is not parsed.',
10823
10823
  collect,
10824
10824
  []
10825
10825
  ).option("--json", "Force JSON output even in terminal").action(
@@ -10852,7 +10852,7 @@ function buildProgram(programName = basename(process.argv[1] ?? "cup")) {
10852
10852
  );
10853
10853
  program.command("view-comment <viewId>").description("Post a comment on a view").requiredOption("-m, --message <text>", "Comment text").option("--notify-all", "Notify all assignees").option(
10854
10854
  "--mention <user>",
10855
- 'Mention a user (ID, email, username, or "me"). Repeatable.',
10855
+ 'Prepend an @mention (ID, email, username, or "me"), repeatable. For a mid-sentence mention, put a <@userId> token in -m instead; bare @Name is not parsed.',
10856
10856
  collect,
10857
10857
  []
10858
10858
  ).option("--json", "Force JSON output even in terminal").action(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@krodak/clickup-cli",
3
- "version": "1.38.0",
3
+ "version": "1.38.1",
4
4
  "description": "ClickUp CLI for AI agents and humans",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -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.38.0
6
+ # ClickUp CLI (`cup`) - skill version 1.38.1
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.38.0, update with `npm install -g @krodak/clickup-cli` and refresh this skill with `cup skill`.
10
+ > **Version check:** Run `cup --version`. If your installed version is older than 1.38.1, update with `npm install -g @krodak/clickup-cli` and refresh this skill with `cup skill`.
11
11
 
12
12
  ## Install & Configure
13
13