fix: correct model names to claude-haiku-4-5 and claude-sonnet-4-5

Update model field in all skills and agents to use full model names:
- haiku → claude-haiku-4-5
- sonnet → claude-sonnet-4-5

Updated files:
- vision-to-backlog skill
- spawn-issues skill
- problem-space-analyst agent
- context-mapper agent
- domain-modeler agent
- capability-extractor agent
- backlog-builder agent
- issue-worker agent
- code-reviewer agent
- pr-fixer agent

Co-Authored-By: Claude Code <noreply@anthropic.com>
This commit is contained in:
2026-01-12 16:47:39 +01:00
parent dc8fade8f9
commit 41105ac114
10 changed files with 10 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ description: >
Decomposes capabilities into features and executable issues. Uses domain-driven Decomposes capabilities into features and executable issues. Uses domain-driven
decomposition order: commands, rules, events, reads, UI. Identifies refactoring decomposition order: commands, rules, events, reads, UI. Identifies refactoring
issues for brownfield. Generates DDD-informed user stories. issues for brownfield. Generates DDD-informed user stories.
model: haiku model: claude-haiku-4-5
skills: product-strategy, issue-writing, ddd skills: product-strategy, issue-writing, ddd
--- ---

View File

@@ -4,7 +4,7 @@ description: >
Extracts product capabilities from domain models. Maps aggregates and commands Extracts product capabilities from domain models. Maps aggregates and commands
to system abilities that cause meaningful domain changes. Bridges domain thinking to system abilities that cause meaningful domain changes. Bridges domain thinking
to roadmap thinking. to roadmap thinking.
model: haiku model: claude-haiku-4-5
skills: product-strategy skills: product-strategy
--- ---

View File

@@ -4,7 +4,7 @@ description: >
Autonomously reviews a PR in an isolated worktree. Analyzes code quality, Autonomously reviews a PR in an isolated worktree. Analyzes code quality,
logic, tests, and documentation. Posts review comment and returns verdict. logic, tests, and documentation. Posts review comment and returns verdict.
Use when reviewing PRs as part of automated workflow. Use when reviewing PRs as part of automated workflow.
model: haiku model: claude-haiku-4-5
skills: gitea, worktrees skills: gitea, worktrees
disallowedTools: disallowedTools:
- Edit - Edit

View File

@@ -3,7 +3,7 @@ name: context-mapper
description: > description: >
Identifies bounded contexts from problem space analysis. Maps intended contexts Identifies bounded contexts from problem space analysis. Maps intended contexts
from events/journeys and compares with actual code structure. Strategic DDD. from events/journeys and compares with actual code structure. Strategic DDD.
model: haiku model: claude-haiku-4-5
skills: product-strategy, ddd skills: product-strategy, ddd
--- ---

View File

@@ -4,7 +4,7 @@ description: >
Models domain within a bounded context using tactical DDD: aggregates, commands, Models domain within a bounded context using tactical DDD: aggregates, commands,
events, policies. Focuses on invariants, not data structures. Compares with events, policies. Focuses on invariants, not data structures. Compares with
existing code if brownfield. existing code if brownfield.
model: haiku model: claude-haiku-4-5
skills: product-strategy, ddd skills: product-strategy, ddd
--- ---

View File

@@ -4,7 +4,7 @@ description: >
Autonomously implements a single issue in an isolated git worktree. Creates Autonomously implements a single issue in an isolated git worktree. Creates
implementation, commits, pushes, and creates PR. Use when implementing an implementation, commits, pushes, and creates PR. Use when implementing an
issue as part of parallel workflow. issue as part of parallel workflow.
model: sonnet model: claude-sonnet-4-5
skills: gitea, issue-writing, worktrees skills: gitea, issue-writing, worktrees
--- ---

View File

@@ -4,7 +4,7 @@ description: >
Autonomously addresses review feedback on a PR in an isolated worktree. Fixes Autonomously addresses review feedback on a PR in an isolated worktree. Fixes
issues identified by code review, commits changes, and pushes updates. Use when issues identified by code review, commits changes, and pushes updates. Use when
fixing PRs as part of automated review cycle. fixing PRs as part of automated review cycle.
model: haiku model: claude-haiku-4-5
skills: gitea, worktrees skills: gitea, worktrees
--- ---

View File

@@ -3,7 +3,7 @@ name: problem-space-analyst
description: > description: >
Analyzes product vision to identify problem space: event timelines, user journeys, Analyzes product vision to identify problem space: event timelines, user journeys,
decision points, and risk areas. Pre-DDD analysis focused on events, not entities. decision points, and risk areas. Pre-DDD analysis focused on events, not entities.
model: haiku model: claude-haiku-4-5
skills: product-strategy skills: product-strategy
--- ---

View File

@@ -3,7 +3,7 @@ name: spawn-issues
description: > description: >
Orchestrate parallel issue implementation with automated review cycles. Use when Orchestrate parallel issue implementation with automated review cycles. Use when
implementing multiple issues concurrently, or when user says /spawn-issues. implementing multiple issues concurrently, or when user says /spawn-issues.
model: haiku model: claude-haiku-4-5
argument-hint: <issue-number> [<issue-number>...] argument-hint: <issue-number> [<issue-number>...]
user-invocable: true user-invocable: true
--- ---

View File

@@ -3,7 +3,7 @@ name: vision-to-backlog
description: > description: >
Orchestrate the full product strategy chain from manifesto to executable backlog. Orchestrate the full product strategy chain from manifesto to executable backlog.
Use when breaking down product vision into work, or when user says /vision-to-backlog. Use when breaking down product vision into work, or when user says /vision-to-backlog.
model: haiku model: claude-haiku-4-5
argument-hint: [vision-file] argument-hint: [vision-file]
user-invocable: true user-invocable: true
--- ---