ocmm 0.5.2 → 0.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. package/.codex/agents/dw-builder.toml +3 -3
  2. package/.codex/agents/dw-clarifier.toml +2 -2
  3. package/.codex/agents/dw-code-search.toml +2 -2
  4. package/.codex/agents/dw-coding.toml +2 -2
  5. package/.codex/agents/dw-complex.toml +2 -2
  6. package/.codex/agents/dw-creative.toml +2 -2
  7. package/.codex/agents/dw-deep.toml +3 -3
  8. package/.codex/agents/dw-doc-search.toml +2 -2
  9. package/.codex/agents/dw-documenting.toml +2 -2
  10. package/.codex/agents/dw-explore.toml +2 -2
  11. package/.codex/agents/dw-frontend.toml +2 -2
  12. package/.codex/agents/dw-hard-reasoning.toml +2 -2
  13. package/.codex/agents/dw-media-reader.toml +2 -2
  14. package/.codex/agents/dw-normal-task.toml +2 -2
  15. package/.codex/agents/dw-oracle-high.toml +8 -0
  16. package/.codex/agents/dw-oracle.toml +4 -4
  17. package/.codex/agents/dw-orchestrator.toml +2 -2
  18. package/.codex/agents/dw-plan-critic.toml +2 -2
  19. package/.codex/agents/dw-planner.toml +3 -3
  20. package/.codex/agents/dw-quick.toml +2 -2
  21. package/.codex/agents/dw-research.toml +2 -2
  22. package/.codex/agents/dw-reviewer.toml +2 -2
  23. package/README.md +40 -38
  24. package/dist/codex/plugin-generator.js +55 -54
  25. package/dist/codex/plugin-generator.js.map +1 -1
  26. package/dist/config/schema.d.ts +4 -1
  27. package/dist/config/schema.js +1 -0
  28. package/dist/config/schema.js.map +1 -1
  29. package/dist/data/agents.d.ts +2 -1
  30. package/dist/data/agents.js +28 -11
  31. package/dist/data/agents.js.map +1 -1
  32. package/dist/data/categories.js +2 -1
  33. package/dist/data/categories.js.map +1 -1
  34. package/dist/hooks/chat-params.js +71 -14
  35. package/dist/hooks/chat-params.js.map +1 -1
  36. package/dist/hooks/config.js +1 -1
  37. package/dist/hooks/config.js.map +1 -1
  38. package/dist/intent/model-family.d.ts +2 -0
  39. package/dist/intent/model-family.js +11 -0
  40. package/dist/intent/model-family.js.map +1 -1
  41. package/dist/intent/prompt-loader.d.ts +3 -3
  42. package/dist/intent/prompt-loader.js +3 -3
  43. package/dist/routing/model-upgrades.js +28 -1
  44. package/dist/routing/model-upgrades.js.map +1 -1
  45. package/dist/routing/variant-translator.js +7 -4
  46. package/dist/routing/variant-translator.js.map +1 -1
  47. package/package.json +1 -1
  48. package/plugins/deepwork/.codex-plugin/plugin.json +1 -1
  49. package/plugins/deepwork/README.md +2 -2
  50. package/plugins/deepwork/agents/dw-builder.toml +3 -3
  51. package/plugins/deepwork/agents/dw-clarifier.toml +2 -2
  52. package/plugins/deepwork/agents/dw-code-search.toml +2 -2
  53. package/plugins/deepwork/agents/dw-coding.toml +2 -2
  54. package/plugins/deepwork/agents/dw-complex.toml +2 -2
  55. package/plugins/deepwork/agents/dw-creative.toml +2 -2
  56. package/plugins/deepwork/agents/dw-deep.toml +3 -3
  57. package/plugins/deepwork/agents/dw-doc-search.toml +2 -2
  58. package/plugins/deepwork/agents/dw-documenting.toml +2 -2
  59. package/plugins/deepwork/agents/dw-explore.toml +2 -2
  60. package/plugins/deepwork/agents/dw-frontend.toml +2 -2
  61. package/plugins/deepwork/agents/dw-hard-reasoning.toml +2 -2
  62. package/plugins/deepwork/agents/dw-media-reader.toml +2 -2
  63. package/plugins/deepwork/agents/dw-normal-task.toml +2 -2
  64. package/plugins/deepwork/agents/dw-oracle-high.toml +8 -0
  65. package/plugins/deepwork/agents/dw-oracle.toml +4 -4
  66. package/plugins/deepwork/agents/dw-orchestrator.toml +2 -2
  67. package/plugins/deepwork/agents/dw-plan-critic.toml +2 -2
  68. package/plugins/deepwork/agents/dw-planner.toml +3 -3
  69. package/plugins/deepwork/agents/dw-quick.toml +2 -2
  70. package/plugins/deepwork/agents/dw-research.toml +2 -2
  71. package/plugins/deepwork/agents/dw-reviewer.toml +2 -2
  72. package/plugins/deepwork/package.json +1 -1
  73. package/plugins/deepwork/skills/deepwork/SKILL.md +57 -55
  74. package/plugins/deepwork/skills/deepwork-brainstorming/SKILL.md +12 -11
  75. package/plugins/deepwork/skills/deepwork-requesting-code-review/SKILL.md +16 -10
  76. package/plugins/deepwork/skills/deepwork-subagent-driven-development/SKILL.md +14 -8
  77. package/plugins/deepwork/skills/deepwork-writing-plans/SKILL.md +10 -0
  78. package/prompts/codex/agents/clarifier.md +3 -2
  79. package/prompts/codex/deepwork/codex.md +26 -4
  80. package/prompts/codex/deepwork/default.md +10 -8
  81. package/prompts/codex/deepwork/gemini.md +24 -20
  82. package/prompts/codex/deepwork/glm.md +19 -5
  83. package/prompts/codex/deepwork/gpt-5.6.md +18 -2
  84. package/prompts/codex/deepwork/gpt.md +22 -8
  85. package/prompts/codex/deepwork/planner.md +3 -1
  86. package/prompts/omo/agents/clarifier.md +3 -2
  87. package/prompts/omo/deepwork/codex.md +23 -3
  88. package/prompts/omo/deepwork/default.md +34 -19
  89. package/prompts/omo/deepwork/gemini.md +35 -20
  90. package/prompts/omo/deepwork/glm.md +17 -3
  91. package/prompts/omo/deepwork/gpt-5.6.md +18 -2
  92. package/prompts/omo/deepwork/gpt.md +20 -6
  93. package/prompts/omo/deepwork/planner.md +3 -1
  94. package/prompts/v1/agents/clarifier.md +3 -2
  95. package/prompts/v1/deepwork/codex.md +26 -4
  96. package/prompts/v1/deepwork/default.md +10 -8
  97. package/prompts/v1/deepwork/gemini.md +25 -21
  98. package/prompts/v1/deepwork/glm.md +19 -5
  99. package/prompts/v1/deepwork/gpt-5.6.md +18 -2
  100. package/prompts/v1/deepwork/gpt.md +23 -9
  101. package/prompts/v1/deepwork/planner.md +3 -1
  102. package/skills/v1/brainstorming/SKILL.md +12 -11
  103. package/skills/v1/requesting-code-review/SKILL.md +16 -10
  104. package/skills/v1/subagent-driven-development/SKILL.md +14 -8
  105. package/skills/v1/writing-plans/SKILL.md +10 -0
