Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
Commit15e65d2unknown_key

docs(BIBLE): add §1.7 parallelism rule

docs(BIBLE): add §1.7 parallelism rule

Owner directive: spawn sub-agents whenever work can be parallelised.
Idle main thread is expensive; extra agents are near-free. Independent
files = parallel agents (one agent per file, no overlap). Mounting +
middleware integration stay on the main thread.
Claude committed on April 15, 2026Parent: bfdb5e7
1 file changed+7015e65d23811037a6105360848da0738f0df33beb
1 changed file+7−0
ModifiedBUILD_BIBLE.md+7−0View fileUnifiedSplit
4646- Users can opt out per feature but defaults are maximum-green.
4747- Nothing broken ever reaches production, the website, or the customer.
4848
49### 1.7 Parallelism rule (added per owner request)
50- **Default to spawning sub-agents whenever work can be parallelised.** Owner-cost of an idle main thread is high; owner-cost of an extra agent is near-zero.
51- Independent files = parallel agents. Schema-only edits, new route files, doc updates, test additions, codebase research — all of these run in parallel by default unless they collide.
52- Coordinate file ownership: one agent per file. Never let two agents edit the same file. Mounting + middleware integration stay on the main thread to avoid merge conflicts.
53- When launching multiple agents, send them in a single message with multiple Agent tool calls so they actually run concurrently.
54- The main thread is responsible for: reviewing each agent's output before integrating, running the test suite, and committing. Trust-but-verify — read the changes, don't just rely on the agent's summary.
55
4956---
5057
5158## 2. GITHUB PARITY SCORECARD
5259