IN
investigate
|
Install
mkdir -p .claude/skills/investigate-yokoyamaryota && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15003" && unzip -o skill.zip -d .claude/skills/investigate-yokoyamaryota && rm skill.zipInstalls to .claude/skills/investigate-yokoyamaryota
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Root-cause-first debugging workflow. Use for bugs, regressions, stack traces, production issues, or any case where the real failure path must be understood before edits are proposed.182 chars✓ has a “when” trigger
About this skill
Investigate
Rules
- no speculative fixes
- gather evidence before changing code
- separate observations, hypotheses, and fixes
Workflow
- Reproduce the issue and capture exact symptoms.
- Trace the real execution path.
- Form the smallest plausible root-cause hypothesis.
- Verify the hypothesis against code or runtime evidence.
- Only then propose or implement a fix.