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