package/README.md CHANGED
@@ -8,7 +8,7 @@ Concepts (model tiering, per-model specialized prompts, intent gating, proactive
8
8
 
9
9
  | Hook | What ocmm does |
10
10
  | ------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
11
- | `config` | Registers 9 agents + 10 category-subagents with their preferred provider/model, shared skill paths, and slash commands. Attaches functional agent prompts plus workflow/model-family deepwork prompts to built-in agents, and category prompts to category subagents. User config can add, override, or disable any of them. |
11
+ | `config` | Registers 11 agents + 10 category-subagents with their preferred provider/model, shared skill paths, and slash commands. Attaches functional agent prompts plus workflow/model-family deepwork prompts to built-in agents, and category prompts to category subagents. User config can add, override, or disable any of them. |
12
12
  | `chat.params` | Resolves the variant for the active agent/model (4-tier priority: user-config -> agent-default -> category-default -> input-variant), respects explicit user choices, and applies only the model-family parameters ocmm supports for that model. Built-in defaults normalize category work to model-appropriate high/max reasoning where supported and avoid implicit Opus 4.7+ thinking budgets. |
13
13
  | `chat.message` | v1 workflow: queues superpowers skills content on the first message per session. Also expands bare ocmm slash commands in noninteractive `opencode run` input so `/ralph-loop ...` and shared-skill commands get command context even when the TUI slash parser is bypassed. |
14
14
  | `experimental.chat.system.transform` | Prepends queued v1 skill content and one-shot slash command context to `output.system`. omo workflow only uses this hook when a bare slash command was expanded by `chat.message`. |
@@ -222,7 +222,7 @@ The Codex plugin exposes:
222
222
  - copied ocmm shared skills plus flattened `deepwork-*` skills from `skills/v1/`;
223
223
  - a `deepwork` skill that maps ocmm's planning/delegation semantics to Codex tools;
224
224
  - plugin-scoped MCP servers generated from ocmm's MCP config, including the default `lsp` MCP served by the plugin-local `ocmm-lsp` wrapper;
225
- - generated `dw-*` Codex agent TOML files under `plugins/deepwork/agents/` for installers or local agent registration, including functional agents such as `dw-oracle` and `dw-creative`.
225
+ - generated `dw-*` Codex agent TOML files under `plugins/deepwork/agents/` for installers or local agent registration, including functional agents such as `dw-oracle`, `dw-oracle-high`, and `dw-creative`.
226
226
 
227
227
  OpenCode still uses `dist/index.js` and its OpenCode hook surface. The Codex adapter does not import or mutate the OpenCode plugin module at runtime.
228
228
 
@@ -252,23 +252,23 @@ Schema (Zod-validated; unknown keys rejected). All fields optional:
252
252
 
253
253
  "agents": {
254
254
  "reviewer": {
255
- "model": "anthropic/claude-opus-4-7",
255
+ "model": "<provider>/<primary-reasoning-model>",
256
256
  "variant": "max",
257
257
  },
258
258
  "orchestrator": {
259
- "model": "anthropic/claude-opus-4-7",
259
+ "model": "<provider>/<primary-reasoning-model>",
260
260
  "variant": "max",
261
261
  "fallbackModels": [
262
- "openai/gpt-5.5",
263
- { "providers": ["zhipu"], "model": "glm-5.1" },
262
+ "<provider>/<fallback-reasoning-model>",
263
+ { "providers": ["<provider>"], "model": "<fallback-model>", "variant": "high" },
264
264
  ],
265
265
  },
266
266
  "builder": {
267
267
  "requirement": {
268
268
  "variant": "high",
269
- "requiresProvider": ["openai"],
269
+ "requiresProvider": ["<provider>"],
270
270
  "fallbackChain": [
271
- { "providers": ["openai"], "model": "gpt-5.5", "variant": "high" },
271
+ { "providers": ["<provider>"], "model": "<implementation-model>", "variant": "high" },
272
272
  ],
273
273
  },
274
274
  },
@@ -276,7 +276,7 @@ Schema (Zod-validated; unknown keys rejected). All fields optional:
276
276
 
277
277
  "categories": {
278
278
  "hard-reasoning": {
279
- "model": "openai/gpt-5.5",
279
+ "model": "<provider>/<primary-reasoning-model>",
280
280
  "variant": "xhigh",
281
281
  },
282
282
  },
@@ -382,48 +382,50 @@ Both `agents.*` and `categories.*` accept either shape:
382
382
 
383
383
  | Model family | ocmm behavior |
384
384
  | ------------ | ------------- |
385
- | Explicit user config or request | Respected as written. ocmm does not silently rewrite user-declared `model`, `variant`, `reasoningEffort`, or `thinking` values. |
386
- | GPT/Codex non-mini built-in defaults | Built-in defaults never request below `high`; category defaults from `coding` upward resolve to `max`, which currently translates to the GPT/Codex `xhigh` reasoning effort. |
387
- | GPT/Codex mini | Keeps the full OpenAI reasoning ladder, including `minimal`, `low`, and no-op `none`. |
388
- | Claude Opus 4.7+ / Fable | Built-in defaults do not emit an ocmm-owned `thinking` budget or `reasoningEffort`; explicit user config is passed through as written. |
385
+ | Explicit user config or request | Respected as written except for review/plan-review floors: `reviewer`, `oracle`, `oracle-high`, and `plan-critic` are raised to the model family's xhigh-equivalent/highest-supported review effort when possible. |
386
+ | GPT-like non-mini built-in defaults | Built-in defaults never request below `high`; category defaults from `coding` upward resolve to `max`. GPT-5.6 supports native `reasoningEffort=max`; other GPT-like/Codex-like families use their catalog-supported maximum effort. |
387
+ | GPT-like mini | Keeps the provider's full low-effort ladder, including `minimal`, `low`, and no-op `none` when supported. |
388
+ | Claude Opus 4.7+ / Fable | Built-in defaults do not emit an ocmm-owned `thinking` budget or `reasoningEffort`; explicit non-review user config is passed through as written, while review/plan-review agents still receive the xhigh-equivalent floor when possible. |
389
389
  | Older Claude | Uses Anthropic `thinking` budgets for non-`none` variants. |
390
390
  | Gemini | Uses `reasoningEffort`; high and above also enable provider thinking. |
391
- | Latest GLM / DeepSeek | Built-in defaults normalize low/medium-style local variants to canonical high/max controls where the provider family supports them; explicit user config or request variants are left as written. |
391
+ | Latest GLM / DeepSeek | Built-in defaults normalize low/medium-style local variants to canonical high/max controls where the provider family supports them; non-review explicit user config or request variants are left as written. |
392
392
  | Category defaults | `quick` stays lightweight. Built-in category defaults from `coding` upward resolve to `max`; explicit user category config or input variants are respected as written. |
393
393
  | Kimi / MiniMax / unknown | Uses the existing temperature shaping fallback when no better family-specific knob exists. |
394
394
 
395
395
  ## Built-in agents
396
396
 
397
397
  ```
398
- orchestrator anthropic/claude-opus-4-7 variant=max main coordinator
399
- builder openai/gpt-5.5 variant=high autonomous implementer
400
- reviewer openai/gpt-5.5 variant=high read-only consultant
401
- doc-search openai/gpt-5.4-mini-fast (none) external docs / OSS lookup
402
- code-search openai/gpt-5.4-mini-fast (none) internal codebase grep
403
- planner anthropic/claude-opus-4-7 variant=max work-plan author
404
- clarifier anthropic/claude-sonnet-4-6 (none) pre-plan analysis
405
- plan-critic openai/gpt-5.5 variant=xhigh plan QA
406
- media-reader openai/gpt-5.5 variant=high multimodal analysis
398
+ orchestrator primary reasoning lane variant=max main coordinator
399
+ builder implementation lane variant=high autonomous implementer
400
+ reviewer primary review lane xhigh floor read-only consultant
401
+ oracle cross-check lane xhigh floor self-supervision reviewer (heterogeneous when configured/available)
402
+ oracle-high supplemental high-effort review variant=max optional third reviewer (explicit config only)
403
+ doc-search lightweight lookup lane (none) external docs / OSS lookup
404
+ code-search lightweight lookup lane (none) internal codebase grep
405
+ planner primary reasoning lane variant=max work-plan author
406
+ clarifier analysis lane (none) pre-plan analysis
407
+ plan-critic primary review lane variant=xhigh plan QA
408
+ media-reader multimodal-capable lane variant=high multimodal analysis
407
409
  ```
408
410
 
409
411
  ## Built-in categories (also registered as subagents)
410
412
 
411
413
  ```
412
- frontend google/gemini-3.1-pro variant=high UI/UX, layout, styling, visual QA
413
- creative google/gemini-3.1-pro variant=high concepts, naming, narrative, framing
414
- hard-reasoning openai/gpt-5.5 variant=xhigh ultrabrain-style decisions and tradeoffs
415
- research openai/gpt-5.5 variant=high missing-fact investigation and evidence gathering
416
- quick openai/gpt-5.4-mini (none) fully specified mechanical edits
417
- coding anthropic/claude-sonnet-4-6 (none) determined code edits and bug fixes
418
- normal-task anthropic/claude-sonnet-4-6 (none) ordinary bounded tasks
419
- complex openai/gpt-5.5 variant=high coordinated multi-step ordinary tasks
420
- deep openai/gpt-5.5 (none) autonomous system development and delivery
421
- documenting kimi-for-coding/k2p5 (none) standalone documentation and prose
414
+ frontend UI/multimodal-capable lane variant=high UI/UX, layout, styling, visual QA
415
+ creative creative-capable lane variant=high concepts, naming, narrative, framing
416
+ hard-reasoning primary reasoning lane variant=xhigh ultrabrain-style decisions and tradeoffs
417
+ research research-capable lane variant=high missing-fact investigation and evidence gathering
418
+ quick lightweight lane (none) fully specified mechanical edits
419
+ coding implementation lane (none) determined code edits and bug fixes
420
+ normal-task implementation lane (none) ordinary bounded tasks
421
+ complex coordinated-work lane variant=high coordinated multi-step ordinary tasks
422
+ deep primary reasoning lane variant=max autonomous system development and delivery
423
+ documenting prose-capable lane (none) standalone documentation and prose
422
424
  ```
423
425
 
424
- Variants shown are the **raw source values** from `src/data/categories.ts`. At runtime the variant policy normalizes categories from `coding` upward to model-appropriate `max` (which translates to the GPT/Codex `xhigh` reasoning effort for GPT-class models) unless the user explicitly overrides them; see the variant policy table above. Entries marked `(none)` carry no built-in variant and rely on this normalization.
426
+ Rows above describe built-in selection lanes, not required provider channels or model IDs. Example model names elsewhere in the repository are references only; explicit user configuration and the currently available model catalog decide the actual model. Agent rows show source defaults or enforced review floors; category rows show the **raw source values** from `src/data/categories.ts`. At runtime the variant policy normalizes categories from `coding` upward to model-appropriate `max` unless the user explicitly overrides them; see the variant policy table above. Entries marked `(none)` carry no built-in variant and rely on this normalization.
425
427
 
426
- The primary structure is `orchestrator` plus four functional agents: `reviewer`, `planner`, `clarifier`, and `plan-critic`. Supporting utility agents (`builder`, `doc-search`, `code-search`, `media-reader`) still use the workflow/model-family deepwork prompt without an additional role prompt. `builder` and `planner` are registered with `mode:"all"` so they can be selected directly and used as delegated task agents. Each category has a prompt under `prompts/<workflow>/category/<name>.md` that is set as the category-subagent's system prompt. Callers invoke categories via `task(category="deep", ...)` or direct subagent names such as `@deep` and `@quick`. Compatibility aliases `@oracle` and `@explore` are registered for upstream omo-style delegation and map to local `reviewer` and `code-search`.
428
+ The primary structure is `orchestrator` plus six functional agents: `reviewer`, `oracle`, `oracle-high`, `planner`, `clarifier`, and `plan-critic`. `oracle` is an independent built-in agent for self-supervision with a configured cross-check / heterogeneous review default, and it shares the reviewer prompt via `promptSource: "reviewer"`. `oracle-high` reuses the reviewer prompt but is not a `reviewer` alias; it is an optional supplemental high-effort reviewer used only when explicitly configured, available, and not disabled. Supporting utility agents (`builder`, `doc-search`, `code-search`, `media-reader`) still use the workflow/model-family deepwork prompt without an additional role prompt. `builder` is registered with `mode:"primary"`; `planner` is registered with `mode:"all"` so it can be selected directly and used as a delegated task agent. Each category has a prompt under `prompts/<workflow>/category/<name>.md` that is set as the category-subagent's system prompt. Callers invoke categories via `task(category="deep", ...)` or direct subagent names such as `@deep` and `@quick`. The upstream-style compatibility alias `@explore` maps to local `code-search`; `@oracle` selects the independent local `oracle` agent rather than aliasing `reviewer`.
427
429
 
428
430
  ## Prompt architecture
429
431
 
@@ -432,11 +434,11 @@ Prompts are organized by workflow:
432
434
  ```
433
435
  prompts/
434
436
  omo/ # upstream omo prompts
435
- deepwork/{default,gpt,gemini,glm,codex,planner}.md
437
+ deepwork/{default,gpt,gpt-5.6,gemini,glm,codex,planner}.md
436
438
  agents/{orchestrator,reviewer,planner,clarifier,plan-critic}.md
437
439
  category/*.md (10 files)
438
440
  v1/ # superpowers-style prompts
439
- deepwork/{default,gpt,gemini,glm,codex,planner}.md
441
+ deepwork/{default,gpt,gpt-5.6,gemini,glm,codex,planner}.md
440
442
  agents/{orchestrator,reviewer,planner,clarifier,plan-critic}.md
441
443
  category/*.md (10 files)
442
444
  skills/
@@ -462,7 +464,7 @@ Model-family variant selection (`pickDeepworkVariantForAgent`):
462
464
  - Codex family -> `codex.md`
463
465
  - others (Claude/Kimi/Minimax/unknown) -> `default.md`
464
466
 
465
- Variant is selected at config time using the agent's `fallbackChain[0].model` + `classifyModelFamily`. For built-in functional agents, ocmm composes `agents/<name>.md` with the selected `deepwork/<variant>.md`; the role prompt is authoritative for that agent's scope and the deepwork prompt supplies workflow/model calibration. Categories receive only their category prompt. No runtime keyword detection — prompts are attached declaratively.
467
+ Variant is selected at config time using the final selected agent model after explicit user configuration, inherited aliases, and catalog-confirmed upgrades are considered. For built-in functional agents, ocmm composes `agents/<name>.md` with the selected `deepwork/<variant>.md`; the role prompt is authoritative for that agent's scope and the deepwork prompt supplies workflow/model calibration. Categories receive only their category prompt. No runtime keyword detection — prompts are attached declaratively.
466
468
 
467
469
  For v1 workflow, superpowers skills are injected on the first message per session via `chat.message` (queue) + `system.transform` (prepend). For omo workflow, prompts are attached declaratively at config time; `chat.message` and `system.transform` only participate when a bare noninteractive slash command needs compatibility expansion.
468
470
 
@@ -5,7 +5,7 @@ import { loadConfig } from "../config/load.js";
5
5
  import { BUILTIN_AGENT_INDEX } from "../data/agents.js";
6
6
  import { BUILTIN_CATEGORY_INDEX } from "../data/categories.js";
7
7
  import { createConfigHandler } from "../hooks/config.js";
8
- import { classifyModelFamily } from "../intent/model-family.js";
8
+ import { classifyModelFamily, supportsNativeGptMaxReasoning } from "../intent/model-family.js";
9
9
  import { loadAllPrompts } from "../intent/prompt-loader.js";
10
10
  import { DEFAULT_SKILLS_ROOT, loadSharedSkills, loadV1Skills, V1_SKILL_DIRS } from "../intent/skill-loader.js";
11
11
  import { loadMcpJsonSync, resolveMcpServers } from "../mcp/index.js";
@@ -31,7 +31,7 @@ const CODEX_COMPATIBLE_PROVIDERS = new Set([
31
31
  "vercel",
32
32
  "codex",
33
33
  ]);
34
- const CODEX_REASONING_EFFORTS = new Set(["minimal", "low", "medium", "high", "xhigh"]);
34
+ const CODEX_REASONING_EFFORTS = new Set(["minimal", "low", "medium", "high", "xhigh", "max"]);
35
35
  const AGENT_ALIASES = new Map([
36
36
  ["explore", "code-search"],
37
37
  ]);
@@ -304,7 +304,7 @@ function writePluginReadme(pluginRoot, config, agents) {
304
304
  "- MCP servers are generated from the Deepwork `mcp` config namespace.",
305
305
  "- The default `lsp` MCP uses the plugin-local `ocmm-lsp` wrapper and bundled GitHub Release binary.",
306
306
  `- Workflow skill: \`${CODEX_WORKFLOW_SKILL_NAME}\`.`,
307
- `- Generated Codex agent profiles use the \`${CODEX_AGENT_PREFIX}-*\` prefix, including functional agents such as \`${CODEX_AGENT_PREFIX}-oracle\` and \`${CODEX_AGENT_PREFIX}-creative\`.`,
307
+ `- Generated Codex agent profiles use the \`${CODEX_AGENT_PREFIX}-*\` prefix, including functional agents such as \`${CODEX_AGENT_PREFIX}-oracle\`, \`${CODEX_AGENT_PREFIX}-oracle-high\`, and \`${CODEX_AGENT_PREFIX}-creative\`.`,
308
308
  "",
309
309
  "The OpenCode plugin remains `dist/index.js`; this directory is the Codex adapter bundle.",
310
310
  ];
@@ -323,9 +323,9 @@ export function stageCodexRuntime(projectRoot, pluginRoot) {
323
323
  }
324
324
  }
