Read ~/.claude/references/README.md and all reference files for each cluster below. Then launch
all 7 Agent subagents in a single message, scoped to the entire codebase (or subsection if
the user specified a smaller scope). Paste the relevant reference file contents into each agent's
prompt. Each agent should return a structured list of findings with severity, location, and
recommendation.
Each subagent's prompt must include:
- The full content of the relevant reference files
- The tier definitions from README.md
- This shared task: "Use up to 50 subagents to explore the codebase. Identify violations of Must
invariants, deviations from Should invariants, and unresolved Consider tradeoffs. Focus
especially on patterns you would not want a future agent to spread. Return findings as a
structured list with severity (Must/Should/Consider), location, and recommendation."
Subagent 1 — Structure (subagent_type: Explore, description: "review structure")
Inline: ~/.claude/references/architecture.md, ~/.claude/references/design.md,
~/.claude/references/code-quality.md
Subagent 2 — Types & Correctness (subagent_type: Explore, description: "review types and correctness")
Inline: ~/.claude/references/type-design.md, ~/.claude/references/correctness.md,
~/.claude/references/assertions.md, ~/.claude/references/error-handling.md
Subagent 3 — Security & Privacy (subagent_type: Explore, description: "review security and privacy")
Inline: ~/.claude/references/security.md, ~/.claude/references/privacy.md
Subagent 4 — Data (subagent_type: Explore, description: "review data integrity")
Inline: ~/.claude/references/data-integrity.md
Subagent 5 — Testing (subagent_type: Explore, description: "review testing")
Inline: ~/.claude/references/testing.md
Subagent 6 — Operations (subagent_type: Explore, description: "review observability, performance, concurrency, and reliability")
Inline: ~/.claude/references/observability.md, ~/.claude/references/performance.md,
~/.claude/references/concurrency.md, ~/.claude/references/reliability.md
Subagent 7 — Documentation & Release (subagent_type: Explore, description: "review documentation, API design, dependencies, deployment, and config")
Inline: ~/.claude/references/documentation.md, ~/.claude/references/api-design.md,
~/.claude/references/dependencies.md, ~/.claude/references/deployment.md,
~/.claude/references/config.md
Note: include language-specific files in the relevant agents when applicable:
~/.claude/references/python.md → Types & Correctness (if Python);
~/.claude/references/rust.md → Types & Correctness (if Rust);
~/.claude/references/cli-design.md → Structure (if the project has a CLI binary).