@vibetonomy/agent 1.5.30 → 1.5.31

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/bin/launch.js +2 -2
  2. package/package.json +6 -6
package/bin/launch.js CHANGED
@@ -84,8 +84,8 @@ function main() {
84
84
  // inject it so Chat V2 works out of the box
85
85
  if (bridgePath && !args.some((a) => a.startsWith("--sdk-bridge-path"))) {
86
86
  // Find the subcommand position to inject the flag after it
87
- // Commands: start, pair, stop, status
88
- const subcommands = ["start", "pair", "stop", "status"];
87
+ // Commands: start, pair, stop, status, reinit
88
+ const subcommands = ["start", "pair", "stop", "status", "reinit"];
89
89
  const subIdx = args.findIndex((a) => subcommands.includes(a));
90
90
 
91
91
  if (subIdx !== -1 && args[subIdx] === "start") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibetonomy/agent",
3
- "version": "1.5.30",
3
+ "version": "1.5.31",
4
4
  "description": "Vibetonomy agent — managed Claude Code sessions via npx",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
@@ -15,11 +15,11 @@
15
15
  "@anthropic-ai/claude-agent-sdk": "0.3.248"
16
16
  },
17
17
  "optionalDependencies": {
18
- "@vibetonomy/agent-linux-x64": "1.5.30",
19
- "@vibetonomy/agent-linux-arm64": "1.5.30",
20
- "@vibetonomy/agent-darwin-arm64": "1.5.30",
21
- "@vibetonomy/agent-darwin-x64": "1.5.30",
22
- "@vibetonomy/agent-win-x64": "1.5.30"
18
+ "@vibetonomy/agent-linux-x64": "1.5.31",
19
+ "@vibetonomy/agent-linux-arm64": "1.5.31",
20
+ "@vibetonomy/agent-darwin-arm64": "1.5.31",
21
+ "@vibetonomy/agent-darwin-x64": "1.5.31",
22
+ "@vibetonomy/agent-win-x64": "1.5.31"
23
23
  },
24
24
  "engines": {
25
25
  "node": ">=18.0.0"