sandboxbox 3.0.29 → 3.0.31
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 +12 -0
package/package.json
CHANGED
package/sandboxbox-settings.json
CHANGED
|
@@ -27,6 +27,18 @@
|
|
|
27
27
|
{
|
|
28
28
|
"type": "command",
|
|
29
29
|
"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.'"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"type": "command",
|
|
33
|
+
"command": "git status --porcelain"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"type": "command",
|
|
37
|
+
"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"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "command",
|
|
41
|
+
"command": "echo 'Please intelligently analyze the staged changes and create an appropriate commit message, then commit and push if the changes are ready.'"
|
|
30
42
|
}
|
|
31
43
|
]
|
|
32
44
|
}
|