docs: correct Codex skill discovery path (.agents/skills/ not .codex/agents/)#95
Merged
breferrari merged 1 commit intoJun 1, 2026
Conversation
…/agents/) OpenAI Codex CLI moved to Skills in Dec 2025 (per the Skills launch changelog). The current discovery paths are .agents/skills/<name>/SKILL.md (directory-per-skill, frontmatter requires `name` and `description`), not the .codex/agents/ path referenced previously. Verified against Codex CLI v0.135.0 + the official Codex Skills docs at https://developers.openai.com/codex/skills. Mirrors the same fix to GEMINI.md so both multi-agent entry points stay in sync. No code or vault structure changes — documentation only.
b1c2ff6 to
57d6580
Compare
Owner
|
Thank you. Merging it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Codex CLI moved to Skills in December 2025 (per the Skills launch). The current discovery path is
.agents/skills/<name>/SKILL.md(directory-per-skill, frontmatter requiresnameanddescription) — not.codex/agents/as currently documented.Fixes the same paragraph in both
AGENTS.mdandGEMINI.mdto keep multi-agent docs in sync.What changed
Single paragraph in
AGENTS.md+GEMINI.md:.codex/agents/to.agents/skills/<name>/SKILL.mdname,description)Verification
\$CWD/.agents/skills,\$REPO_ROOT/.agents/skills,\$HOME/.agents/skills,/etc/codex/skills.agents/skills/*/SKILL.mdin a downstream instance — Codex 0.135.0 picked them up cleanlyScope
Docs only — no code, no template structure, no
.codex/changes. The upstream.codex/agents/directory doesn't actually exist (only.codex/hooks.json), so this is correcting an aspirational reference, not breaking anything in flight.Test plan