From code-index
Semantic code search — find code by describing what it does, not what it's named
How this skill is triggered — by the user, by Claude, or both
Slash command
/code-index:findThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search the knowledge graph with natural language. The `search` tool automatically detects whether you're looking for a specific symbol or searching broadly.
Search the knowledge graph with natural language. The search tool automatically detects whether you're looking for a specific symbol or searching broadly.
# Broad semantic search
search("retry logic with exponential backoff")
# Symbol lookup (auto-detected)
search("RedisCache")
# With context for better results
search("error handling", task_context="adding a new API endpoint", goal="follow existing patterns")
| Tip | Example |
|---|---|
| Describe behavior, not names | "database connection pooling" not "dbPool" |
| Use domain language | "order fulfillment" not "processing" |
| Add task context | task_context="building a webhook handler" |
| Ask naturally | "how are background jobs scheduled" |
| Scenario | Tool |
|---|---|
| Know what code does, not its name | search (semantic) |
| Know the exact identifier | search (auto-detects symbol) |
| Want to see relationships | search with symbol name |
| Need all usages | trace_dependencies |
npx claudepluginhub nnourr/code-indexCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.