325
325
  function renderAgentToml(agent) {
326
- const comments = agent.preferredChain.length
327
- ? [`# Deepwork preferred chain: ${agent.preferredChain.join(" -> ")}`]
328
- : ["# Deepwork preferred chain: <none>"];
326
+ const comments = [
327
+ "# Deepwork profile default; explicit user configuration and the available catalog decide runtime model selection.",
328
+ ];
329
329
  return [
330
330
  "# Generated by Deepwork. Do not edit by hand.",
331
331
  ...comments,
@@ -340,7 +340,7 @@ function renderAgentToml(agent) {
340
340
  }
341
341
  function renderWorkflowSkill(config, agents) {
342
342
  const agentRows = agents
343
- .map((agent) => `| ${agent.name} | ${agent.model} | ${agent.reasoningEffort} | ${agent.sourceName} |`)
343
+ .map((agent) => `| ${agent.name} | ${agent.reasoningEffort} | ${agent.sourceName} |`)
344
344
  .join("\n");
345
345
  return `---
346
346
  name: ${CODEX_WORKFLOW_SKILL_NAME}
@@ -375,6 +375,9 @@ When a Deepwork role maps to a generated agent, use the exact Codex agent type w
375
375
  - Plan review: \`[@${CODEX_AGENT_PREFIX}-plan-critic](subagent://${CODEX_AGENT_PREFIX}-plan-critic)\` or \`multi_agent_v1.spawn_agent(agent_type="${CODEX_AGENT_PREFIX}-plan-critic", fork_context=false, message="Review the plan at <path>.")\`
376
376
  - Code/work review: \`[@${CODEX_AGENT_PREFIX}-reviewer](subagent://${CODEX_AGENT_PREFIX}-reviewer)\` or \`multi_agent_v1.spawn_agent(agent_type="${CODEX_AGENT_PREFIX}-reviewer", fork_context=false, message="<bounded review task>")\`
377
377
  - Self-supervision: \`[@${CODEX_AGENT_PREFIX}-oracle](subagent://${CODEX_AGENT_PREFIX}-oracle)\` or \`multi_agent_v1.spawn_agent(agent_type="${CODEX_AGENT_PREFIX}-oracle", fork_context=false, message="<specific verification task>")\`
378
+ - Optional supplemental high-effort review: \`[@${CODEX_AGENT_PREFIX}-oracle-high](subagent://${CODEX_AGENT_PREFIX}-oracle-high)\` or \`multi_agent_v1.spawn_agent(agent_type="${CODEX_AGENT_PREFIX}-oracle-high", fork_context=false, message="<supplemental high-effort review task>")\` — only when explicitly configured by user/profile, available in the current catalog/dispatch surface, and not disabled
379
+
380
+ When Codex exposes MultiAgentV2 flat tools, map Deepwork delegation to the available flat tool names instead of forcing V1 syntax: use \`spawn_agent\` to create a bounded agent, \`wait_agent\` to wait for completion, \`followup_task\` to continue an existing agent, \`interrupt_agent\` to stop a runaway agent, and \`fork_turns\` only for explicit branch-style exploration. If those names are not callable in the current thread, fall back to the route order below.
378
381
 
379
382
  The \`${CODEX_AGENT_PREFIX}-*\` agent profile is the preferred selector. When a current native dispatch tool can select that profile directly, use it before any generic route.
380
383
 
@@ -393,76 +396,73 @@ If an exact \`${CODEX_AGENT_PREFIX}-*\` invocation returns \`unknown agent_type\
393
396
 
394
397
  ## Generated Agents
395
398
 
396
- | Codex agent | Model | Effort | Deepwork source |
397
- |---|---|---|---|
399
+ | Codex agent | Profile effort | Deepwork source |
400
+ |---|---|---|
398
401
  ${agentRows}
399
402
 
403
+ Generated profile defaults are installation metadata, not mandatory choices. Actual delegation must preserve explicit user configuration and select overrides only from the currently available model catalog.
404
+
400
405
  ## Runtime Model Selection
401
406
 
402
407
  For an exact profile, omit \`model\` and \`reasoning_effort\` by default so Codex can apply the selected \`${CODEX_AGENT_PREFIX}-*\` profile. For direct composition, select the tier model below only when the current tool exposes \`model\`, preserve the profile's existing reasoning effort as the baseline, and load the selected role's developer instructions and required skills. For generic/flat dispatch with no model field, do not invent an override: the child inherits its native/default model while the role and skills are carried in \`message\`. An explicit user-selected model always wins.
403
408
 
404
- ### GPT runtime upgrades (only when directly selectable)
409
+ ### Runtime model upgrades (only when directly selectable)
405
410
 
406
- Apply this section only when the current dispatch surface exposes a \`model\` field or an exact profile route that also accepts a model override. An explicit user-selected model always wins. Determine availability from the current callable surface or active model catalog; do not assume a model exists from its name. When no GPT-5.6 model is available, omit the override and preserve the generated profile's existing model and reasoning behavior unchanged.
411
+ Apply this section only when the current dispatch surface exposes a \`model\` field or an exact profile route that also accepts a model override. An explicit user-selected model always wins. Determine availability from the current callable surface or active model catalog; model names in examples are references only and never prove availability. When no suitable model in a lane is available, omit the override and preserve the generated profile's existing model and reasoning behavior unchanged.
407
412
 
408
- | Role lane | Preferred GPT-5.6 model | Reasoning effort | Roles |
413
+ | Role lane | Selection principle | Reasoning effort | Roles |
409
414
  |---|---|---|---|
410
- | Flagship | \`gpt-5.6-sol\` | \`high\` by default; \`xhigh\` for deep, architecture, algorithmic, security, or high-risk reasoning | ${CODEX_AGENT_PREFIX}-orchestrator, ${CODEX_AGENT_PREFIX}-planner, ${CODEX_AGENT_PREFIX}-builder, ${CODEX_AGENT_PREFIX}-clarifier, ${CODEX_AGENT_PREFIX}-deep, ${CODEX_AGENT_PREFIX}-hard-reasoning |
411
- | External review | \`gpt-5.6-sol\` | \`xhigh\` minimum; local \`max\` for complex, cross-module, security, performance, high-risk, or final-gate review (mapped to the target maximum) | ${CODEX_AGENT_PREFIX}-reviewer |
412
- | Plan review | \`gpt-5.6-sol\` | fixed \`xhigh\` | ${CODEX_AGENT_PREFIX}-plan-critic |
413
- | Cross-check | \`gpt-5.6-terra\` | \`xhigh\` minimum; local \`max\` for complex or high-risk verification (mapped to the target maximum) | ${CODEX_AGENT_PREFIX}-oracle |
414
- | Mid | \`gpt-5.6-terra\` | Preserve the profile baseline unless task complexity requires more | ${CODEX_AGENT_PREFIX}-complex, ${CODEX_AGENT_PREFIX}-normal-task, ${CODEX_AGENT_PREFIX}-coding, ${CODEX_AGENT_PREFIX}-research, ${CODEX_AGENT_PREFIX}-frontend, ${CODEX_AGENT_PREFIX}-creative, ${CODEX_AGENT_PREFIX}-documenting, ${CODEX_AGENT_PREFIX}-media-reader, ${CODEX_AGENT_PREFIX}-doc-search |
415
- | Mini | \`gpt-5.6-luna\` | \`high\` | ${CODEX_AGENT_PREFIX}-quick, ${CODEX_AGENT_PREFIX}-code-search, ${CODEX_AGENT_PREFIX}-explore |
415
+ | Flagship | Best available primary reasoning model in the user's catalog | \`xhigh\` minimum for planning, deep implementation, hard reasoning, architecture, algorithmic, security, or high-risk work; use native \`max\` on GPT-5.6 when maximum reasoning is requested, and use the family-supported maximum elsewhere. \`high\` remains acceptable for coordination, implementation, or clarification roles below that threshold. | ${CODEX_AGENT_PREFIX}-orchestrator, ${CODEX_AGENT_PREFIX}-planner, ${CODEX_AGENT_PREFIX}-builder, ${CODEX_AGENT_PREFIX}-clarifier, ${CODEX_AGENT_PREFIX}-deep, ${CODEX_AGENT_PREFIX}-hard-reasoning |
416
+ | External review | Same primary reasoning lane as flagship work, selected from available models | \`xhigh\` minimum; use native \`max\` on GPT-5.6 for complex, cross-module, security, performance, high-risk, or final-gate review | ${CODEX_AGENT_PREFIX}-reviewer |
417
+ | Supplemental high-effort review | Optional third review lane, only when explicitly configured, available, and not disabled | \`xhigh\` minimum; use native \`max\` on GPT-5.6 for complex or high-risk final verification | ${CODEX_AGENT_PREFIX}-oracle-high |
418
+ | Plan review | Same primary reasoning lane when directly configurable | \`xhigh\` minimum; local \`max\` only by explicit local configuration | ${CODEX_AGENT_PREFIX}-plan-critic |
419
+ | Cross-check | Prefer a configured heterogeneous or otherwise non-identical review lane before any supplemental same-lane fallback | \`xhigh\` minimum; use native \`max\` on max-capable supplemental checks when maximum verification is requested | ${CODEX_AGENT_PREFIX}-oracle |
420
+ | Mid | Best available mid-tier model; if none exists, use the primary reasoning model at a lower effort | Preserve the profile baseline unless task complexity requires more | ${CODEX_AGENT_PREFIX}-complex, ${CODEX_AGENT_PREFIX}-normal-task, ${CODEX_AGENT_PREFIX}-coding, ${CODEX_AGENT_PREFIX}-research, ${CODEX_AGENT_PREFIX}-frontend, ${CODEX_AGENT_PREFIX}-creative, ${CODEX_AGENT_PREFIX}-documenting, ${CODEX_AGENT_PREFIX}-media-reader, ${CODEX_AGENT_PREFIX}-doc-search |
421
+ | Mini | Best available lightweight model for mechanical, search, or fast lookup work | \`high\` for accuracy unless the user explicitly configures otherwise | ${CODEX_AGENT_PREFIX}-quick, ${CODEX_AGENT_PREFIX}-code-search, ${CODEX_AGENT_PREFIX}-explore |
416
422
 
417
- When a newer GPT family is explicitly available, select a demonstrably better model in the same capability lane instead of pinning the 5.6 name: newest flagship for Flagship and External review, and a strong non-identical mid-tier or flagship for Cross-check. Keep the role's high/xhigh complexity rule, never override an explicit user model, and fall back to the generated profile default when availability or capability evidence is absent.
423
+ When a newer family is explicitly available, select a demonstrably better model in the same capability lane instead of pinning an example name. For Cross-check, prefer a configured heterogeneous or otherwise non-identical oracle model first, then a supplemental same-lane option only when no better independent configured model is available. Keep the role's high/xhigh/max complexity rule, never override an explicit user model, and fall back to the generated profile default when availability or capability evidence is absent.
418
424
 
419
- For reviewer and oracle GPT/Codex routes, \`xhigh\` is the minimum reasoning effort. For complex or high-risk review or verification, request local \`max\`; the adapter maps it to the target's maximum supported effort (currently \`xhigh\` for GPT/Codex).
425
+ Reviewer, oracle, and oracle-high routes use an \`xhigh\`-equivalent minimum when the selected model family exposes that control; otherwise they use the highest supported review effort for that family. GPT-5.6 supports native \`max\`, so complex or high-risk review/verification on a GPT-5.6 selected model may request \`max\` directly. Other families use \`max\` only when their cataloged controls support it. oracle-high preserves local \`max\` for GPT-5.6 and other max-capable models.
420
426
 
421
- The plan-critic profile remains fixed \`xhigh\`; its receipt-focused plan review does not use the reviewer/oracle local-effort escalation policy.
427
+ The plan-critic profile uses \`xhigh\` minimum; raise it only through explicit local configuration.
422
428
 
423
429
  ### Tier assignments
424
430
 
425
431
  | Tier | Agents | Model | Effort |
426
432
  |---|---|---|---|
427
- | Flagship | ${CODEX_AGENT_PREFIX}-orchestrator, ${CODEX_AGENT_PREFIX}-planner, ${CODEX_AGENT_PREFIX}-builder, ${CODEX_AGENT_PREFIX}-clarifier, ${CODEX_AGENT_PREFIX}-deep, ${CODEX_AGENT_PREFIX}-hard-reasoning | Latest-gen flagship | high or xhigh by complexity |
428
- | External review | ${CODEX_AGENT_PREFIX}-reviewer | Latest-gen flagship | xhigh minimum; local max for complex or high-risk review |
429
- | Plan review | ${CODEX_AGENT_PREFIX}-plan-critic | Latest-gen flagship | fixed xhigh |
430
- | Cross-check | ${CODEX_AGENT_PREFIX}-oracle | Latest available Terra-lane model; otherwise a strong non-identical mid-tier or flagship | xhigh minimum; local max for complex or high-risk verification |
431
- | Mid | ${CODEX_AGENT_PREFIX}-complex, ${CODEX_AGENT_PREFIX}-normal-task, ${CODEX_AGENT_PREFIX}-coding, ${CODEX_AGENT_PREFIX}-research, ${CODEX_AGENT_PREFIX}-frontend, ${CODEX_AGENT_PREFIX}-creative, ${CODEX_AGENT_PREFIX}-documenting, ${CODEX_AGENT_PREFIX}-media-reader, ${CODEX_AGENT_PREFIX}-doc-search | Latest-gen mid-tier at max, else flagship at high | max or high |
432
- | Mini | ${CODEX_AGENT_PREFIX}-quick, ${CODEX_AGENT_PREFIX}-code-search, ${CODEX_AGENT_PREFIX}-explore | Latest-gen mini | high |
433
+ | Flagship | ${CODEX_AGENT_PREFIX}-orchestrator, ${CODEX_AGENT_PREFIX}-planner, ${CODEX_AGENT_PREFIX}-builder, ${CODEX_AGENT_PREFIX}-clarifier, ${CODEX_AGENT_PREFIX}-deep, ${CODEX_AGENT_PREFIX}-hard-reasoning | Primary reasoning model from the user's available catalog | xhigh minimum for planner/deep/hard-reasoning; native max for GPT-5.6 maximum-reasoning work. high only for coordination, implementation, or clarification roles below that threshold |
434
+ | External review | ${CODEX_AGENT_PREFIX}-reviewer | Primary reasoning lane | xhigh-equivalent minimum when supported; native max for GPT-5.6 complex or high-risk review |
435
+ | Supplemental high-effort review | ${CODEX_AGENT_PREFIX}-oracle-high | Only when explicitly configured, available, and not disabled; otherwise omit | xhigh-equivalent minimum when supported; native max for GPT-5.6 complex or high-risk final verification |
436
+ | Plan review | ${CODEX_AGENT_PREFIX}-plan-critic | Primary reasoning lane | xhigh minimum unless local config raises it |
437
+ | Cross-check | ${CODEX_AGENT_PREFIX}-oracle | Configured heterogeneous or otherwise non-identical capable model; supplemental same-lane fallback only when needed | xhigh-equivalent minimum when supported; native max for max-capable maximum verification |
438
+ | Mid | ${CODEX_AGENT_PREFIX}-complex, ${CODEX_AGENT_PREFIX}-normal-task, ${CODEX_AGENT_PREFIX}-coding, ${CODEX_AGENT_PREFIX}-research, ${CODEX_AGENT_PREFIX}-frontend, ${CODEX_AGENT_PREFIX}-creative, ${CODEX_AGENT_PREFIX}-documenting, ${CODEX_AGENT_PREFIX}-media-reader, ${CODEX_AGENT_PREFIX}-doc-search | Available mid-tier model, else primary reasoning model at lower effort | max or high by task shape |
439
+ | Mini | ${CODEX_AGENT_PREFIX}-quick, ${CODEX_AGENT_PREFIX}-code-search, ${CODEX_AGENT_PREFIX}-explore | Available lightweight model | high |
433
440
 
434
441
  ### Model tier definitions
435
442
 
436
- - **Flagship**: the most capable model of the latest generation (e.g., gpt-5.5 in the 5.x gen).
437
- - **Mid-tier**: a lighter-but-capable model within the latest generation. If the latest gen has no mid-tier, use the flagship at \`high\` effort instead.
438
- - **Mini**: the smallest/cheapest model of the latest generation (e.g., \`-mini\` variants).
443
+ - **Flagship**: the most capable primary reasoning model available to the user.
444
+ - **Mid-tier**: a lighter-but-capable configured model. If no mid-tier lane is available, use the primary reasoning lane at \`high\` effort instead.
445
+ - **Mini**: the smallest/cheapest model available for fast mechanical or lookup tasks.
439
446
  - **Strong non-identical cross-check**: a capable available model that differs from the primary lane when possible; model diversity is useful, but not a reason to bypass the newer-model policy.
440
447
 
441
448
  ### Independent review rule
442
449
 
443
- ${CODEX_AGENT_PREFIX}-oracle provides self-supervision through the Cross-check lane (GPT-5.6 Terra or a newer Terra-lane successor when directly available), while ${CODEX_AGENT_PREFIX}-reviewer provides external review through the External review lane. Preserve an independent review perspective with a non-identical capable model when available, but never downgrade or leave the Terra lane merely to force diversity.
450
+ ${CODEX_AGENT_PREFIX}-oracle provides self-supervision through the Cross-check lane, while ${CODEX_AGENT_PREFIX}-reviewer provides external review through the External review lane. Prefer oracle diversity from a configured heterogeneous or otherwise non-identical capable model; use a supplemental same-lane option only if the diverse option is unavailable or explicitly configured. The default complex/large review set is ${CODEX_AGENT_PREFIX}-oracle + ${CODEX_AGENT_PREFIX}-reviewer. Add ${CODEX_AGENT_PREFIX}-oracle-high only when it is explicitly configured by user/profile, available in the current catalog/dispatch surface, and not disabled. Built-in, default, or generated-profile existence alone must not force three-review dispatch. Do not force multi-review for ordinary work.
444
451
 
445
- ${CODEX_AGENT_PREFIX}-plan-critic provides receipt-focused plan review through the Plan review lane at fixed \`xhigh\`.
452
+ ${CODEX_AGENT_PREFIX}-plan-critic provides receipt-focused plan review through the Plan review lane at \`xhigh\` minimum.
446
453
 
447
- If only one capable model is available, keep the reviewer/oracle GPT/Codex \`xhigh\` floor and use local \`max\` for complex or high-risk review or verification.
454
+ Reviewer, oracle, and oracle-high routes use an \`xhigh\`-equivalent minimum when the selected model family exposes that control; otherwise they use the highest supported review effort for that family. GPT-5.6 supports native \`max\`; for other families, request \`max\` only when the selected model and catalog expose a maximum-effort control.
448
455
 
449
- ### Example (GPT-5.6 generation — verify against your available models)
456
+ ### Example names
450
457
 
451
- | Tier | Example model | Effort |
452
- |---|---|---|
453
- | Flagship | gpt-5.6-sol | high or xhigh |
454
- | External review | gpt-5.6-sol | xhigh minimum; local max for complex/high-risk work |
455
- | Cross-check | gpt-5.6-terra | xhigh minimum; local max for complex/high-risk work |
456
- | Mid | gpt-5.6-terra | high or max |
457
- | Mini | gpt-5.6-luna | high |
458
+ Concrete model names in docs, tests, or generated profile comments are examples and compatibility references only. Select from the user's currently available model catalog and explicit local configuration; never require a specific example name or provider channel.
458
459
  `;
459
460
  }
460
461
  function codexAgentInstructions(args) {
461
- const chain = args.preferredChain.length ? args.preferredChain.join(" -> ") : "<none>";
462
462
  return [
463
463
  `You are the deepwork Codex adapter for Deepwork agent "${args.sourceName}".`,
464
464
  `Deepwork workflow: ${args.workflow}.`,
465
- `Preferred fallback chain: ${chain}.`,
465
+ "Model defaults come from the generated profile. Runtime model selection must preserve explicit user configuration and use only models available in the current catalog.",
466
466
  "",
467
467
  "Codex tool compatibility:",
468
468
  "- Use update_plan for TodoWrite-style planning.",
@@ -483,7 +483,7 @@ function codexAgentInstructions(args) {
483
483
  "## Subagent Dispatch Compatibility (HARD-GATE)",
484
484
  "The current callable dispatch-tool schema is authoritative; MultiAgent V1/V2 names and examples elsewhere are lower-priority compatibility examples.",
485
485
  "When delegating, use agent_type, agent_path, or agent_nickname as an exact profile selector only when the current tool schema or documentation explicitly guarantees that behavior. Otherwise use direct composition only when the tool can select the model and carry system/developer instructions plus skills. Otherwise, if a generic or flat dispatch tool is callable, still delegate with a self-contained message labeled TASK, ROLE, DELIVERABLE, SCOPE, VERIFY, REQUIRED SKILLS, CONTEXT, and CONSTRAINTS. Do not claim that a generic message loaded a dw-* profile, and do not pass a dw-*.toml installation artifact as a skill or prompt attachment. Use local execution only when no native dispatch tool is callable.",
486
- "When a model override is directly supported, preserve an explicit user model. Otherwise prefer GPT-5.6 Sol for flagship and external-review work and GPT-5.6 Terra for oracle cross-checks. Reviewer and oracle GPT/Codex routes use xhigh as their minimum; for complex or high-risk review or verification, request local max so the adapter can map it to the target's maximum supported effort. If GPT-5.6 is absent, keep the profile default; if a newer cataloged GPT model is demonstrably better in the same lane, it may replace the 5.6 preference without changing the role contract.",
486
+ "When a model override is directly supported, preserve an explicit user model and select only from the user's current available catalog. Use the primary reasoning lane for flagship and external-review work. For oracle cross-checks, prefer a configured heterogeneous or otherwise non-identical capable model before a supplemental same-lane fallback. Reviewer, oracle, and oracle-high routes use an xhigh-equivalent minimum when supported and otherwise use the highest supported review effort; GPT-5.6 supports native max for complex or high-risk review/verification, while other families use max only when their cataloged controls support it. If no suitable model is available in a lane, keep the profile default; if a newer cataloged model is demonstrably better in the same lane, it may replace an example preference without changing the role contract.",
487
487
  ].join("\n");
488
488
  }
489
489
  function requirementForName(name, config) {
@@ -539,21 +539,22 @@ function codexReasoningEffort(args) {
539
539
  const effort = direct ?? (args.variant
540
540
  ? translateVariant("codex", args.variant, { modelID: args.model }).reasoningEffort
541
541
  : undefined);
542
- const normalized = effort === "max"
543
- ? "xhigh"
544
- : effort && CODEX_REASONING_EFFORTS.has(effort)
545
- ? effort
546
- : "high";
542
+ const normalized = effort && CODEX_REASONING_EFFORTS.has(effort)
543
+ ? effort
544
+ : "high";
547
545
  const family = classifyModelFamily({
548
546
  providerID: args.entry?.providers[0],
549
547
  modelID: args.model,
550
548
  });
551
- if ((args.sourceName === "reviewer" || args.sourceName === "oracle")
552
- && (family === "gpt" || family === "codex")
553
- && normalized !== "xhigh") {
554
- return "xhigh";
549
+ const isGptCodex = family === "gpt" || family === "codex";
550
+ const gated = isGptCodex && normalized === "max" && !supportsNativeGptMaxReasoning(args.model)
551
+ ? "xhigh"
552
+ : normalized;
553
+ if ((args.sourceName === "reviewer" || args.sourceName === "oracle" || args.sourceName === "oracle-high" || args.sourceName === "plan-critic")
554
+ && isGptCodex) {
555
+ return gated === "xhigh" || gated === "max" ? gated : "xhigh";
555
556
  }
556
- return normalized;
557
+ return gated;
557
558
  }
558
559
  function formatFallbackEntry(entry) {
559
560
  const provider = entry.providers[0] ?? "";
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-generator.js","sourceRoot":"","sources":["../../src/codex/plugin-generator.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"plugin-generator.js","sourceRoot":"","sources":["../../src/codex/plugin-generator.ts"],"names":[],"mappings":"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"}
@@ -71,7 +71,7 @@ declare const HOOK_NAMES: readonly ["directory-readme-injector", "directory-agen
71
71
  export type HookName = (typeof HOOK_NAMES)[number];
72
72
  export type AgentName = (typeof AGENT_NAMES)[number];
73
73
  export type CommandName = (typeof COMMAND_NAMES)[number];
74
- declare const AGENT_NAMES: readonly ["orchestrator", "builder", "reviewer", "oracle", "doc-search", "code-search", "planner", "clarifier", "plan-critic", "media-reader", "frontend", "creative", "hard-reasoning", "research", "quick", "coding", "normal-task", "complex", "deep", "documenting"];
74
+ declare const AGENT_NAMES: readonly ["orchestrator", "builder", "reviewer", "oracle", "oracle-high", "doc-search", "code-search", "planner", "clarifier", "plan-critic", "media-reader", "frontend", "creative", "hard-reasoning", "research", "quick", "coding", "normal-task", "complex", "deep", "documenting"];
75
75
  declare const COMMAND_NAMES: readonly ["ralph-loop", "audit-loop", "dwloop", "idle-continuation"];
76
76
  export declare const SkillSourceEntrySchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
77
77
  path: z.ZodString;
@@ -661,6 +661,7 @@ export declare const ProfileEntrySchema: z.ZodObject<{
661
661
  builder: "builder";
662
662
  reviewer: "reviewer";
663
663
  oracle: "oracle";
664
+ "oracle-high": "oracle-high";
664
665
  "doc-search": "doc-search";
665
666
  "code-search": "code-search";
666
667
  planner: "planner";
@@ -1072,6 +1073,7 @@ export declare const OcmmConfigSchema: z.ZodObject<{
1072
1073
  builder: "builder";
1073
1074
  reviewer: "reviewer";
1074
1075
  oracle: "oracle";
1076
+ "oracle-high": "oracle-high";
1075
1077
  "doc-search": "doc-search";
1076
1078
  "code-search": "code-search";
1077
1079
  planner: "planner";
@@ -1345,6 +1347,7 @@ export declare const OcmmConfigSchema: z.ZodObject<{
1345
1347
  builder: "builder";
1346
1348
  reviewer: "reviewer";
1347
1349
  oracle: "oracle";
1350
+ "oracle-high": "oracle-high";
1348
1351
  "doc-search": "doc-search";
1349
1352
  "code-search": "code-search";
1350
1353
  planner: "planner";
@@ -95,6 +95,7 @@ const AGENT_NAMES = [
95
95
  "builder",
96
96
  "reviewer",
97
97
  "oracle",
98
+ "oracle-high",
98
99
  "doc-search",
99
100
  "code-search",
100
101
  "planner",