From not-my-reforge
Multi-strategy parallel codebase search. Combines text search, file patterns, git history, and import tracing to find code comprehensively.
How this skill is triggered — by the user, by Claude, or both
Slash command
/not-my-reforge:deepsearchThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have the deepsearch skill. When invoked, execute a multi-strategy search across the codebase.
You have the deepsearch skill. When invoked, execute a multi-strategy search across the codebase.
/not-my-reforge:deepsearch <query>
Execute these strategies in parallel using the Task tool:
*auth*, *login*, *session*)git log --all --oneline --grep="<query>" — commits mentioning the querygit log --all --diff-filter=A -- "*<query>*" — when files were addedgit log -p -S "<query>" --all -- "*.ts" "*.js" — pickaxe search for code changesfunction <query>, class <query>, interface <query>, type <query>const <query>, export .* <query>## DeepSearch Results: "<query>"
### Definitions (N found)
- `file:line` — type/function/class definition
### Usage Sites (N found)
- `file:line` — how it's used (import, call, reference)
### Related Files (N found)
- `file` — related by name or content
### Git History (N commits)
- `hash` — commit message (date)
### Confidence
- High: exact match in definition
- Medium: usage/import reference
- Low: name similarity only
npx claudepluginhub speson/not-my-reforge --plugin not-my-reforgeSemantic codebase search — use for exploring code, finding implementations, and answering questions about any project. Searches using natural language queries, identifier names, or file paths. Returns ranked results using embedding-based similarity, BM25 keyword matching, symbol matching, import graph analysis, and git recency. Use this as the default exploration tool instead of grep when you don't know the exact text to search for.
Enhances codebase searches via semantic query parsing, regex patterns, AST analysis, symbol lookups, and optimized grep/ripgrep with relevance ranking and context.
Replaces grep/rg/ag/ack/fd with AST-aware code search via tilth MCP. Finds symbols, definitions, callers, imports, and text patterns using tree-sitter. Requires tilth MCP server.