From bc05fb6671ffc5746389084921ce3c7b1a3f57ee Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 5 Jan 2026 14:37:29 +0900 Subject: [PATCH] feat(sisyphus): enable variant='max' for maximum reasoning effort MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) --- src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.ts b/src/index.ts index 75b4c57..13b1818 100644 --- a/src/index.ts +++ b/src/index.ts @@ -255,6 +255,10 @@ const OhMyOpenCodePlugin: Plugin = async (ctx) => { }, "chat.message": async (input, output) => { + if (input.agent === "Sisyphus") { + (output.message as Record).variant = "max" + } + await claudeCodeHooks["chat.message"]?.(input, output); await keywordDetector?.["chat.message"]?.(input, output); await contextInjector["chat.message"]?.(input, output);