Skip to content

v0.1.2

Choose a tag to compare

@github-actions github-actions released this 30 Jun 07:21

[0.1.2] — 2026-06-30

Fixed

  • 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.