python-debugging
Installation
SKILL.md
Python Debugging
Debug Python scripts with breakpoints, stepping, variable inspection, and stack navigation.
Quick Reference
# Start debugging
python scripts/debugger.py start script.py [args...]
# Breakpoints
python scripts/debugger.py break -f script.py -l 45 # Line breakpoint
python scripts/debugger.py break -f script.py -l 45 -c "x>10" # Conditional
python scripts/debugger.py break -e ValueError # Exception breakpoint
python scripts/debugger.py breakpoints # List all