Agent skill
systematic-debugging
Use for bugs, test failures, or unexpected behavior needing root cause
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/systematic-debugging-light-brands-planetary-party-html
SKILL.md
Core principle: If you can't explain WHY it's broken, you're not ready to fix it. Every fix must address a specific, understood root cause.
Work to reproduce the issue reliably. If you can't trigger it consistently, gather more data before proposing solutions. Document the exact steps that trigger the failure.
Check what changed recently. Review commits, new dependencies, configuration changes, environmental differences. Most bugs correlate with recent changes.
When multiple components interact, add diagnostic output at each boundary to identify which component fails. This narrows the investigation to the specific failing layer.
When implementing a pattern, read reference implementations thoroughly. Understand their dependencies, settings, and environmental requirements.
When a hypothesis proves wrong, form a new one based on what you learned. Don't layer fixes on top of failed attempts.
Apply a single, focused fix that addresses the root cause. Resist bundling other improvements or refactoring.
Verify the fix resolves the issue without breaking other functionality.
These patterns suggest reconsidering the fundamental approach rather than continuing to patch symptoms.
These thoughts signal you're guessing rather than debugging systematically.
Systematic debugging finds and fixes the real problem. Random attempts waste time and create new issues.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?