sandboxbox 3.0.35 → 3.0.37
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 +1 -1
- package/sandboxbox-settings.json +9 -1
- package/utils/sandbox.js +1 -1
package/package.json
CHANGED
package/sandboxbox-settings.json
CHANGED
|
@@ -14,7 +14,15 @@
|
|
|
14
14
|
"hooks": [
|
|
15
15
|
{
|
|
16
16
|
"type": "command",
|
|
17
|
-
"command": "
|
|
17
|
+
"command": "curl https://raw.githubusercontent.com/AnEntrypoint/glootie-cc/refs/heads/master/start.md"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "command",
|
|
21
|
+
"command": "npx -y mcp-thorns@latest"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "command",
|
|
25
|
+
"command": "npx -y wfgy@latest hook"
|
|
18
26
|
}
|
|
19
27
|
]
|
|
20
28
|
}
|
package/utils/sandbox.js
CHANGED
|
@@ -8,6 +8,7 @@ export function createSandbox(projectDir, options = {}) {
|
|
|
8
8
|
const { useHostSettings = false, headlessMode = false } = options;
|
|
9
9
|
const sandboxDir = mkdtempSync(join(tmpdir(), 'sandboxbox-'));
|
|
10
10
|
const workspaceDir = join(sandboxDir, 'workspace');
|
|
11
|
+
const VERBOSE_OUTPUT = process.env.SANDBOX_VERBOSE === 'true' || process.argv.includes('--verbose');
|
|
11
12
|
|
|
12
13
|
// Ensure host directory is a git repository
|
|
13
14
|
if (!existsSync(join(projectDir, '.git'))) {
|
|
@@ -192,7 +193,6 @@ node_modules/
|
|
|
192
193
|
// Setup Claude settings in sandbox
|
|
193
194
|
const hostClaudeDir = join(homedir(), '.claude');
|
|
194
195
|
const sandboxClaudeDir = join(sandboxDir, '.claude');
|
|
195
|
-
const VERBOSE_OUTPUT = process.env.SANDBOX_VERBOSE === 'true' || process.argv.includes('--verbose');
|
|
196
196
|
|
|
197
197
|
// Always use bundled SandboxBox settings unless host settings are requested
|
|
198
198
|
if (!useHostSettings) {
|