Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .codex/Update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Using Codex native skills support with Superpowers

With the introduction of native support for skills in codex (https://github.com/
openai/codex/blob/main/docs/skills.md), we don't have to use legacy superpowers hook.

# Steps to update from legacy installation
1) Directory: put skills under `~/.codex/skills` (one folder per skill with `SKILL.md`).
2) Enable feature: add to `~/.codex/config.toml`:
```toml
[features]
skills = true
```
3) Restart Codex CLI fully, then start a new session. A “## Skills” block should list the skills from `~/.codex/skills`.

Notes
- Hooks: Codex does not load `~/.codex/hooks/hooks.json`; the native skills system handles discovery. You can keep `session-start.sh` if you want custom messaging, but it isn’t required for skills.
- Legacy superpowers: old path `~/.config/superpowers/skills` is ignored; move anything useful into `~/.codex/skills`.