Skill Help
Explain one named local Agent Skill. Inspect only; never execute the target skill.
Workflow
- Parse parameters from the prompt:
-n [NAME]is required. Parse the exact Skill name; when it is absent, return this Skill's usage instructions.-path [PATH]is optional. Parse the supplied path or paths; when absent, set[PATH]to empty. Do not pass-pathto the script; it then resolves its default roots in order:SKILL_PATHS,$CODEX_HOME/skills,~/.codex/skills,~/.claude/skills,~/.agents/skills.- Infer and directly replace each non-empty
[PATH]with its Skill storage directory. Do not call any tool to locate, verify, or further search for that directory. For example, infer and replaceC:\Users\abc\tool\skills\skill-help\agentswithC:\Users\abc\tool\skills.
- Run
scripts/inspect_skill.py -n NAME --json; pass each parsed path with-pathonly when[PATH]is not empty.- The script returns JSON. On success, it returns
status,name,description,path,valid,validation_warnings,sections,headings,searched_sources,warnings,errors, andresources;resourcesalways lists files inscripts,references, andassets. On failure, it returnsstatus,name,searched_sources,results,warnings, anderrors; not-found results also includesuggestions.
- The script returns JSON. On success, it returns
- Analyze the output from
scripts/inspect_skill.pyand present the result using the output schema: first answer the user's question directly; then, honestly and rigorously, use only documented evidence to explain the Skill's purpose, its relationship to the author's current task, and the ways it may help. Clearly label inferences, stateNot documentedfor absent information, and do not invent capabilities or task context.
Guardrails
- Read the complete
SKILL.mdand list direct files underscripts/,references/, andassets/when helpful. - Read a directly referenced file only when necessary; reject paths outside the skill root and do not recursively follow references.
- Never run scripts to infer behavior.
- Report documentation/script inconsistencies and require verification before execution.