sandboxbox 3.0.77 → 3.0.78

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.
@@ -1,5 +1,11 @@
1
1
  # MANDATORY DEV WORKFLOW - ABSOLUTE RULES
2
2
 
3
+ ## Git Workflow - CRITICAL
4
+ - ALWAYS commit changes after completing work: `git add .` then `git commit -m "descriptive message"`
5
+ - ALWAYS push commits to host immediately: `git push origin HEAD`
6
+ - NEVER leave unpushed commits - the stop hook will block you
7
+ - Git remote 'origin' points to the host repository - pushing here persists your changes
8
+
3
9
  ## Files
4
10
  - Maintain permanent structure ONLY - NO ephemeral/temp/mock/simulation files, use glootie mcp and playwright mcp execution instead
5
11
  - Single primary working implementations - ZERO failovers/fallbacks ever
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sandboxbox",
3
- "version": "3.0.77",
3
+ "version": "3.0.78",
4
4
  "description": "Lightweight process containment sandbox for CLI tools - Playwright, Claude Code, and more. Pure Node.js, no dependencies.",
5
5
  "type": "module",
6
6
  "main": "cli.js",