From 7a9acc86253b07304ae1a1e70f766cfba15a7c61 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Fri, 21 Aug 2026 04:59:34 +0000 Subject: [PATCH 1/2] fix(ai-review): use Sonnet as OSH fan-out parent Keep collapse vs fan-out routing; only the fan-out parent ID changes from claude/claude-opus-5 to claude/claude-sonnet-5. Co-authored-by: Hicham Zinalabdin --- ai-review/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai-review/action.yml b/ai-review/action.yml index 0ec336b..635b265 100644 --- a/ai-review/action.yml +++ b/ai-review/action.yml @@ -423,7 +423,7 @@ runs: # completed structured_output — landing on composer then yields the # inconclusive "success but no structured_output" failure mode. SONNET="claude/claude-sonnet-5" - OPUS="claude/claude-opus-5" + OPUS="claude/claude-sonnet-5" # Context stage (top-level session) can use Haiku. HAIKU="claude/claude-haiku-4-5-20251001" # Task subagents under Opus inherit adaptive thinking; Haiku returns From b0707791ca5e22309b4b5de141c88bf471e6a9f5 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Fri, 21 Aug 2026 05:00:40 +0000 Subject: [PATCH 2/2] fix(ai-review): route fan-out parent to Sonnet Restore the locked OPUS id. Fan-out still uses a separate branch; only the parent --model assignment is Sonnet instead of OPUS. Co-authored-by: Hicham Zinalabdin --- ai-review/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ai-review/action.yml b/ai-review/action.yml index 635b265..9c1a155 100644 --- a/ai-review/action.yml +++ b/ai-review/action.yml @@ -423,7 +423,7 @@ runs: # completed structured_output — landing on composer then yields the # inconclusive "success but no structured_output" failure mode. SONNET="claude/claude-sonnet-5" - OPUS="claude/claude-sonnet-5" + OPUS="claude/claude-opus-5" # Context stage (top-level session) can use Haiku. HAIKU="claude/claude-haiku-4-5-20251001" # Task subagents under Opus inherit adaptive thinking; Haiku returns @@ -516,7 +516,7 @@ runs: OSH_MODE="${OSH_MODE:-collapse}" if [ "${OSH_MODE}" = "fanout" ]; then - MODEL="${OPUS}" + MODEL="${SONNET}" FALLBACK="${OPUS_FALLBACK}" else MODEL="${SONNET}"