Skip to content

Commit beebce0

Browse files
committed
docs: update model references to Sonnet 4.6 and Opus 4.6
1 parent 2e64d2a commit beebce0

10 files changed

Lines changed: 36 additions & 36 deletions

File tree

CLAUDE.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ The plugin automatically uses the optimal model for each phase:
4444
| Agent | Model | Phase | Rationale |
4545
|-------|-------|-------|-----------|
4646
| spec-planner | Opus 4.6 | Requirements + Design | Deep reasoning for edge cases, security, architecture |
47-
| spec-tasker | Sonnet | Task breakdown | Fast, structured decomposition |
48-
| spec-validator | Sonnet | Validation | Checklist-based verification |
49-
| spec-implementer | Sonnet | Implementation | Writes code for tasks |
50-
| spec-tester | Sonnet | Testing | Verifies with Playwright/tests |
51-
| spec-reviewer | Opus | Review | Code quality, security, architecture |
52-
| spec-consultant | Sonnet | Consultation | Domain expert analysis during brainstorming (spawned by /spec-brainstorm) |
53-
| spec-acceptor | Sonnet | Acceptance | Requirement traceability, non-functional verification, formal sign-off |
54-
| spec-documenter | Sonnet | Documentation | Generates docs from spec and code |
55-
| spec-debugger | Sonnet | Debugging | Fixes issues when rejected |
47+
| spec-tasker | Sonnet 4.6 | Task breakdown | Fast, structured decomposition |
48+
| spec-validator | Sonnet 4.6 | Validation | Checklist-based verification |
49+
| spec-implementer | Sonnet 4.6 | Implementation | Writes code for tasks |
50+
| spec-tester | Sonnet 4.6 | Testing | Verifies with Playwright/tests |
51+
| spec-reviewer | Opus 4.6 | Review | Code quality, security, architecture |
52+
| spec-consultant | Sonnet 4.6 | Consultation | Domain expert analysis during brainstorming (spawned by /spec-brainstorm) |
53+
| spec-acceptor | Sonnet 4.6 | Acceptance | Requirement traceability, non-functional verification, formal sign-off |
54+
| spec-documenter | Sonnet 4.6 | Documentation | Generates docs from spec and code |
55+
| spec-debugger | Sonnet 4.6 | Debugging | Fixes issues when rejected |
5656

5757
The `/spec` command delegates to these agents via the Task tool. Users don't need to manually switch models.
5858

59-
For implementation after spec completion, Sonnet is recommended — the spec provides all the context needed for accurate code generation.
59+
For implementation after spec completion, Sonnet 4.6 is recommended — the spec provides all the context needed for accurate code generation.
6060

6161
## Key Concepts
6262

