sandboxbox 3.0.48 → 3.0.49
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/package/CLAUDE.md +200 -0
- package/package/package/Dockerfile +95 -0
- package/package/package/README.md +242 -0
- package/package/package/claude-settings.json +85 -0
- package/package/package/cli.js +90 -0
- package/package/package/package.json +39 -0
- package/package/package/sandboxbox-3.0.45.tgz +0 -0
- package/package/package/sandboxbox-settings.json +40 -0
- package/package/package/test.txt +1 -0
- package/package/package/utils/claude-optimizer.js +129 -0
- package/package/package/utils/colors.js +15 -0
- package/package/package/utils/commands/claude.js +501 -0
- package/package/package/utils/commands/container.js +60 -0
- package/package/package/utils/commands/index.js +23 -0
- package/package/package/utils/sandbox.js +341 -0
- package/package/package/utils/system-optimizer.js +231 -0
- package/package/package/utils/ui.js +38 -0
- package/package/package.json +1 -1
- package/package/sandboxbox-3.0.46.tgz +0 -0
- package/package/utils/commands/claude.js +7 -6
- package/package.json +1 -1
- package/sandboxbox-3.0.48.tgz +0 -0
- package/sandboxbox-settings.json +16 -1
package/sandboxbox-settings.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"hooks": {
|
|
20
|
-
"
|
|
20
|
+
"UserPromptSubmit": [
|
|
21
21
|
{
|
|
22
22
|
"matcher": "*",
|
|
23
23
|
"hooks": [
|
|
@@ -35,6 +35,21 @@
|
|
|
35
35
|
}
|
|
36
36
|
]
|
|
37
37
|
}
|
|
38
|
+
],
|
|
39
|
+
"Stop": [
|
|
40
|
+
{
|
|
41
|
+
"matcher": "*",
|
|
42
|
+
"hooks": [
|
|
43
|
+
{
|
|
44
|
+
"type": "command",
|
|
45
|
+
"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.'"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"type": "command",
|
|
49
|
+
"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.'"
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}
|
|
38
53
|
]
|
|
39
54
|
}
|
|
40
55
|
}
|