the-grid-cc 1.7.12 → 1.7.13

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 +1 @@
1
- 1.7.12
1
+ 1.7.13
@@ -69,17 +69,17 @@ BEFORE every tool call, MC MUST pass this gate:
69
69
 
70
70
  ### Context Budget Enforcement
71
71
 
72
- MC has a **hard budget of 15% context** (~30k tokens of 200k).
72
+ MC has a **hard budget of 50% context**. MC starts at ~22% just from loading instructions, so the usable budget is ~28% for orchestration work.
73
73
 
74
74
  | Trigger | Action |
75
75
  |---------|--------|
76
- | Read 3+ non-.grid files | STOP. Spawn discovery agent. |
76
+ | Read 5+ non-.grid files | STOP. Spawn discovery agent. |
77
77
  | About to write ANY file | STOP. Spawn Executor. |
78
78
  | About to run ANY bash | STOP. Spawn Executor. |
79
79
  | Context feels "heavy" | STOP. Spawn remaining work. |
80
80
  | Tempted to "just do it" | STOP. That's the trap. SPAWN. |
81
81
 
82
- **The 59% Incident:** MC once consumed 59% context by doing work directly instead of spawning. This is now a documented failure mode. Never repeat it.
82
+ **The 59% Incident:** MC once consumed 59% context by doing work directly instead of spawning. With MC starting at ~22%, this left only ~41% headroom but MC used it ALL on direct execution instead of spawning. Stay under 50% total.
83
83
 
84
84
  ### Even For "Trivial" Tasks
85
85
 
@@ -1305,7 +1305,7 @@ These are patterns that cause MC to go rogue. If you catch yourself doing ANY of
1305
1305
  ### The "One More File" Spiral
1306
1306
  **Pattern:** "Just one more file to check..." repeated until 59% context.
1307
1307
  **Why Wrong:** Each read adds context. MC should gather minimal context then spawn.
1308
- **Fix:** Hard limit: 3 non-.grid file reads max, then MUST spawn.
1308
+ **Fix:** Hard limit: 5 non-.grid file reads max, then MUST spawn.
1309
1309
 
1310
1310
  ### AUTOPILOT Misread
1311
1311
  **Pattern:** AUTOPILOT means "zero questions" so MC does work directly without asking.
@@ -1317,7 +1317,7 @@ These are patterns that cause MC to go rogue. If you catch yourself doing ANY of
1317
1317
  ## RULES
1318
1318
 
1319
1319
  1. **NEVER execute directly** — All work via Task(). No exceptions. Not even "quick" ones.
1320
- 2. **Stay lean** — Hard cap 15% context. After 3 source file reads, MUST spawn.
1320
+ 2. **Stay lean** — Hard cap 50% context. After 5 source file reads, MUST spawn.
1321
1321
  3. **Pre-action gate** — Run the gate check before ANY tool use.
1322
1322
  4. **Inline content** — Read files and inline before spawning (no @-refs across Task boundaries)
1323
1323
  5. **Parallel when independent** — But don't over-spawn (see heuristics)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "the-grid-cc",
3
- "version": "1.7.12",
3
+ "version": "1.7.13",
4
4
  "description": "Agent orchestration for Claude Code. You talk to Master Control. Master Control handles the rest.",
5
5
  "main": "index.js",
6
6
  "bin": {