Skip to main content

debugger/
lib.rs

1//! LLM Debugger CLI - A debugger interface for LLM coding agents
2//!
3//! This library provides debugging capabilities through the Debug Adapter
4//! Protocol (DAP), optimized for LLM agents.
5
6pub mod cli;
7pub mod commands;
8pub mod common;
9pub mod daemon;
10pub mod dap;
11pub mod ipc;
12pub mod setup;
13pub mod testing;
14
15// Re-export commonly used types for tests
16pub use common::{Error, Result};
17pub use ipc::protocol::{BreakpointLocation, Command};