Releases: ApartsinProjects/pytrace-autopsy
Releases · ApartsinProjects/pytrace-autopsy
v0.1 - Initial Release
PyTrace Autopsy v0.1
Runtime function tracing skill for Claude Code that debugs failing Python tests.
Features
- sys.settrace via
sitecustomize.pyinjected through PYTHONPATH - Zero project file modifications — fully non-invasive
- JSONL trace output (function calls, arguments, return values, exceptions)
- Configurable filtering by paths, modules, or function names
- Thread-safe, crash-safe, auto-cleanup
Install
git clone https://github.com/ApartsinProjects/pytrace-autopsy
mkdir -p .claude/skills
cp -r pytrace-autopsy/skill .claude/skills/pytrace-autopsyExamples
5 walkthroughs demonstrating real debugging scenarios:
- Off-by-one in pagination
- None propagation from missing null check
- Swallowed exception from bare
except - Shared state mutation from class-level mutable default
- Wrong arithmetic operator