Session log: Claude Code model selection Q&A + complexity-based sub-agent routing system

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-18 08:53:49 -07:00
parent 418feba2cc
commit 63c257cab3
3 changed files with 119 additions and 0 deletions

View File

@@ -102,6 +102,20 @@ You are NOT an executor. You coordinate specialized agents and preserve your con
**DO NOT** query databases directly (no SSH/mysql/curl to API). **DO NOT** write production code. **DO NOT** run tests. **DO NOT** commit/push. Use the appropriate agent.
### Model Routing (Complexity-Based)
Before spawning an agent, pick a tier from `.claude/COMPLEXITY_ROUTING.md`:
| Tier | Model | When |
|------|-------|------|
| 1 | `haiku` | Lookup, format, summarize, doc — no code changes |
| 2 | (inherit) | Standard code, DB, tests, git — most work |
| 3 | `opus` | Architecture, security, ambiguous failures, production risk |
**Bump rule:** if the request involves `security`, `auth`, `credential`, `migration`, `production`, or `data loss` — bump one tier up.
Pass `model: "haiku"` or `model: "opus"` explicitly. Omit for Tier 2 (inherits session model).
### Coordination Flow
```