Отладка кода с брейкпоинтами и инспекцией

★ 6.8 · vibe-coding

debug-that is a Claude Code skill that integrates the dbg CLI debugger, supporting Node.js (V8/CDP), Bun (WebKit/JSC), Python (debugpy/DAP), Java (JDWP/DAP), and native C/C++/Rust/Swift code via LLDB. It can launch a process paused at the first line with `dbg launch --brk`, set regular and conditional breakpoints, step through execution, inspect locals and the call stack, and evaluate expressions in a paused context. For JS/TS it also supports live variable changes and hot-patching via `dbg hotpatch` without restarting the process. Attaching to an already-running process — a Node inspector, a debugpy listener, or a test runner — is handled through `dbg attach`. The skill is the right choice when a runtime bug, segfault, core dump, or unexpected variable value needs to be traced without sprinkling print statements through the code.