debug-that 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +5 -1
  2. package/dist/main.js +997 -221
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  Debugger CLI built for AI agents. Fast, token-efficient, no fluff.
4
4
 
5
+ <p align="center">
6
+ <img src="docs/demo-2x.gif" alt="debug-that demo" />
7
+ </p>
8
+
5
9
  **Why?** Agents waste tokens on print-debugging. A real debugger gives precise state inspection in minimal output — variables, stack, breakpoints — all via short `@ref` handles.
6
10
 
7
11
  Inspired by Vercel's [agent-browser](https://github.com/vercel-labs/agent-browser) CLI — the same `@ref` concept, applied to debugging instead of browsing.
@@ -15,7 +19,7 @@ Inspired by Vercel's [agent-browser](https://github.com/vercel-labs/agent-browse
15
19
  | Bun | JavaScript / TypeScript | Supported | WebKit Inspector (JSC) |
16
20
  | LLDB | C / C++ / Rust / Swift | Supported | DAP (Debug Adapter Protocol) |
17
21
  | Deno | JavaScript / TypeScript | Planned | V8 Inspector (CDP) |
18
- | Python (debugpy) | Python | Planned | DAP |
22
+ | Python (debugpy) | Python | Supported | DAP |
19
23
  | Go (delve) | Go | Planned | DAP |
20
24
  | Java (JDWP) | Java / Kotlin | Planned | DAP |
21
25