@marcusrbrown/infra 0.3.0 → 0.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marcusrbrown/infra",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Infrastructure management CLI — deploy automation, health checks, and MCP bridge",
5
5
  "keywords": [
6
6
  "infra",
@@ -34,6 +34,9 @@
34
34
  "string-dedent": "^3.0.2",
35
35
  "zod": "^4.3.6"
36
36
  },
37
+ "engines": {
38
+ "bun": ">=1.0.0"
39
+ },
37
40
  "publishConfig": {
38
41
  "access": "public",
39
42
  "provenance": true
@@ -56,7 +56,8 @@ export function registerCliproxyLogin(cli: ReturnType<typeof goke>): void {
56
56
  throw new Error('HOME is required to invoke ssh')
57
57
  }
58
58
 
59
- const remoteCommand = 'docker compose exec cli-proxy-api /CLIProxyAPI/CLIProxyAPI --no-browser --claude-login'
59
+ const remoteCommand =
60
+ 'cd /opt/cliproxy && docker compose exec cli-proxy-api /CLIProxyAPI/CLIProxyAPI --no-browser --claude-login'
60
61
 
61
62
  const child = Bun.spawn(
62
63
  ['ssh', '-o', 'BatchMode=yes', '-o', 'ConnectTimeout=10', `${DEFAULT_REMOTE_USER}@${host}`, remoteCommand],