deep-research
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseDeep Research (Explore)
深度研究(探索)
Research $ARGUMENTS thoroughly.
全面研究$ARGUMENTS。
Required output
要求输出
- Findings: 3-10 bullets, each backed by specific file references
- Key code locations: a short list of the most important paths to read next
- Open questions / unknowns: what you could not confirm from the repo
- 研究发现:3-10条要点,每条需附带具体的文件引用
- 关键代码位置:列出后续最值得阅读的重要文件路径短列表
- 待解决问题/未知点:无法从仓库中确认的内容
Method
研究方法
- Start broad: use Glob to find likely modules.
- Then go deep: use Grep to locate exact identifiers and call sites.
- Read the top-ranked files and follow references until the flow is clear.
- Stop when you hit diminishing returns (two additional searches yield no new information).
- 先广泛排查:使用Glob查找相关模块。
- 再深入分析:使用Grep定位确切的标识符和调用位置。
- 阅读优先级最高的文件并跟踪引用,直到理清整体流程。
- 当收益递减时停止(即额外两次搜索未产生新信息)。
Rules
规则
- Be evidence-driven: always cite file paths.
- Do not implement changes; this skill is for investigation only.
- 基于证据:始终引用文件路径。
- 不得进行修改;本技能仅用于研究调查。