بنقرة واحدة
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.