vtcode-core 0.97.2

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod command_utils;
mod formatting;
mod manager;
mod manager_utils;
mod preview;
mod raw_vt_buffer;
mod screen_backend;
mod scrollback;
mod session;
mod types;

pub use command_utils::{
    is_cargo_command, is_cargo_command_string, is_development_toolchain_command,
};
pub use manager::PtyManager;
pub use preview::PtyPreviewRenderer;
pub use types::{PtyCommandRequest, PtyCommandResult, PtyOutputCallback};