Claude-skill-registry claude-code-docs-search
Search local Claude Code documentation to answer implementation questions. Use when asked about Claude Code features, subagents, workflows, skills, hooks, MCP servers, plugins, settings, CLI options, headless mode, or any Claude Code capability.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/claude-code-docs-search" ~/.claude/skills/majiayu000-claude-skill-registry-claude-code-docs-search && rm -rf "$T"
manifest:
skills/data/claude-code-docs-search/SKILL.mdsource content
Claude Code Documentation Search
Search the local
docs/ folder to answer questions about Claude Code implementation details.
Instructions
-
Start with the index - Read
to see available documentation files and their topicsdocs/index.txt -
In addition: Search for specific terms - In addition to identifying docs based on their description in index.txt, use grep to find relevant content: Examples:
Grep pattern="subagent" path="docs/" Grep pattern="hooks" path="docs/" -
Read relevant files - Once you identify relevant docs, read them fully: Examples:
Read file_path="docs/sub-agents.md" Read file_path="docs/hooks.md" -
Cite your sources - Always reference which documentation file(s) your answer comes from
Documentation Topics
Key files for common questions:
- Task tool, agent types, parallel executionsub-agents.md
,hooks.md
- Lifecycle hooks, shell commands on eventshooks-guide.md
- Creating and using skillsskills.md
- MCP server configurationmcp.md
,plugins.md
- Plugin developmentplugins-reference.md
- Non-interactive/CI usageheadless.md
- Command line optionscli-reference.md
- Configuration optionssettings.md
- CLAUDE.md and context managementmemory.md
Example Queries
- "How do I create a subagent?"
- "What hooks are available?"
- "How do I configure MCP servers?"
- "What settings can I customize?"
- "How does Claude Code work?"