一键导入
deepsearch
Multi-strategy parallel codebase search. Combines text search, file patterns, git history, and import tracing to find code comprehensively.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Multi-strategy parallel codebase search. Combines text search, file patterns, git history, and import tracing to find code comprehensively.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Multi-perspective code audit. Launches parallel security, quality, performance, and architecture analysis agents.
Experiment with code changes in an isolated worktree. Changes can be reviewed and merged or discarded.
Automatically detect and understand project structure, tech stack, conventions, and key files. Provides project context as background knowledge.
5-stage quality pipeline for Agent Teams — Plan, PRD, Execute, Verify, Fix
| name | deepsearch |
| description | Multi-strategy parallel codebase search. Combines text search, file patterns, git history, and import tracing to find code comprehensively. |
| user-invocable | true |
| allowed-tools | Read, Glob, Grep, Bash, Task |
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