@appchy/jarvis 0.1.22 → 0.1.23

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/dist/bin.js CHANGED
@@ -4718,7 +4718,6 @@ function getConfigPath() {
4718
4718
 
4719
4719
  // src/cli.ts
4720
4720
  import { Command } from "commander";
4721
- import { createRequire as createRequire2 } from "module";
4722
4721
 
4723
4722
  // src/commands/connect.ts
4724
4723
  function register(program) {
@@ -6943,10 +6942,12 @@ function register5(program) {
6943
6942
  });
6944
6943
  }
6945
6944
 
6946
- // src/commands/status.ts
6945
+ // src/version.ts
6947
6946
  import { createRequire } from "module";
6948
6947
  var _require = createRequire(import.meta.url);
6949
- var PKG_VERSION = _require("../../package.json").version ?? "dev";
6948
+ var PKG_VERSION = _require("../package.json").version ?? "dev";
6949
+
6950
+ // src/commands/status.ts
6950
6951
  function register6(program) {
6951
6952
  program.command("status").description("Show agent configuration and connection status").action(() => {
6952
6953
  const config = loadConfig();
@@ -9099,10 +9100,8 @@ function register10(program) {
9099
9100
  }
9100
9101
 
9101
9102
  // src/cli.ts
9102
- var _require2 = createRequire2(import.meta.url);
9103
- var PKG_VERSION2 = _require2("../package.json").version ?? "dev";
9104
9103
  function createCli() {
9105
- const program = new Command().name("jarvis").description("Jarvis local agent \u2014 runs Claude Code on your machine").version(PKG_VERSION2);
9104
+ const program = new Command().name("jarvis").description("Jarvis local agent \u2014 runs Claude Code on your machine").version(PKG_VERSION);
9106
9105
  register(program);
9107
9106
  register2(program);
9108
9107
  register3(program);