docs/agents/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ Each agent is assigned the model that best fits its task. Reasoning-heavy phases
99
| Agent | Model | Phase | Why |
1010
|-------|-------|-------|-----|
1111
| [spec-planner](spec-planner.md) | Opus 4.6 | Requirements + Design | Deep reasoning for edge cases, security, and architectural tradeoffs |
12-
| [spec-tasker](spec-tasker.md) | Sonnet | Task breakdown | Fast, structured decomposition from a completed design |
13-
| [spec-validator](spec-validator.md) | Sonnet | Validation | Checklist-based verification across all three spec documents |
14-
| [spec-implementer](spec-implementer.md) | Sonnet | Implementation | Writes code and wires it into the running application |
15-
| [spec-tester](spec-tester.md) | Sonnet | Testing | Verifies features end-to-end using Playwright and test suites |
12+
| [spec-tasker](spec-tasker.md) | Sonnet 4.6 | Task breakdown | Fast, structured decomposition from a completed design |
13+
| [spec-validator](spec-validator.md) | Sonnet 4.6 | Validation | Checklist-based verification across all three spec documents |
14+
| [spec-implementer](spec-implementer.md) | Sonnet 4.6 | Implementation | Writes code and wires it into the running application |
15+
| [spec-tester](spec-tester.md) | Sonnet 4.6 | Testing | Verifies features end-to-end using Playwright and test suites |
1616
| [spec-reviewer](spec-reviewer.md) | Opus 4.6 | Code review | Catches security issues, architectural drift, and subtle bugs |
17-
| [spec-debugger](spec-debugger.md) | Sonnet | Debugging | Fixes issues identified by the Tester or Reviewer |
18-
| [spec-consultant](spec-consultant.md) | Sonnet | Brainstorm consultation | Domain expert analysis during `/spec-brainstorm` sessions |
19-
| [spec-acceptor](spec-acceptor.md) | Sonnet | Acceptance | Requirement traceability, non-functional verification, formal sign-off |
20-
| [spec-documenter](spec-documenter.md) | Sonnet | Documentation | Generates API refs, user guides, and ADRs from spec and code |
17+
| [spec-debugger](spec-debugger.md) | Sonnet 4.6 | Debugging | Fixes issues identified by the Tester or Reviewer |
18+
| [spec-consultant](spec-consultant.md) | Sonnet 4.6 | Brainstorm consultation | Domain expert analysis during `/spec-brainstorm` sessions |
19+
| [spec-acceptor](spec-acceptor.md) | Sonnet 4.6 | Acceptance | Requirement traceability, non-functional verification, formal sign-off |
20+
| [spec-documenter](spec-documenter.md) | Sonnet 4.6 | Documentation | Generates API refs, user guides, and ADRs from spec and code |
2121

2222
## Agent Roles
2323

2424
### Planning pipeline
2525

26-
**[spec-planner](spec-planner.md)** runs during `/spec` to produce `requirements.md` and `design.md`. It uses Opus to reason carefully about edge cases, security implications, and architectural tradeoffs before a single line of code is written.
26+
**[spec-planner](spec-planner.md)** runs during `/spec` to produce `requirements.md` and `design.md`. It uses Opus 4.6 to reason carefully about edge cases, security implications, and architectural tradeoffs before a single line of code is written.
2727

2828
**[spec-tasker](spec-tasker.md)** picks up after the planner and breaks the design into discrete, trackable tasks organized across five phases: Setup, Core Implementation, Integration, Testing, and Polish. It syncs tasks to Claude Code's todo system.
2929

docs/commands/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ All plugin commands are slash commands used within a Claude Code session. Execut
2626
|---------|-------------|---------------|
2727
| `/spec-exec` | Run one autonomous implementation iteration: pick a task, implement, wire, test, commit. | `/spec-exec` |
2828
| `/spec-loop` | Trigger the loop script from inside Claude Code. Runs until all tasks are verified. | `/spec-loop` |
29-
| `/spec-team` | Execute with a four-agent team: Implementer, Tester, Reviewer (Opus), Debugger. Higher token cost, stronger guarantees. | `/spec-team` |
29+
| `/spec-team` | Execute with a four-agent team: Implementer, Tester, Reviewer (Opus 4.6), Debugger. Higher token cost, stronger guarantees. | `/spec-team` |
3030

3131
## Post-implementation commands
3232

docs/getting-started/concepts.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ The plugin automatically selects the appropriate model for each phase. You do no
8383
| Agent | Model | Phase | Rationale |
8484
|-------|-------|-------|-----------|
8585
| spec-planner | Opus 4.6 | Requirements + Design | Deep reasoning for edge cases, security, architecture |
86-
| spec-tasker | Sonnet | Task breakdown | Fast, structured decomposition |
87-
| spec-validator | Sonnet | Validation | Checklist-based verification |
88-
| spec-implementer | Sonnet | Implementation | Writes code for tasks |
89-
| spec-tester | Sonnet | Testing | Verifies with Playwright/tests |
90-
| spec-reviewer | Opus | Review | Code quality, security, architecture |
91-
| spec-consultant | Sonnet | Consultation | Domain expert analysis during brainstorming |
92-
| spec-acceptor | Sonnet | Acceptance | Requirement traceability, formal sign-off |
93-
| spec-documenter | Sonnet | Documentation | Generates docs from spec and code |
94-
| spec-debugger | Sonnet | Debugging | Fixes issues when rejected |
86+
| spec-tasker | Sonnet 4.6 | Task breakdown | Fast, structured decomposition |
87+
| spec-validator | Sonnet 4.6 | Validation | Checklist-based verification |
88+
| spec-implementer | Sonnet 4.6 | Implementation | Writes code for tasks |
89+
| spec-tester | Sonnet 4.6 | Testing | Verifies with Playwright/tests |
90+
| spec-reviewer | Opus 4.6 | Review | Code quality, security, architecture |
91+
| spec-consultant | Sonnet 4.6 | Consultation | Domain expert analysis during brainstorming |
92+
| spec-acceptor | Sonnet 4.6 | Acceptance | Requirement traceability, formal sign-off |
93+
| spec-documenter | Sonnet 4.6 | Documentation | Generates docs from spec and code |
94+
| spec-debugger | Sonnet 4.6 | Debugging | Fixes issues when rejected |
9595

