vtcode-core 0.19.1

Core library for VTCode - a Rust-based terminal coding agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Command-line interface module
//!
//! This module handles all CLI argument parsing, command definitions, and rate limiting.

pub mod args;
pub mod commands;
pub mod man_pages;
pub mod models_commands;
pub mod rate_limiter;
pub mod tool_policy_commands;

pub use args::*;
pub use commands::*;
pub use man_pages::*;
pub use models_commands::*;
pub use rate_limiter::*;
pub use tool_policy_commands::*;