# Skill Systematic Debugging

> Investiga bugs por evidência, reproduz o problema, rastreia a causa raiz e verifica a correção sem mascarar sintomas.

- Skill: `iapro-community/skill-systematic-debugging` (Agent Skill)
- Install (CLI): `npx skillmds@latest add iapro-community/skill-systematic-debugging`
- Raw SKILL.md: https://api.skillmd.com/api/skills/iapro-community/skill-systematic-debugging/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: IAPro-Community (https://skillmd.com/u/iapro-community)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/iapro-community/skill-systematic-debugging

---


# Systematic Debugging

Follow this loop:

1. Reproduce the failure with the smallest reliable case.
2. Capture exact inputs, environment, expected result, actual result, and first failing boundary.
3. Form competing hypotheses and rank them by evidence.
4. Instrument or inspect the narrowest boundary that distinguishes them.
5. Trace the root cause backward through data, control flow, and configuration.
6. Implement the smallest fix that addresses the cause.
7. Add a regression test.
8. Verify the original failure, adjacent behavior, and relevant quality gates.

Do not broaden the fix or declare success from a single passing retry.

