install
source · Clone the upstream repo
git clone https://github.com/athola/skrills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/athola/skrills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/assets/demo-skills/debug-helper" ~/.claude/skills/athola-skrills-debug-helper && rm -rf "$T"
manifest:
assets/demo-skills/debug-helper/SKILL.mdsource content
Debug Helper
A systematic approach to debugging software issues.
Investigation Steps
- Reproduce the issue consistently
- Isolate the problem area
- Form a hypothesis
- Test the hypothesis
- Apply the fix
- Verify the solution
Common Debugging Techniques
- Add logging at critical points
- Use breakpoints and step-through debugging
- Check input/output at boundaries
- Review recent changes in version control
- Compare working vs broken states
Error Analysis
- Read error messages carefully
- Check stack traces for root cause
- Verify assumptions about data types and values
- Look for off-by-one errors and null references