원클릭으로
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.
git checkout maingit pull origin mainGate: 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.