9696
Opus is used where careful reasoning matters most (planning and review). Sonnet handles the high-frequency work (implementation, testing, documentation).

docs/getting-started/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Run the `/spec` command with a feature name:
1010
/spec user-authentication
1111
```
1212

13-
The spec-planner agent (Opus) will ask if you want to start from a preset template or from scratch. For a new authentication feature, you might choose the preset to get pre-filled user stories covering common scenarios.
13+
The spec-planner agent (Opus 4.6) will ask if you want to start from a preset template or from scratch. For a new authentication feature, you might choose the preset to get pre-filled user stories covering common scenarios.
1414

1515
The agent then guides you through two phases interactively:
1616

docs/workflow/design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Design
22

3-
The design phase defines how the system will implement the requirements. It follows immediately after requirements in the `/spec` workflow, handled by the same spec-planner agent (Opus).
3+
The design phase defines how the system will implement the requirements. It follows immediately after requirements in the `/spec` workflow, handled by the same spec-planner agent (Opus 4.6).
44

55
## What goes in design.md
66

docs/workflow/execution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Implementer writes code
5151
|
5252
Tester verifies (Playwright / test suite)
5353
|
54-
PASS -> Reviewer checks quality and security (Opus)
54+
PASS -> Reviewer checks quality and security (Opus 4.6)
5555
|
5656
APPROVE -> commit
5757
REJECT -> Debugger fixes -> back to Tester

docs/workflow/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ See [Brainstorming](brainstorming.md).
1818

1919
## Stage 1: Requirements
2020

21-
`/spec <feature-name>` starts the three-phase workflow. The spec-planner agent (Opus) guides you through:
21+
`/spec <feature-name>` starts the three-phase workflow. The spec-planner agent (Opus 4.6) guides you through:
2222

2323
- Identifying user roles and their goals
2424
- Writing user stories in standard format
@@ -46,7 +46,7 @@ See [Design](design.md).
4646

4747
## Stage 3: Tasks
4848

49-
The spec-tasker agent (Sonnet) breaks the design into discrete, trackable tasks:
49+
The spec-tasker agent (Sonnet 4.6) breaks the design into discrete, trackable tasks:
5050

5151
- Five phases: Setup, Core Implementation, Integration, Testing, Polish
5252
- Each task has status, wired, and verified fields

docs/workflow/requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The requirements phase captures what the system must do. Every requirement is wr
44

55
## Starting requirements
66

7-
Run `/spec <feature-name>` to start. The spec-planner (Opus) will:
7+
Run `/spec <feature-name>` to start. The spec-planner (Opus 4.6) will:
88

99
1. Ask clarifying questions about feature scope
1010
2. Identify user roles and their goals

docs/workflow/tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Tasks
22

3-
The tasks phase breaks the design into discrete, trackable implementation items. The spec-tasker agent (Sonnet) generates `tasks.md` and syncs tasks to Claude Code's todo system.
3+
The tasks phase breaks the design into discrete, trackable implementation items. The spec-tasker agent (Sonnet 4.6) generates `tasks.md` and syncs tasks to Claude Code's todo system.
44

55
## Task structure
66

0 commit comments

Comments
 (0)