You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
codex-taskflow MCP server failed every phase with Model metadata for {{fast}} not found (same refactor-omission class as issue #3). The MCP
server called discoverAgents(cwd, "both") without the model-roles map, so
the built-in agents' {{fast}}/{{strong}}/… placeholders were never
resolved. Fixed: it now calls readSubagentSettings() and passes modelRoles through, exactly like the pi adapter.
codex-runner passed pi-provider model ids to codex exec, which rejected
them. Once the placeholders resolved, the resulting ids
(openrouter/deepseek/..., anthropic/glm-5.2:xhigh) are pi's provider
namespacing — Codex model ids are flat (gpt-5.5, claude-sonnet-4-6) and
it errors with Model metadata for <id> not found. Fixed: runCodexAgentTask
now drops a model that still looks like a pi-provider path (contains /) or an
unresolved {{placeholder}}, so codex exec falls back to its own configured
default model. A user who sets a real Codex model id (no /) still gets it
passed through. Verified end-to-end: a single-agent flow now runs to
completion on Codex and returns the model's output.