vtcode-battery-pack 0.135.14

Curated battery pack of VT Code crates for building Rust coding agents
Documentation
//! Session state and execution telemetry example.
//!
//! Demonstrates the `state` + `execution` preset:
//! durable session state with ThreadEvent logging plus execution telemetry.
//!
//! Run with:
//!     cargo run --example session-state -p vtcode-battery-pack \
//!         --features state,execution

#[cfg(feature = "state")]
fn demonstrate_state() {
    println!("state: session store and loop persistence available");
}

#[cfg(feature = "execution")]
fn demonstrate_execution() {
    println!("execution: bash runner and exec-events telemetry available");
}

fn main() {
    #[cfg(feature = "state")]
    demonstrate_state();

    #[cfg(feature = "execution")]
    demonstrate_execution();

    println!("VT Code battery pack: session state preset ready.");
}