소스 정보
- 저장소
- bradygaster/MfcSquad
- 최근 소스 활동
- 2026년 3월 30일 22:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bradygaster/MfcSquad --skill model-selection명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | model-selection |
| description | Per-agent model selection with 4-layer hierarchy and fallback chains |
| domain | orchestration |
| confidence | high |
| source | extracted |
Before spawning an agent, the coordinator determines which model to use. This skill codifies the 4-layer hierarchy, role-to-model mappings, task complexity adjustments, and fallback chains. Applies to all agent spawns in Team Mode.
Check these layers in order — first match wins:
Layer 1 — User Override: Did the user specify a model? ("use opus", "save costs", "use gpt-5.2-codex for this"). If yes, use that model. Session-wide directives ("always use haiku") persist until contradicted.
Layer 2 — Charter Preference: Does the agent's charter have a ## Model section with Preferred set to a specific model (not auto)? If yes, use that model.
Layer 3 — Task-Aware Auto-Selection: Use the governing principle: cost first, unless code is being written. Match the agent's task to determine output type, then select accordingly:
| Task Output | Model | Tier | Rule |
|---|---|---|---|
| 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. |
Role-to-model mapping (applying cost-first principle):
| Role | Default Model | Why | Override When |
|---|---|---|---|
| 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: code review needs quality, planning needs cost | Architecture proposals → 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.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):
gpt-5.3-codex): large multi-file refactors, complex implementation from spec, heavy code generation (500+ lines)gemini-3-pro-preview): code reviews where a second perspective helps, security reviews, architecture reviews after a rejectionLayer 4 — Default: If nothing else matched, use claude-haiku-4.5. Cost wins when in doubt, unless code is being produced.
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.6 → (omit model param)
Standard: claude-sonnet-4.6 → gpt-5.4 → claude-sonnet-4.5 → gpt-5.3-codex → claude-sonnet-4 → (omit model param)
Fast: claude-haiku-4.5 → gpt-5.1-codex-mini → gpt-4.1 → gpt-5-mini → (omit model param)
(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.
Fallback rules:
Pass the resolved model as the model parameter on every task tool call:
agent_type: "general-purpose"
model: "{resolved_model}"
mode: "background"
description: "{emoji} {Name}: {brief task summary}"
prompt: |
...
Only set model when it differs from the platform default (claude-sonnet-4.6). If the resolved model IS claude-sonnet-4.6, you MAY omit the model parameter — the platform uses it as default.
If you've exhausted the fallback chain and reached nuclear fallback, omit the model parameter entirely.
When spawning, include the model in your acknowledgment:
🔧 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
Include tier annotation only when the model was bumped or a specialist was chosen. Default-tier spawns just show the model name.
Premium: claude-opus-4.6, claude-opus-4.6-fast, claude-opus-4.5
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, 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
Example 1: Backend dev writing API endpoints
claude-sonnet-4.6 (standard tier)🔧 Fenster (claude-sonnet-4.6) — implementing user API endpointsExample 2: User override
claude-haiku-4.5 regardless of role or taskExample 3: Complex refactor
claude-sonnet-4.5gpt-5.2-codex🔧 Fenster (gpt-5.2-codex · code specialist) — refactoring auth to new token systemExample 4: Scribe logging
claude-haiku-4.5📋 Scribe (claude-haiku-4.5 · fast) — logging session