debugging-strategies

Installation
SKILL.md

Debugging Strategies

Systematic approaches to finding and fixing bugs.

Stack Trace Analysis

Read the trace bottom-up

The bottom of a stack trace is the most recent call — start there.

# Node.js — get full stack traces
NODE_OPTIONS="--stack-trace-limit=50" node app.js

# Python — verbose traceback
python3 -u -X tracemalloc app.py
Installs
3
First Seen
Mar 1, 2026
debugging-strategies — thinkfleetai/thinkfleet-engine