axiom-lldb

Installation
SKILL.md

LLDB Debugging

Interactive debugging with LLDB. The debugger freezes time so you can interrogate your running app — inspect variables, evaluate expressions, navigate threads, and understand exactly why something went wrong.

Core insight: "LLDB is useless" really means "I don't know which command to use for Swift types." This is a knowledge-gap problem, not a tool problem.

Red Flags — Check This Skill When

Symptom This Skill Applies
Need to inspect a variable at runtime Yes — breakpoint + inspect
Crash you can reproduce locally Yes — breakpoint before crash site
Wrong value at runtime but code looks correct Yes — step through and inspect
Need to understand thread state during hang Yes — pause + thread backtrace
po doesn't work / shows garbage Yes — Playbook 3 has alternatives
Crash log analyzed, need to reproduce Yes — set breakpoints from crash context
Need to test a fix without rebuilding Yes — expression evaluation
Want to break on all exceptions Yes — exception breakpoints
App feels slow but responsive No — use axiom-performance-profiling
Related skills
Installs
6
GitHub Stars
3
First Seen
Mar 5, 2026