chore: Use Opus 4.6 for all skills and sub-agents
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
---
|
||||
name: Backend Developer
|
||||
description: Builds APIs, database schemas, and server-side logic with Supabase
|
||||
model: sonnet
|
||||
model: opus
|
||||
maxTurns: 50
|
||||
tools:
|
||||
- Read
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
name: Frontend Developer
|
||||
description: Builds UI components with React, Next.js, Tailwind CSS, and shadcn/ui
|
||||
model: sonnet
|
||||
model: opus
|
||||
maxTurns: 50
|
||||
tools:
|
||||
- Read
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
name: QA Engineer
|
||||
description: Tests features against acceptance criteria, finds bugs, and performs security audits
|
||||
model: sonnet
|
||||
model: opus
|
||||
maxTurns: 30
|
||||
tools:
|
||||
- Read
|
||||
|
||||
@@ -5,7 +5,7 @@ argument-hint: [feature-spec-path]
|
||||
user-invocable: true
|
||||
context: fork
|
||||
agent: Backend Developer
|
||||
model: sonnet
|
||||
model: opus
|
||||
---
|
||||
|
||||
# Backend Developer
|
||||
|
||||
@@ -5,7 +5,7 @@ argument-hint: [feature-spec-path]
|
||||
user-invocable: true
|
||||
context: fork
|
||||
agent: Frontend Developer
|
||||
model: sonnet
|
||||
model: opus
|
||||
---
|
||||
|
||||
# Frontend Developer
|
||||
|
||||
@@ -4,7 +4,7 @@ description: Context-aware guide that tells you where you are in the workflow an
|
||||
argument-hint: [optional question]
|
||||
user-invocable: true
|
||||
allowed-tools: Read, Glob, Grep, Bash
|
||||
model: haiku
|
||||
model: opus
|
||||
---
|
||||
|
||||
# Project Help Guide
|
||||
|
||||
@@ -5,7 +5,7 @@ argument-hint: [feature-spec-path]
|
||||
user-invocable: true
|
||||
context: fork
|
||||
agent: QA Engineer
|
||||
model: sonnet
|
||||
model: opus
|
||||
---
|
||||
|
||||
# QA Engineer
|
||||
|
||||
@@ -149,7 +149,7 @@ ai-coding-starter-kit/
|
||||
| | +-- backend/SKILL.md /backend (runs as sub-agent)
|
||||
| | +-- qa/SKILL.md /qa (runs as sub-agent)
|
||||
| | +-- deploy/SKILL.md /deploy
|
||||
| | +-- help/SKILL.md /help (lightweight, uses haiku)
|
||||
| | +-- help/SKILL.md /help
|
||||
| +-- agents/ <-- Sub-agent configs
|
||||
| +-- frontend-dev.md Model, tools, limits
|
||||
| +-- backend-dev.md
|
||||
@@ -215,7 +215,7 @@ See `docs/production/` for detailed setup guides.
|
||||
## How It Works Under the Hood
|
||||
|
||||
### Skills (`.claude/skills/`)
|
||||
Each skill is a structured workflow that Claude Code discovers automatically. Skills can run inline (in the main conversation) or as forked sub-agents (isolated context, cheaper model).
|
||||
Each skill is a structured workflow that Claude Code discovers automatically. Skills can run inline (in the main conversation) or as forked sub-agents (isolated context window).
|
||||
|
||||
| Skill | Execution | Why? |
|
||||
|-------|-----------|------|
|
||||
@@ -225,7 +225,7 @@ Each skill is a structured workflow that Claude Code discovers automatically. Sk
|
||||
| `/backend` | Sub-agent (forked) | Heavy file editing, SQL, API code |
|
||||
| `/qa` | Sub-agent (forked) | Systematic testing, lots of output |
|
||||
| `/deploy` | Inline | Deployment needs user oversight |
|
||||
| `/help` | Inline (haiku) | Lightweight status check, minimal cost |
|
||||
| `/help` | Inline | Quick status check and guidance |
|
||||
|
||||
### Rules (`.claude/rules/`)
|
||||
Coding standards that are auto-applied based on which files Claude is working with. No manual loading needed.
|
||||
|
||||
Reference in New Issue
Block a user