[Issue #72] Add explicit model specification to commands and agents #84

Merged
HugoNijhuis merged 1 commits from issue-72-add-model-specification into main 2026-01-10 18:22:45 +00:00
4 changed files with 15 additions and 0 deletions
Showing only changes of commit ae20a63bf6 - Show all commits

View File

@@ -1,6 +1,10 @@
--- ---
name: issue-worker name: issue-worker
description: Autonomous agent that implements a single issue in an isolated git worktree description: Autonomous agent that implements a single issue in an isolated git worktree
# Model: sonnet provides balanced speed and capability for implementation tasks.
# Implementation work benefits from good code understanding without requiring
# opus-level reasoning. Faster iteration through the implement-commit-review cycle.
model: sonnet
tools: Bash, Read, Write, Edit, Glob, Grep, TodoWrite tools: Bash, Read, Write, Edit, Glob, Grep, TodoWrite
skills: gitea, issue-writing, software-architecture skills: gitea, issue-writing, software-architecture
--- ---

View File

@@ -1,6 +1,10 @@
--- ---
name: pr-fixer name: pr-fixer
description: Autonomous agent that addresses PR review feedback in an isolated git worktree description: Autonomous agent that addresses PR review feedback in an isolated git worktree
# Model: sonnet provides balanced speed and capability for addressing feedback.
# Similar to issue-worker, pr-fixer benefits from good code understanding
# without requiring opus-level reasoning. Quick iteration on review feedback.
model: sonnet
tools: Bash, Read, Write, Edit, Glob, Grep, TodoWrite, Task tools: Bash, Read, Write, Edit, Glob, Grep, TodoWrite, Task
skills: gitea, code-review skills: gitea, code-review
--- ---

View File

@@ -1,5 +1,8 @@
--- ---
description: Show dashboard of open issues, PRs awaiting review, and CI status. description: Show dashboard of open issues, PRs awaiting review, and CI status.
# Model: haiku is sufficient for fetching and displaying data.
# This command only reads from Gitea and formats output - no complex reasoning needed.
model: haiku
--- ---
# Repository Dashboard # Repository Dashboard

View File

@@ -1,5 +1,9 @@
--- ---
description: View current issues as a roadmap. Shows open issues organized by status and dependencies. description: View current issues as a roadmap. Shows open issues organized by status and dependencies.
# Model: haiku is sufficient for fetching and organizing issue data.
# This command reads issues and dependencies, then displays them in categories.
# Basic categorization logic doesn't require advanced reasoning.
model: haiku
argument-hint: argument-hint:
--- ---