From 70242b4d983f43f68a760aec40dcd86a313ab1b5 Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Fri, 24 Jul 2026 14:09:57 -0700 Subject: [PATCH] feat(groom): default the agent model to claude-opus-5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The finder/verifier/builder agents drive groom's output quality — finding real refactors, adjudicating CONFIRM/REJECT, and writing the patch — so the default tracks the current flagship. Callers can still pin an older id (e.g. claude-opus-4-8) via the model input to hold a run steady. actionlint clean. Co-Authored-By: Claude Opus 5 --- .github/workflows/groom.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/groom.yml b/.github/workflows/groom.yml index c846955..fdbfd3b 100644 --- a/.github/workflows/groom.yml +++ b/.github/workflows/groom.yml @@ -162,10 +162,14 @@ on: required: false default: the whole repository model: - description: Anthropic model id for both the finder and the verifier agents. + description: >- + Anthropic model id for the finder, verifier, and builder agents. Defaults + to the current flagship — finding real refactors and adjudicating them is + quality-sensitive, so the strongest model earns its cost here. A caller + can pin an older id (e.g. `claude-opus-4-8`) to hold a run steady. type: string required: false - default: claude-opus-4-8 + default: claude-opus-5 workflows_ref: description: >- Ref of Comfy-Org/github-workflows to load the groom briefs + ledger