fix(README): install into ~/.agents/skills, the path Codex actually reads - #2
Open
xiaolai wants to merge 1 commit into
Open
fix(README): install into ~/.agents/skills, the path Codex actually reads#2xiaolai wants to merge 1 commit into
xiaolai wants to merge 1 commit into
Conversation
…eads Codex CLI discovers skills from .agents/skills directories ($CWD/.agents/skills up to repo root, and ~/.agents/skills at user scope), not .codex/skills. The README's copy command installed codex-dynamic-workflows into ~/.codex/skills, where Codex never looks — so a user following it verbatim ends up with a Codex-orchestration skill Codex can't find. Point it at ~/.agents/skills and correct the 'Codex's default skills folder' wording.
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.
The README's "clone and copy" install command copies
codex-dynamic-workflowsinto~/.codex/skills/, but Codex CLI doesn't read.codex/skills— it discovers skills from.agents/skillsdirectories ($CWD/.agents/skillsup to the repo root, and~/.agents/skillsat user scope). So a user who follows the README verbatim installs a Codex-orchestration skill into a folder Codex never scans, and it silently never loads.Ref: Codex's own build-skills docs — "Codex reads skills from
.agents/skillsdirectories, not.codex/skills." (The top "Install the AI agent skill at …" line via the agent-skills flow is unaffected; this only fixes the manual clone-and-copy path.)Found while auditing the repo's skills; the scripts and skill bodies otherwise checked clean.