Loading...
Loading...
Search auto-generated codebase documentation for function signatures, API docs, class definitions, and code comments. Use when the user asks to "search docs", "find documentation", "look up a function", "check the API", or before implementing changes to verify correct signatures and patterns.
npx skill4agent add davila7/claude-code-templates docs-search# Install doc tools
git clone https://github.com/23blocks-OS/ai-maestro-plugins.git
cd ai-maestro-plugins && ./install-doc-tools.shReceive instruction -> Search docs -> Then implement| Command | Description |
|---|---|
| Semantic documentation search |
| Exact keyword matching |
| Find by type (function, class, module) |
| Get full document content |
| Command | Description |
|---|---|
| Full index from project |
| Delta index (new/modified files only) |
| List all indexed documents |
| Index statistics |
| Type | Sources |
|---|---|
| JSDoc, RDoc, docstrings |
| Class-level comments |
| Module/namespace comments |
| TypeScript interfaces |
| React/Vue component comments |
| README files |
| docs/ folder content |
# Semantic search
docs-search.sh "authentication flow"
# Keyword search for specific identifier
docs-search.sh --keyword "UserController"
# Find all class documentation
docs-find-by-type.sh class
# Get full document details
docs-get.sh doc-abc123
# Index your codebase (first time)
docs-index.sh /path/to/project
# Update index after changes
docs-index-delta.sh