Agent skill
python-debug
Use when you need to inspect detailed execution flow of a Python program, stepping through functions and inspecting variable contents with pdb. Triggers include requests to debug Python scripts, trace execution, or inspect runtime state using the pdb debugger.
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/python-debug
SKILL.md
Python Debug
- Run the script under pdb with
python -m pdb [script]. - Let the script run until an exception with
-c continue. - Run up to a given line X in the debugged file with
-c 'until X'.
Didn't find tool you were looking for?