clickup-agent-cli 0.4.1 → 0.4.2

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.
@@ -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.4.1",
14
+ "version": "0.4.2",
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.1",
4
+ "version": "0.4.2",
5
5
  "author": {
6
6
  "name": "Henry Reith"
7
7
  },
package/dist/clickup.js CHANGED
@@ -4535,13 +4535,14 @@ function registerSkillCommands(program) {
4535
4535
  const outputOpts = getOutputOptions(program);
4536
4536
  const format = outputOpts.format ?? (process.stdout.isTTY ? "table" : "json");
4537
4537
  if (format === "json") {
4538
- const { frontmatter } = parseFrontmatter(result.content);
4538
+ const { frontmatter, body } = parseFrontmatter(result.content);
4539
4539
  const output = {
4540
4540
  name: frontmatter["name"] || name,
4541
4541
  description: frontmatter["description"] || "",
4542
4542
  type: classifySkill(frontmatter),
4543
4543
  path: result.skillDir,
4544
- frontmatter
4544
+ frontmatter,
4545
+ content: body
4545
4546
  };
4546
4547
  process.stdout.write(JSON.stringify(output, null, 2) + "\n");
4547
4548
  return;
@@ -4628,7 +4629,7 @@ function registerChatCommands(program, getClient) {
4628
4629
  }
4629
4630
 
4630
4631
  // src/cli.ts
4631
- var VERSION = "0.4.1";
4632
+ var VERSION = "0.4.2";
4632
4633
  function createProgram() {
4633
4634
  const program = new Command();
4634
4635
  program.name("clickup").description("ClickUp CLI - Manage ClickUp workspaces from the terminal").version(VERSION).option("--token <token>", "API token").option("--token-file <path>", "Read API token from this file path").option("--profile <name>", "Profile to use (key, workspace name, or nickname)").option("--workspace-id <id>", "Workspace ID").addOption(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clickup-agent-cli",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "CLI covering the entire ClickUp API v2 surface",
5
5
  "type": "module",
6
6
  "bin": {