bluekiwi 0.3.2 → 0.3.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { Command } from "commander";
3
+ import { createRequire } from "node:module";
3
4
  import { acceptCommand } from "./commands/accept.js";
4
5
  import { initCommand } from "./commands/init.js";
5
6
  import { statusCommand } from "./commands/status.js";
@@ -7,6 +8,8 @@ import { upgradeCommand } from "./commands/upgrade.js";
7
8
  import { logoutCommand } from "./commands/logout.js";
8
9
  import { runtimesCommand } from "./commands/runtimes.js";
9
10
  import { devLinkCommand } from "./commands/dev-link.js";
11
+ const require = createRequire(import.meta.url);
12
+ const pkg = require("../package.json");
10
13
  function splitCommaSeparatedList(value) {
11
14
  return value
12
15
  .split(",")
@@ -20,7 +23,7 @@ const program = new Command();
20
23
  program
21
24
  .name("bluekiwi")
22
25
  .description("BlueKiwi CLI — connect your agent runtime to a BlueKiwi server")
23
- .version("0.0.0");
26
+ .version(pkg.version);
24
27
  program
25
28
  .command("accept <token>")
26
29
  .requiredOption("--server <url>", "BlueKiwi server URL")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bluekiwi",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "BlueKiwi CLI — install MCP client and skills into your agent runtime",
5
5
  "license": "MIT",
6
6
  "repository": {