What problem does it solve?
This Skill provides a stateless CLI debugger for Go applications using Delve. It enables AI agents to control debugging workflows by issuing single commands that return structured JSON and exit, enabling reproducible tool use in automated contexts.
Core Features & Use Cases
- Deterministic debugging: Execute single commands that produce JSON output and terminate, ideal for AI-agent workflows.
- Breakpoint and state inspection: Set breakpoints, inspect locals/stack, and navigate goroutines in remote or local sessions.
- Automation-friendly workflows: Integrates with automation pipelines to orchestrate debugging steps without interactive sessions.
Quick Start
Start a Delve session in headless mode or attach to a running server, then issue commands such as:
- godebug start ./cmd/myapp
- godebug --addr 127.0.0.1:2345 break main.go:42
- godebug --addr 127.0.0.1:2345 locals
- godebug --addr 127.0.0.1:2345 quit