Guide for using Superpowers with OpenAI Codex via native skill discovery.
Tell Codex:
Fetch and follow instructions from https://raw.githubusercontent.com/lucianghinda/superpowers-ruby/refs/heads/main/.codex/INSTALL.md
- OpenAI Codex CLI
- Git
-
Clone the repo:
git clone https://github.com/lucianghinda/superpowers-ruby.git ~/.codex/superpowers-ruby -
Create the skills symlink:
mkdir -p ~/.agents/skills ln -s ~/.codex/superpowers-ruby/skills ~/.agents/skills/superpowers-ruby
-
Restart Codex.
-
For subagent skills (optional): Skills like
dispatching-parallel-agentsandsubagent-driven-developmentrequire Codex's multi-agent feature. Add to your Codex config:[features] multi_agent = true
Use a junction instead of a symlink (works without Developer Mode):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.agents\skills"
cmd /c mklink /J "$env:USERPROFILE\.agents\skills\superpowers-ruby" "$env:USERPROFILE\.codex\superpowers-ruby\skills"Codex has native skill discovery — it scans ~/.agents/skills/ at startup, parses SKILL.md frontmatter, and loads skills on demand. Superpowers skills are made visible through a single symlink:
~/.agents/skills/superpowers-ruby/ → ~/.codex/superpowers-ruby/skills/
The using-superpowers skill is discovered automatically and enforces skill usage discipline — no additional configuration needed.
Skills are discovered automatically. Codex activates them when:
- You mention a skill by name (e.g., "use brainstorming")
- The task matches a skill's description
- The
using-superpowersskill directs Codex to use one
Create your own skills in ~/.agents/skills/:
mkdir -p ~/.agents/skills/my-skillCreate ~/.agents/skills/my-skill/SKILL.md:
---
name: my-skill
description: Use when [condition] - [what it does]
---
# My Skill
[Your skill content here]The description field is how Codex decides when to activate a skill automatically — write it as a clear trigger condition.
cd ~/.codex/superpowers-ruby && git pullSkills update instantly through the symlink.
rm ~/.agents/skills/superpowers-rubyWindows (PowerShell):
Remove-Item "$env:USERPROFILE\.agents\skills\superpowers-ruby"Optionally delete the clone: rm -rf ~/.codex/superpowers-ruby (Windows: Remove-Item -Recurse -Force "$env:USERPROFILE\.codex\superpowers-ruby").
- Verify the symlink:
ls -la ~/.agents/skills/superpowers-ruby - Check skills exist:
ls ~/.codex/superpowers-ruby/skills - Restart Codex — skills are discovered at startup
Junctions normally work without special permissions. If creation fails, try running PowerShell as administrator.
- Report issues: https://github.com/lucianghinda/superpowers-ruby/issues
- Main documentation: https://github.com/lucianghinda/superpowers-ruby