debugger-cli 0.1.3

LLM-friendly debugger CLI using the Debug Adapter Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! LLM Debugger CLI - A debugger interface for LLM coding agents
//!
//! This library provides debugging capabilities through the Debug Adapter
//! Protocol (DAP), optimized for LLM agents.

pub mod cli;
pub mod commands;
pub mod common;
pub mod daemon;
pub mod dap;
pub mod ipc;
pub mod setup;
pub mod testing;

// Re-export commonly used types for tests
pub use common::{Error, Result};
pub use ipc::protocol::{BreakpointLocation, Command};