A Claude Code plugin. Claude becomes the brain (planner + reviewer); the
OpenAI Codex CLI is the arms (it makes every file edit), reached through
the bundled codex-rescue subagent.
skills/codex/SKILL.md— the workflow skill (triggers on "use codex", "codex mode", "/codex", "have codex implement this", etc.).agents/codex-rescue.md— the subagent the skill delegates to. It shells out tocodex execand returns a summary +git diff. The skill is useless without this agent, which is why they ship together.
The recipient's machine must have:
- The OpenAI Codex CLI installed and authenticated —
codex-rescuerunscodex exec. Verify withcodex --version. - A Codex config (
~/.codex/config.toml) for model/reasoning. The agent pinsservice_tier="fast"per-invocation, so a globalservice_tier = "default"won't block it; model (gpt-5.5) andmodel_reasoning_effortare inherited from your config.
Without the Codex CLI, the skill loads but every delegation fails.
/plugin marketplace add darkzOGx/codex-plugin
/plugin install codex
Then start a session and say "use codex". For the intended setup, run the
main session on Claude Fable 5 (/model claude-fable-5) so Fable plans and
reviews.
Copy skills/codex/ into ~/.claude/skills/ and agents/codex-rescue.md into
~/.claude/agents/.