From 53c65a7e635a2d2b8011f48d4380540d4deecf16 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Thu, 12 Mar 2026 17:42:41 +0900 Subject: [PATCH] feat(cli): add sisyphus-junior model fallback requirements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add CLI_AGENT_MODEL_REQUIREMENTS entry for sisyphus-junior with fallback chain: claude-sonnet-4-6 -> kimi-k2.5 -> big-pickle. 🤖 Generated with assistance of OhMyOpenCode --- src/cli/model-fallback-requirements.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/cli/model-fallback-requirements.ts b/src/cli/model-fallback-requirements.ts index 7413c04da..2178aa920 100644 --- a/src/cli/model-fallback-requirements.ts +++ b/src/cli/model-fallback-requirements.ts @@ -130,6 +130,13 @@ export const CLI_AGENT_MODEL_REQUIREMENTS: Record = { { providers: ["opencode-go"], model: "kimi-k2.5" }, ], }, + "sisyphus-junior": { + fallbackChain: [ + { providers: ["anthropic", "github-copilot", "opencode"], model: "claude-sonnet-4-6" }, + { providers: ["opencode-go"], model: "kimi-k2.5" }, + { providers: ["opencode"], model: "big-pickle" }, + ], + }, }; export const CLI_CATEGORY_MODEL_REQUIREMENTS: Record = {