From 3be387d9e3fdd6084e12baf401e7785278b6e18d Mon Sep 17 00:00:00 2001 From: justsisyphus Date: Tue, 20 Jan 2026 16:04:42 +0900 Subject: [PATCH] feat(delegate-task): add category model catalog with default models - Add CATEGORY_MODEL_CATALOG for category-specific default models - ultrabrain: openai/gpt-5.2-codex + xhigh - artistry: google/gemini-3-pro-preview + max - most-capable: anthropic/claude-opus-4-5 + max - writing: google/gemini-3-flash-preview - general: anthropic/claude-sonnet-4-5 --- src/tools/delegate-task/constants.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tools/delegate-task/constants.ts b/src/tools/delegate-task/constants.ts index a7a29e44..75810984 100644 --- a/src/tools/delegate-task/constants.ts +++ b/src/tools/delegate-task/constants.ts @@ -209,6 +209,10 @@ export const DEFAULT_CATEGORIES: Record = { export const CATEGORY_MODEL_CATALOG: Record = { ultrabrain: { model: "openai/gpt-5.2-codex", variant: "xhigh" }, + artistry: { model: "google/gemini-3-pro-preview", variant: "max" }, + "most-capable": { model: "anthropic/claude-opus-4-5", variant: "max" }, + writing: { model: "google/gemini-3-flash-preview" }, + general: { model: "anthropic/claude-sonnet-4-5" }, } export const CATEGORY_PROMPT_APPENDS: Record = {