Skill Inventory
Scope
Report skills discoverable in these roots (if they exist):
- •
.codex/skills - •
src/skills
Procedure
- •Enumerate
SKILL.mdfiles under the roots.- •Prefer
rg --files -g "SKILL.md" .codex/skills src/skills(skip missing roots).
- •Prefer
- •For each
SKILL.md, read the YAML frontmatter (name,description). - •If frontmatter is missing or malformed, fall back to directory name and note the issue.
- •If multiple skills share the same
name, list all and mark as duplicate names.
Output (default)
- •Provide a concise bullet list sorted by skill name:
- •
<name>:<description>(source:<path>)
- •
Output (if asked for machine-readable)
- •Return JSON:
{ "skills": [{ "name": "...", "description": "...", "source": "..." }] }
Safety
- •Do not modify or create files; report only.