sandboxbox 3.0.32 → 3.0.34
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/CLAUDE.md +2 -1
- package/package.json +1 -1
- package/sandboxbox-settings.json +0 -27
package/CLAUDE.md
CHANGED
|
@@ -196,4 +196,5 @@ Environment variable `XDG_CACHE_HOME` set to `${sandboxDir}/.cache` for Playwrig
|
|
|
196
196
|
### File Cleanup
|
|
197
197
|
- All temporary directories auto-cleanup on exit
|
|
198
198
|
- Error handling for cleanup failures (ignore errors)
|
|
199
|
-
- Signal handlers ensure cleanup on interrupts
|
|
199
|
+
- Signal handlers ensure cleanup on interrupts
|
|
200
|
+
- the only git operations we want is setting up the project, there should be no explicit git operations to end or merge the project work in the sandbox, the agent must have a hook as part of the plugin in ../plugin (which must be up to date) that is set up correctly to make it call a curl statement that will instruct it to do a git merge intelligently at the end, only claude must be doing the git merge there should be no automation around that
|
package/package.json
CHANGED
package/sandboxbox-settings.json
CHANGED
|
@@ -18,33 +18,6 @@
|
|
|
18
18
|
}
|
|
19
19
|
]
|
|
20
20
|
}
|
|
21
|
-
],
|
|
22
|
-
"Stop": [
|
|
23
|
-
{
|
|
24
|
-
"matcher": "*",
|
|
25
|
-
"hooks": [
|
|
26
|
-
{
|
|
27
|
-
"type": "command",
|
|
28
|
-
"command": "echo 'SESSION_END: Intelligently analyze all changes made during this session and prepare to commit them back to the host repository if they represent meaningful progress.'"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"type": "command",
|
|
32
|
-
"command": "echo 'GIT_INTEGRATION: Review modified files, stage appropriate changes, and create an intelligent commit message that describes the work accomplished. Push to host repository if changes are ready.'"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"type": "command",
|
|
36
|
-
"command": "git status --porcelain"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"type": "command",
|
|
40
|
-
"command": "if [ -n \"$(git status --porcelain)\" ]; then echo 'Changes detected - preparing intelligent Git operations...'; git add -A; echo 'Changes staged. Ready for intelligent commit analysis.'; else echo 'No changes detected in working directory.'; fi"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"type": "command",
|
|
44
|
-
"command": "echo 'Please intelligently analyze the staged changes and create an appropriate commit message, then commit and push if the changes are ready.'"
|
|
45
|
-
}
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
21
|
]
|
|
49
22
|
}
|
|
50
23
|
}
|