Enable superpowers skills in Codex via native skill discovery. Just clone and symlink.
Clone the superpowers repository:
git clone https://github.com/obra/superpowers.git ~/.codex/superpowers
Create the skills symlink:
mkdir -p ~/.agents/skills
ln -s ~/.codex/superpowers/skills ~/.agents/skills/superpowers
Windows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.agents\skills"
cmd /c mklink /J "$env:USERPROFILE\.agents\skills\superpowers" "$env:USERPROFILE\.codex\superpowers\skills"
If you installed superpowers before native skill discovery, you need to:
Update the repo:
cd ~/.codex/superpowers && git pull
Create the skills symlink (step 2 above) — this is the new discovery mechanism.
Remove the old bootstrap block from ~/.codex/AGENTS.md — any block referencing superpowers-codex bootstrap is no longer needed.
Restart Codex.
ls -la ~/.agents/skills/superpowers
You should see a symlink (or junction on Windows) pointing to your superpowers skills directory.
cd ~/.codex/superpowers && git pull
Skills update instantly through the symlink.
rm ~/.agents/skills/superpowers
Optionally delete the clone: rm -rf ~/.codex/superpowers.