~/.agents/skills/, making installation a simple clone and symlink operation.
Prerequisites
- OpenAI Codex CLI installed
- Git installed
- Terminal access (Command Prompt, PowerShell, or Bash)
Quick Install
The fastest way to install is to tell Codex to do it:Manual Installation
For manual control, follow these platform-specific steps:- macOS / Linux
- Windows
Create Skills Symlink
Create the symlink for skill discovery:This makes Superpowers skills discoverable by Codex.
How It Works
Codex uses native skill discovery:- At startup, Codex scans
~/.agents/skills/ - It parses
SKILL.mdfiles and reads YAML frontmatter - Skills are loaded on demand when:
- You mention a skill by name
- The task matches a skill’s description
- Another skill directs Codex to use one
Verifying Skills Are Active
Test automatic skill activation:Creating Personal Skills
Add your own skills alongside Superpowers:Write Skill File
Create The
~/.agents/skills/my-skill/SKILL.md:description field determines when Codex activates your skill automatically.Updating
Update to the latest version:Migrating from Old Bootstrap
If you installed Superpowers before native skill discovery:Remove Old Bootstrap
Edit
~/.codex/AGENTS.md and remove any blocks referencing superpowers-codex bootstrap.Troubleshooting
Skills not showing up
Skills not showing up
Symptom: Codex doesn’t recognize Superpowers skillsSolutions:
- Verify symlink exists:
ls -la ~/.agents/skills/superpowers - Check skills directory:
ls ~/.codex/superpowers/skills - Restart Codex—skills are discovered at startup
- On Windows, verify junction:
dir /AL %USERPROFILE%\.agents\skills
Windows junction creation fails
Windows junction creation fails
Symptom: Error creating junction with
mklink /JSolutions:- Junctions normally work without special permissions
- Try running PowerShell as Administrator
- Verify paths exist:
$env:USERPROFILE\.codex\superpowers\skills
Skills exist but don't activate
Skills exist but don't activate
Symptom: Skills are present but Codex doesn’t use themSolutions:
- Check SKILL.md files have valid YAML frontmatter
- Verify
descriptionfield clearly states activation conditions - Explicitly request a skill: “use brainstorming skill”
- Check Codex logs for skill loading errors
Git clone fails
Git clone fails
Symptom: Cannot clone repositorySolutions:
- Check internet connection
- Verify Git is installed:
git --version - Try HTTPS URL:
https://github.com/obra/superpowers.git - Check GitHub status: https://www.githubstatus.com
Uninstalling
Remove the symlink:Next Steps
Quick Start
Learn the Superpowers workflow
Skills Library
Explore available skills
Writing Skills
Create custom skills
Troubleshooting
Common issues and solutions