一键导入
investigate
Deep-dive into a codebase question, failure, or architectural concern without making changes
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deep-dive into a codebase question, failure, or architectural concern without making changes
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Start a new feature in an isolated git worktree with proportional verification
Diagnose and fix a bug in an isolated git worktree with reproduce-first, test-first methodology
Create a pull request with cleanup, fmt, and test gates
Safely restructure code in an isolated git worktree with test-preserved, incremental transformations
Start a new feature in an isolated git worktree with proportional verification
Diagnose and fix a bug in an isolated git worktree with reproduce-first, test-first methodology
| name | investigate |
| description | Deep-dive into a codebase question, failure, or architectural concern without making changes |
| disable-model-invocation | true |
Investigate a codebase question or concern. This is a read-only skill — do not modify any files.
Question or concern: $ARGUMENTS
Follow these phases in order.
This skill is read-only. Do not checkout another branch, pull from remotes, fetch, stash, or otherwise mutate repo state — even "preparatory" steps. Investigate the current branch. If you need a fresher base ref than the local origin/main, ask before refreshing it.
Gate: The investigation scope is clear and bounded.
git log --all -S "<term>" to find when relevant code was introduced or changed. Use git blame for context on specific lines.Explore broadly first, then narrow to the relevant areas. Take notes as you go.
Present a structured report to the user:
$agent-dashboard:fix to address the null check at src/auth.py:42", "run $agent-dashboard:refactor to extract the retry logic into a shared utility").Gate: The user has received a clear, actionable report. No files were modified.
This skill is read-only. If the user asks to implement changes based on your findings, do not start editing files. Instead, hand off to the appropriate skill:
$agent-dashboard:feature <description>$agent-dashboard:fix <description>$agent-dashboard:refactor <description>These skills handle branch/worktree setup, TDD, review, and delivery. Starting implementation inline from $agent-dashboard:investigate skips those gates.