-
-
Notifications
You must be signed in to change notification settings - Fork 751
Add update instructions for Native Codex skills support #145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Document the transition from legacy superpowers to native skills support in Codex.
|
Warning Rate limit exceeded@varunr89 has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 13 minutes and 20 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (1)
WalkthroughA new documentation file Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 3
🧹 Nitpick comments (1)
.codex/Update.md (1)
15-16: Format "Notes" as a heading for consistency.The section uses plain text instead of markdown heading syntax. For consistency with the rest of the document, format it as
# Notes.-Notes +# Notes
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
.codex/Update.md(1 hunks)
🧰 Additional context used
🪛 markdownlint-cli2 (0.18.1)
.codex/Update.md
6-6: No space after hash on atx style heading
(MD018, no-missing-space-atx)
9-9: Fenced code blocks should have a language specified
(MD040, fenced-code-language)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (2)
.codex/Update.md (2)
3-4: Convert bare URL to markdown link format.The URL should use markdown link syntax for better readability and to comply with markdown linting standards.
-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. +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.
9-12: Specify language for code block.Add
tomlto the code fence for proper syntax highlighting and compliance with markdown linting standards.2) Enable feature: add to `~/.codex/config.toml`: - ``` + ```toml [features] skills = true ```
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
.codex/Update.md(1 hunks)
🧰 Additional context used
🪛 markdownlint-cli2 (0.18.1)
.codex/Update.md
3-3: Bare URL used
(MD034, no-bare-urls)
9-9: Fenced code blocks should have a language specified
(MD040, fenced-code-language)
🔇 Additional comments (1)
.codex/Update.md (1)
1-17: Well-structured migration guide.The documentation clearly outlines the steps for adopting Codex native skills, addresses the legacy superpowers path, and provides helpful lifecycle notes. The guidance is practical and aligns well with the PR objectives.
Corrected code block formatting in update instructions.
Summary
Documented how to use native Codex skills instead of the legacy superpowers
hook: enable [features] skills = true, store SKILLs in ~/.codex/skills,
restart, and note that hooks.json isn’t consumed by Codex.
Motivation and Context
The old superpowers hook path (~/.config/superpowers/skills + hooks.json)
isn’t read by Codex. The native skills feature now discovers skills directly
from ~/.codex/skills, so users need clear migration guidance.
How Has This Been Tested?
Manually verified on macOS with Codex CLI:
Also validated the session-start hook script runs when invoked directly
(for optional custom messaging).
Breaking Changes
No code break, but configuration change required: users must enable
[features] skills = true and place skills in ~/.codex/skills (legacy
superpowers path is ignored).
Types of changes
Checklist
Additional context
Hooks (~/.codex/hooks/hooks.json) aren’t consumed by the Codex CLI; use
them only for optional custom messaging. The native skills discovery is the
supported path.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.