diff --git a/docs/reference/features.md b/docs/reference/features.md index a1b8ba6e2..f2a1f9677 100644 --- a/docs/reference/features.md +++ b/docs/reference/features.md @@ -117,7 +117,7 @@ By combining these two concepts, you can generate optimal agents through `task`. | -------------------- | ------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | | `visual-engineering` | `google/gemini-3.1-pro` | Frontend, UI/UX, design, styling, animation | | `ultrabrain` | `openai/gpt-5.5` (xhigh) | Deep logical reasoning, complex architecture decisions requiring extensive analysis | -| `deep` | `openai/gpt-5.5` (medium) | Goal-oriented autonomous problem-solving. Thorough research before action. For hairy problems requiring deep understanding. | +| `deep` | `openai/gpt-5.5` (medium) | Goal-oriented autonomous problem-solving on hairy problems requiring deep research. ONE goal + ONE deliverable per call — multiple goals must fan out as parallel `deep` calls, never bundled into one. | | `artistry` | `google/gemini-3.1-pro` (high) | Highly creative/artistic tasks, novel ideas | | `quick` | `openai/gpt-5.4-mini` | Trivial tasks - single file changes, typo fixes, simple modifications | | `unspecified-low` | `anthropic/claude-sonnet-4-6` | Tasks that don't fit other categories, low effort required | diff --git a/src/tools/delegate-task/openai-categories.ts b/src/tools/delegate-task/openai-categories.ts index aeeffe0b2..cbd5ac3d8 100644 --- a/src/tools/delegate-task/openai-categories.ts +++ b/src/tools/delegate-task/openai-categories.ts @@ -203,7 +203,7 @@ export const OPENAI_CATEGORIES: BuiltinCategoryDefinition[] = [ { name: "deep", config: { model: "openai/gpt-5.5", variant: "medium" }, - description: "Goal-oriented autonomous problem-solving. Thorough research before action. For hairy problems requiring deep understanding.", + description: "Goal-oriented autonomous problem-solving on hairy problems requiring deep research. ONE goal + ONE deliverable per call — multiple goals must fan out as parallel `deep` calls, never bundled into one.", promptAppend: DEEP_CATEGORY_PROMPT_APPEND, resolvePromptAppend: resolveDeepCategoryPromptAppend, },