-
Notifications
You must be signed in to change notification settings - Fork 0
Align squad model and roster guidance #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
c335a29
9d832fd
bfa7997
c952dd6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -109,9 +109,9 @@ After resolving the model and including it in the spawn template, this skill is | |
| If a model is unavailable (rate limit, plan restriction), retry within the same tier: | ||
|
|
||
| ``` | ||
| Premium: claude-opus-4.6 → claude-opus-4.6-fast → claude-opus-4.5 → claude-sonnet-4.6 | ||
| Premium: claude-opus-4.6 → claude-opus-4.5 → claude-sonnet-4.6 → claude-sonnet-4.5 | ||
| Standard: claude-sonnet-4.6 → gpt-5.4 → claude-sonnet-4.5 → gpt-5.3-codex → claude-sonnet-4 | ||
| Fast: claude-haiku-4.5 → gpt-5.1-codex-mini → gpt-4.1 → gpt-5-mini | ||
| Fast: claude-haiku-4.5 → gpt-5.4-mini → gpt-4.1 → gpt-5-mini | ||
|
Comment on lines
+109
to
+115
|
||
| ``` | ||
|
mpaulosky marked this conversation as resolved.
|
||
|
|
||
| **Never fall UP in tier.** A fast task won't land on a premium model via fallback. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -356,29 +356,29 @@ Before spawning an agent, determine which model to use. Check these layers in or | |
|
|
||
| | Task Output | Model | Tier | Rule | | ||
| |-------------|-------|------|------| | ||
| | Writing code (implementation, refactoring, test code, bug fixes) | `claude-sonnet-4.5` | Standard | Quality and accuracy matter for code. Use standard tier. | | ||
| | Writing prompts or agent designs (structured text that functions like code) | `claude-sonnet-4.5` | Standard | Prompts are executable — treat like code. | | ||
| | Writing code (implementation, refactoring, test code, bug fixes) | `claude-sonnet-4.6` | Standard | Quality and accuracy matter for code. Use standard tier. | | ||
| | Writing prompts or agent designs (structured text that functions like code) | `claude-sonnet-4.6` | Standard | Prompts are executable — treat like code. | | ||
| | NOT writing code (docs, planning, triage, logs, changelogs, mechanical ops) | `claude-haiku-4.5` | Fast | Cost first. Haiku handles non-code tasks. | | ||
| | Visual/design work requiring image analysis | `claude-opus-4.5` | Premium | Vision capability required. Overrides cost rule. | | ||
| | Visual/design work requiring image analysis | `claude-opus-4.6` | Premium | Vision capability required. Overrides cost rule. | | ||
|
|
||
| **Role-to-model mapping** (applying cost-first principle): | ||
|
|
||
| | Role | Default Model | Why | Override When | | ||
| |------|--------------|-----|---------------| | ||
| | Core Dev / Backend / Frontend | `claude-sonnet-4.5` | Writes code — quality first | Heavy code gen → `gpt-5.2-codex` | | ||
| | Tester / QA | `claude-sonnet-4.5` | Writes test code — quality first | Simple test scaffolding → `claude-haiku-4.5` | | ||
| | Lead / Architect | auto (per-task) | Mixed: code review needs quality, planning needs cost | Architecture proposals → premium; triage/planning → haiku | | ||
| | Core Dev / Backend / Frontend | `claude-sonnet-4.6` | Writes code — quality first | Heavy code gen → `gpt-5.3-codex` | | ||
| | Tester / QA | `claude-sonnet-4.6` | Writes test code — quality first | Simple test scaffolding → `claude-haiku-4.5` | | ||
| | Lead / Architect | auto (per-task) | Mixed: review needs depth, planning needs cost | Architecture proposals or reviewer gates → premium; triage/planning → haiku | | ||
| | Prompt Engineer | auto (per-task) | Mixed: prompt design is like code, research is not | Prompt architecture → sonnet; research/analysis → haiku | | ||
| | Copilot SDK Expert | `claude-sonnet-4.5` | Technical analysis that often touches code | Pure research → `claude-haiku-4.5` | | ||
| | Designer / Visual | `claude-opus-4.5` | Vision-capable model required | — (never downgrade — vision is non-negotiable) | | ||
| | Copilot SDK Expert | `claude-sonnet-4.6` | Technical analysis that often touches code | Pure research → `claude-haiku-4.5` | | ||
| | Designer / Visual | `claude-opus-4.6` | Vision-capable model required | — (never downgrade — vision is non-negotiable) | | ||
| | DevRel / Writer | `claude-haiku-4.5` | Docs and writing — not code | — | | ||
| | Scribe / Logger | `claude-haiku-4.5` | Mechanical file ops — cheapest possible | — (never bump Scribe) | | ||
| | Git / Release | `claude-haiku-4.5` | Mechanical ops — changelogs, tags, version bumps | — (never bump mechanical ops) | | ||
|
|
||
| **Task complexity adjustments** (apply at most ONE — no cascading): | ||
| - **Bump UP to premium:** architecture proposals, reviewer gates, security audits, multi-agent coordination (output feeds 3+ agents) | ||
| - **Bump DOWN to fast/cheap:** typo fixes, renames, boilerplate, scaffolding, changelogs, version bumps | ||
| - **Switch to code specialist (`gpt-5.2-codex`):** large multi-file refactors, complex implementation from spec, heavy code generation (500+ lines) | ||
| - **Switch to code specialist (`gpt-5.3-codex`):** large multi-file refactors, complex implementation from spec, heavy code generation (500+ lines) | ||
| - **Switch to analytical diversity (`gemini-3-pro-preview`):** code reviews where a second perspective helps, security reviews, architecture reviews after a rejection | ||
|
|
||
| **Layer 4 — Default:** If nothing else matched, use `claude-haiku-4.5`. Cost wins when in doubt, unless code is being produced. | ||
|
|
@@ -388,9 +388,9 @@ Before spawning an agent, determine which model to use. Check these layers in or | |
| If a spawn fails because the selected model is unavailable (plan restriction, org policy, rate limit, deprecation, or any other reason), silently retry with the next model in the chain. Do NOT tell the user about fallback attempts. Maximum 3 retries before jumping to the nuclear fallback. | ||
|
|
||
| ``` | ||
| Premium: claude-opus-4.6 → claude-opus-4.6-fast → claude-opus-4.5 → claude-sonnet-4.5 → (omit model param) | ||
| Standard: claude-sonnet-4.5 → gpt-5.2-codex → claude-sonnet-4 → gpt-5.2 → (omit model param) | ||
| Fast: claude-haiku-4.5 → gpt-5.1-codex-mini → gpt-4.1 → gpt-5-mini → (omit model param) | ||
| Premium: claude-opus-4.6 → claude-opus-4.5 → claude-sonnet-4.6 → claude-sonnet-4.5 → (omit model param) | ||
| Standard: claude-sonnet-4.6 → gpt-5.4 → claude-sonnet-4.5 → gpt-5.3-codex → claude-sonnet-4 → gpt-5.2 → (omit model param) | ||
| Fast: claude-haiku-4.5 → gpt-5.4-mini → gpt-4.1 → gpt-5-mini → (omit model param) | ||
|
mpaulosky marked this conversation as resolved.
Outdated
Comment on lines
409
to
+412
|
||
| ``` | ||
|
|
||
| `(omit model param)` = call the `task` tool WITHOUT the `model` parameter. The platform uses its built-in default. This is the nuclear fallback — it always works. | ||
|
|
@@ -413,7 +413,7 @@ prompt: | | |
| ... | ||
| ``` | ||
|
|
||
| Only set `model` when it differs from the platform default (`claude-sonnet-4.5`). If the resolved model IS `claude-sonnet-4.5`, you MAY omit the `model` parameter — the platform uses it as default. | ||
| Only set `model` when it differs from the platform default. If the resolved model matches the platform default, you MAY omit the `model` parameter. | ||
|
mpaulosky marked this conversation as resolved.
Outdated
|
||
|
|
||
| If you've exhausted the fallback chain and reached nuclear fallback, omit the `model` parameter entirely. | ||
|
|
||
|
|
@@ -422,8 +422,8 @@ If you've exhausted the fallback chain and reached nuclear fallback, omit the `m | |
| When spawning, include the model in your acknowledgment: | ||
|
|
||
| ``` | ||
| 🔧 Fenster (claude-sonnet-4.5) — refactoring auth module | ||
| 🎨 Redfoot (claude-opus-4.5 · vision) — designing color system | ||
| 🔧 Fenster (claude-sonnet-4.6) — refactoring auth module | ||
| 🎨 Redfoot (claude-opus-4.6 · vision) — designing color system | ||
| 📋 Scribe (claude-haiku-4.5 · fast) — logging session | ||
| ⚡ Keaton (claude-opus-4.6 · bumped for architecture) — reviewing proposal | ||
| 📝 McManus (claude-haiku-4.5 · fast) — updating docs | ||
|
|
@@ -433,9 +433,9 @@ Include tier annotation only when the model was bumped or a specialist was chose | |
|
|
||
| **Valid models (current platform catalog):** | ||
|
|
||
| Premium: `claude-opus-4.6`, `claude-opus-4.6-fast`, `claude-opus-4.5` | ||
| Standard: `claude-sonnet-4.5`, `claude-sonnet-4`, `gpt-5.2-codex`, `gpt-5.2`, `gpt-5.1-codex-max`, `gpt-5.1-codex`, `gpt-5.1`, `gpt-5`, `gemini-3-pro-preview` | ||
| Fast/Cheap: `claude-haiku-4.5`, `gpt-5.1-codex-mini`, `gpt-5-mini`, `gpt-4.1` | ||
| Premium: `claude-opus-4.7`, `claude-opus-4.6`, `claude-opus-4.5` | ||
|
mpaulosky marked this conversation as resolved.
Outdated
|
||
| Standard: `claude-sonnet-4.6`, `claude-sonnet-4.5`, `claude-sonnet-4`, `gpt-5.4`, `gpt-5.3-codex`, `gpt-5.2-codex`, `gpt-5.2`, `gemini-3-pro-preview` | ||
| Fast/Cheap: `claude-haiku-4.5`, `gpt-5.4-mini`, `gpt-5-mini`, `gpt-4.1` | ||
|
|
||
| ### Client Compatibility | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.