@arvorco/relentless 0.1.9 → 0.1.10

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/bin/relentless.ts CHANGED
@@ -18,12 +18,16 @@ import { run } from "../src/execution/runner";
18
18
  import { runTUI } from "../src/tui/TUIRunner";
19
19
  import { initProject, createFeature, listFeatures, createProgressTemplate } from "../src/init/scaffolder";
20
20
 
21
+ // Read version from package.json dynamically
22
+ const packageJson = await Bun.file(join(import.meta.dir, "..", "package.json")).json();
23
+ const version = packageJson.version;
24
+
21
25
  const program = new Command();
22
26
 
23
27
  program
24
28
  .name("relentless")
25
29
  .description("Universal AI agent orchestrator - works with Claude Code, Amp, OpenCode, Codex, Droid, and Gemini")
26
- .version("0.1.0");
30
+ .version(version);
27
31
 
28
32
  // Init command
29
33
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arvorco/relentless",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Universal AI agent orchestrator - works with Claude Code, Amp, OpenCode, Codex, Droid, and Gemini",
5
5
  "type": "module",
6
6
  "publishConfig": {