sandboxbox 3.0.56 → 3.0.58
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 +17 -0
- package/utils/commands/claude.js +9 -1
package/package.json
CHANGED
package/sandboxbox-settings.json
CHANGED
|
@@ -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
|
{
|
package/utils/commands/claude.js
CHANGED
|
@@ -341,7 +341,15 @@ export async function claudeCommand(projectDir, prompt, flags = {}) {
|
|
|
341
341
|
|
|
342
342
|
${gitWorkflowGuidelines}
|
|
343
343
|
|
|
344
|
-
${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.`;
|
|
345
353
|
|
|
346
354
|
// Environment is now properly configured with same permissions as run command
|
|
347
355
|
|