From 2957e708cbd1169b9c918140722fc03ccc2cb604 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 19 Jan 2026 14:09:07 +0000 Subject: [PATCH] refactor: remove explicit sonnet model settings from commands and agents Keep only haiku model settings, allowing other commands and agents to use the default model. Removed model specifications from 12 files: - 8 agents (code-reviewer, increment-implementer, increment-implementer-auditor, requirements-definer, requirements-definer-auditor, security-reviewer, specification-writer, specification-writer-auditor) - 4 commands (feature, implement-increment, review-pull-request, write-end-to-end-tests) --- plugins/claude-constructor/agents/code-reviewer.md | 1 - .../claude-constructor/agents/increment-implementer-auditor.md | 1 - plugins/claude-constructor/agents/increment-implementer.md | 1 - .../claude-constructor/agents/requirements-definer-auditor.md | 1 - plugins/claude-constructor/agents/requirements-definer.md | 1 - plugins/claude-constructor/agents/security-reviewer.md | 1 - .../claude-constructor/agents/specification-writer-auditor.md | 1 - plugins/claude-constructor/agents/specification-writer.md | 1 - plugins/claude-constructor/commands/feature.md | 1 - plugins/claude-constructor/commands/implement-increment.md | 1 - plugins/claude-constructor/commands/review-pull-request.md | 1 - plugins/claude-constructor/commands/write-end-to-end-tests.md | 1 - 12 files changed, 12 deletions(-) diff --git a/plugins/claude-constructor/agents/code-reviewer.md b/plugins/claude-constructor/agents/code-reviewer.md index cad7dfb..5cb6098 100644 --- a/plugins/claude-constructor/agents/code-reviewer.md +++ b/plugins/claude-constructor/agents/code-reviewer.md @@ -1,7 +1,6 @@ --- name: code-reviewer description: Reviews implementation against specification requirements and provides APPROVED or NEEDS_CHANGES verdict -model: sonnet tools: Read, Write, Grep, Glob, Bash color: cyan --- diff --git a/plugins/claude-constructor/agents/increment-implementer-auditor.md b/plugins/claude-constructor/agents/increment-implementer-auditor.md index f51f0cd..e91b2db 100644 --- a/plugins/claude-constructor/agents/increment-implementer-auditor.md +++ b/plugins/claude-constructor/agents/increment-implementer-auditor.md @@ -2,7 +2,6 @@ name: increment-implementer-auditor description: Post-implementation auditor that verifies increment-implementer agents completed their tasks correctly, thoroughly, and without cutting corners, scope creep, or unnecessary code. tools: Read, Grep, Glob, Bash, Edit -model: sonnet color: red --- diff --git a/plugins/claude-constructor/agents/increment-implementer.md b/plugins/claude-constructor/agents/increment-implementer.md index 424ff1a..2684ebf 100644 --- a/plugins/claude-constructor/agents/increment-implementer.md +++ b/plugins/claude-constructor/agents/increment-implementer.md @@ -1,7 +1,6 @@ --- name: increment-implementer description: Implements a specific task from a feature specification based on the agent_id assigned to it. This agent reads the specification, finds its assigned task, and implements it according to the plan. -model: sonnet color: green tools: Read, Write, Edit, MultiEdit, Glob, Grep, Bash --- diff --git a/plugins/claude-constructor/agents/requirements-definer-auditor.md b/plugins/claude-constructor/agents/requirements-definer-auditor.md index 76a79bc..b1d519d 100644 --- a/plugins/claude-constructor/agents/requirements-definer-auditor.md +++ b/plugins/claude-constructor/agents/requirements-definer-auditor.md @@ -2,7 +2,6 @@ name: requirements-definer-auditor description: Quality assurance specialist that validates requirements completeness, clarity, and testability before sign-off. Use after requirements definition to ensure they meet quality standards and are ready for specification writing. tools: Read, Grep, Glob -model: sonnet color: red --- diff --git a/plugins/claude-constructor/agents/requirements-definer.md b/plugins/claude-constructor/agents/requirements-definer.md index 4fe4867..a4f29a1 100644 --- a/plugins/claude-constructor/agents/requirements-definer.md +++ b/plugins/claude-constructor/agents/requirements-definer.md @@ -1,7 +1,6 @@ --- name: requirements-definer description: This agent is called as a step in the feature implementation workflow to define requirements for a feature increment. It reads the state management file containing issue details and creates a comprehensive Requirements Definition section in a specification file. The agent focuses on capturing business value, acceptance criteria, scope boundaries, and other essential requirements without delving into implementation details. -model: sonnet tools: Read, Write, Edit, Glob, Grep color: blue --- diff --git a/plugins/claude-constructor/agents/security-reviewer.md b/plugins/claude-constructor/agents/security-reviewer.md index 8469c86..29ce004 100644 --- a/plugins/claude-constructor/agents/security-reviewer.md +++ b/plugins/claude-constructor/agents/security-reviewer.md @@ -2,7 +2,6 @@ name: security-reviewer description: Performs security analysis by calling the built-in /security-review command to identify vulnerabilities and security risks in the implementation tools: SlashCommand, Read, Write -model: sonnet color: red --- diff --git a/plugins/claude-constructor/agents/specification-writer-auditor.md b/plugins/claude-constructor/agents/specification-writer-auditor.md index 4d0cf67..d72a95a 100644 --- a/plugins/claude-constructor/agents/specification-writer-auditor.md +++ b/plugins/claude-constructor/agents/specification-writer-auditor.md @@ -2,7 +2,6 @@ name: specification-writer-auditor description: Technical specification validator that ensures implementation plans are actionable, properly parallelized, and technically sound. Use after specification writing to validate the plan is ready for implementation. tools: Read, Grep, Glob, Bash -model: sonnet color: red --- diff --git a/plugins/claude-constructor/agents/specification-writer.md b/plugins/claude-constructor/agents/specification-writer.md index d512b18..a1e3d53 100644 --- a/plugins/claude-constructor/agents/specification-writer.md +++ b/plugins/claude-constructor/agents/specification-writer.md @@ -1,7 +1,6 @@ --- name: specification-writer description: This agent is called as a step in the feature implementation workflow to create detailed implementation plans from existing requirements. It reads the state management file, analyzes the pre-defined requirements, examines the codebase, and produces a comprehensive Implementation Plan with parallelization strategy and agent assignments. The agent transforms approved requirements into actionable, parallelizable work specifications that enable multiple agents to implement features efficiently. -model: sonnet tools: Read, Write, Edit, Glob, Grep, Bash color: purple --- diff --git a/plugins/claude-constructor/commands/feature.md b/plugins/claude-constructor/commands/feature.md index 8aeb152..80b9a53 100644 --- a/plugins/claude-constructor/commands/feature.md +++ b/plugins/claude-constructor/commands/feature.md @@ -2,7 +2,6 @@ name: feature description: Implement feature from issue tracking system or user prompt argument-hint: [issue-key-or-prompt] [--provider=] [--silent=] -model: claude-sonnet-4-5 --- # Feature Implementation Command diff --git a/plugins/claude-constructor/commands/implement-increment.md b/plugins/claude-constructor/commands/implement-increment.md index 69a9748..9258604 100644 --- a/plugins/claude-constructor/commands/implement-increment.md +++ b/plugins/claude-constructor/commands/implement-increment.md @@ -2,7 +2,6 @@ name: implement-increment description: Orchestrate implementation of feature increment argument-hint: [issue-key] [state-management-file-path] -model: claude-sonnet-4-5 --- # Implement Increment Command diff --git a/plugins/claude-constructor/commands/review-pull-request.md b/plugins/claude-constructor/commands/review-pull-request.md index fe9ef7d..25b7c09 100644 --- a/plugins/claude-constructor/commands/review-pull-request.md +++ b/plugins/claude-constructor/commands/review-pull-request.md @@ -2,7 +2,6 @@ name: review-pull-request description: Monitor and respond to PR feedback argument-hint: [issue-key] [state-management-file-path] -model: claude-sonnet-4-5 --- # Review Pull Request Command diff --git a/plugins/claude-constructor/commands/write-end-to-end-tests.md b/plugins/claude-constructor/commands/write-end-to-end-tests.md index 30add55..1459b3c 100644 --- a/plugins/claude-constructor/commands/write-end-to-end-tests.md +++ b/plugins/claude-constructor/commands/write-end-to-end-tests.md @@ -2,7 +2,6 @@ name: write-end-to-end-tests description: Write E2E tests for implemented increment argument-hint: [state-management-file-path] -model: claude-sonnet-4-5 --- # Write End-To-End Tests for Increment Command