sandboxbox 3.0.55 → 3.0.57

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": "sandboxbox",
3
- "version": "3.0.55",
3
+ "version": "3.0.57",
4
4
  "description": "Lightweight process containment sandbox for CLI tools - Playwright, Claude Code, and more. Pure Node.js, no dependencies.",
5
5
  "type": "module",
6
6
  "main": "cli.js",
@@ -16,6 +16,23 @@
16
16
  "args": ["-y", "vexify@latest", "mcp"]
17
17
  }
18
18
  },
19
+ "permissions": {
20
+ "allow": [
21
+ "Bash(git add .)",
22
+ "Bash(git commit -m *)",
23
+ "Bash(git push *)",
24
+ "Bash(git status)",
25
+ "Bash(git log *)",
26
+ "Bash(curl https://raw.githubusercontent.com/AnEntrypoint/glootie-cc/refs/heads/master/start.md)",
27
+ "Bash(npx -y mcp-thorns@latest)",
28
+ "Bash(npx -y wfgy@latest hook)",
29
+ "Write(*)",
30
+ "Read(*)",
31
+ "Edit(*)",
32
+ "Glob(*)",
33
+ "Grep(*)"
34
+ ]
35
+ },
19
36
  "hooks": {
20
37
  "UserPromptSubmit": [
21
38
  {
@@ -283,6 +283,7 @@ export async function claudeCommand(projectDir, prompt, flags = {}) {
283
283
  '--verbose',
284
284
  '--output-format', 'stream-json',
285
285
  '--permission-mode', 'bypassPermissions',
286
+ '--dangerously-skip-permissions',
286
287
  '--allowed-tools', ALLOWED_TOOLS.join(',')
287
288
  ];
288
289
 
@@ -340,7 +341,15 @@ export async function claudeCommand(projectDir, prompt, flags = {}) {
340
341
 
341
342
  ${gitWorkflowGuidelines}
342
343
 
343
- ${prompt}`;
344
+ ${prompt}
345
+
346
+ IMPORTANT: Before finishing, you MUST execute these Git operations to sync your changes to the host repository:
347
+ 1. Check git status: git status
348
+ 2. Add any new files: git add .
349
+ 3. Commit with descriptive message: git commit -m "Your commit message here"
350
+ 4. Push to host repository: git push host master
351
+
352
+ This is mandatory - all changes must be preserved in the host repository.`;
344
353
 
345
354
  // Environment is now properly configured with same permissions as run command
346
355