You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DESIGN today asks one Opus session to do BOTH codebase exploration AND bundle synthesis. Split it: spawn 3–4 parallel Explore subagents (cheap, read-only) to map the system, then a small Opus call synthesizes the bundle from their reports.
Why this matters
This is the standard Claude Code pattern for "broad codebase exploration that takes more than 3 queries" — and it's literally how this initiative was scoped. Opus on exploration is expensive overkill; Sonnet/Haiku Explore subagents in parallel are faster and cheaper.
What's already shipped
prompts/methodology/design.md exists and works. This issue restructures how it's executed, not what it produces.
Proposed approach
Refactor DESIGN into two stages:
Stage A (parallel Explore): Spawn N read-only subagents (subagent_type="Explore"), each scoped to one aspect: metrics, knobs, prior findings, related principles. Run them concurrently.
Stage B (Opus synthesis): Single Opus call that reads the explorer reports + principles.json and writes problem.md + bundle.yaml.
Use Plan agent type for Stage B if you want plan-mode discipline.
TL;DR
DESIGN today asks one Opus session to do BOTH codebase exploration AND bundle synthesis. Split it: spawn 3–4 parallel Explore subagents (cheap, read-only) to map the system, then a small Opus call synthesizes the bundle from their reports.
Why this matters
This is the standard Claude Code pattern for "broad codebase exploration that takes more than 3 queries" — and it's literally how this initiative was scoped. Opus on exploration is expensive overkill; Sonnet/Haiku Explore subagents in parallel are faster and cheaper.
What's already shipped
prompts/methodology/design.mdexists and works. This issue restructures how it's executed, not what it produces.Proposed approach
Planagent type for Stage B if you want plan-mode discipline.Acceptance criteria
Out of scope
Part of #120.