genbox 1.0.145 → 1.0.147

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.
@@ -140,7 +140,8 @@ async function createClaudeSession(ipAddress, keyPath, sessionName) {
140
140
  // Create tmux session and start Claude Code in it
141
141
  // Use bash -l (login shell) to ensure nvm and other tools are loaded
142
142
  // The command sources nvm explicitly to ensure claude is available
143
- const startCmd = `source ~/.nvm/nvm.sh && cd /home/dev && claude`;
143
+ // --dangerously-skip-permissions allows Claude to work autonomously without prompts
144
+ const startCmd = `source ~/.nvm/nvm.sh && cd /home/dev && claude --dangerously-skip-permissions`;
144
145
  (0, child_process_1.execSync)(`ssh -i "${keyPath}" -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null dev@${ipAddress} "tmux new-session -d -s ${sessionName} 'bash -c \\"${startCmd}\\"'" 2>/dev/null`, { encoding: 'utf-8', timeout: 30000 });
145
146
  // Give Claude a moment to start
146
147
  await new Promise(resolve => setTimeout(resolve, 1500));
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genbox",
3
- "version": "1.0.145",
3
+ "version": "1.0.147",
4
4
  "description": "Genbox CLI - AI-Powered Development Environments",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -11,6 +11,17 @@
11
11
  "dist/**/*",
12
12
  "README.md"
13
13
  ],
14
+ "scripts": {
15
+ "build": "tsc",
16
+ "start": "node dist/index.js",
17
+ "dev": "ts-node src/index.ts",
18
+ "prepublishOnly": "npm run build",
19
+ "publish:patch": "./scripts/publish.sh patch",
20
+ "publish:minor": "./scripts/publish.sh minor",
21
+ "publish:major": "./scripts/publish.sh major",
22
+ "release": "./scripts/publish.sh patch",
23
+ "test": "echo \"Error: no test specified\" && exit 1"
24
+ },
14
25
  "keywords": [
15
26
  "genbox",
16
27
  "ai",
@@ -50,15 +61,5 @@
50
61
  "inquirer": "^13.0.2",
51
62
  "js-yaml": "^4.1.1",
52
63
  "ora": "^9.0.0"
53
- },
54
- "scripts": {
55
- "build": "tsc",
56
- "start": "node dist/index.js",
57
- "dev": "ts-node src/index.ts",
58
- "publish:patch": "./scripts/publish.sh patch",
59
- "publish:minor": "./scripts/publish.sh minor",
60
- "publish:major": "./scripts/publish.sh major",
61
- "release": "./scripts/publish.sh patch",
62
- "test": "echo \"Error: no test specified\" && exit 1"
63
64
  }
64
- }
65
+ }