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
//! E2E Test Runner
//!
//! Provides a robust test executor that reads YAML test scenarios
//! and uses the DaemonClient to communicate with the debug daemon.
//! This ensures assertions are made against structured data rather
//! than fragile string matching.

mod config;
mod runner;

pub use config::*;
pub use runner::run_scenario;