Superpowers lands on Codex: SKILL.md workflows now work outside Claude
The Superpowers workflow—an agent-centric system built around reusable SKILL.md process documents—has been ported from Anthropic’s Claude Code to OpenAI’s Codex CLI in Superpowers 3.3.0. The move adapts the same instrumented “binder” idea for agentic development to a model that lacks plugins and hooks by default, using a bootstrap, tool-mapping layer, and a small helper script to bridge the gaps.
What changed
- The Superpowers repo and its
SKILL.mdsystem are now runnable under Codex, with asuperpowers-codexscript and an updated bootstrap that populates~/.codex/AGENTS.md. - A Claude-to-Codex dictionary was added to translate tool names and expected behaviors (for example, mapping
TodoWritetoupdate_plan) so existing skills can run without rewriting them. - Support for a
~/.codex/skills/directory was added so personal skills can be autodiscovered and override Superpowers skills when names collide.
How the system works
Superpowers retains the same three core pieces:
SKILL.mdfiles: human-readable, agent-executable descriptions of when and how to use a skill.- A skill runner: a tool that instructs the agent to read and follow a
SKILL.md. - A bootstrap: announces available skills to the agent at startup.
Because Codex is highly literal in following instructions, the translation layer and the strict bootstrap rules were essential. The author reports that Codex “really, really likes to follow instructions,” and once the mapping and discovery pieces were in place, agents behaved as intended—loading brainstorming and TDD workflows from skills before starting work.
Install note and safety warning
An immediate way to try the port is to fetch the installer from the repository, for example: Fetch https://raw.githubusercontent.com/obra/superpowers/refs/heads/main/.codex/INSTALL.md and follow the instructions.
The author explicitly warns that running that command causes the agent to download and execute code, editing ~/.codex/AGENTS.md—a literal prompt injection and remote code execution action. The risk and mechanics are explained in the original post.
For more detail on the bootstrap tricks, tool mappings, and behavioral differences observed between Claude and Codex, read the full write-up: https://blog.fsck.com/2025/10/27/skills-for-openai-codex/

