vtcode-config 0.98.7

Config loader components shared across VT Code and downstream adopters
Documentation
/// ANSI escape sequence parsing constants
pub mod ansi;
/// Application metadata constants shared across crates
pub mod app;
/// Bash tool security validation constants
pub mod bash;
/// Chunking constants for large file handling
pub mod chunking;
/// Command execution defaults shared across the agent runtime
pub mod commands;
/// Context window management defaults
pub mod context;
/// Default configuration values
pub mod defaults;
/// Diff preview controls for file operations
pub mod diff;
/// Environment variable names shared across the application.
pub mod env;
/// Environment variable names for overriding provider base URLs
pub mod env_vars;
/// Execution boundary constants (inspired by OpenAI Codex agent loop patterns)
pub mod execution;
/// HTTP header constants for provider integrations
pub mod headers;
/// LLM generation parameters
pub mod llm_generation;
/// MCP constants
pub mod mcp;
/// Memory monitoring thresholds and constants
pub mod memory;
/// Message role constants to avoid hardcoding strings
pub mod message_roles;
/// Model validation and helper functions
pub mod model_helpers;
/// Model ID constants to sync with docs/models.json
pub mod models;
/// Optimization defaults
pub mod optimization;
/// Output limits to prevent unbounded memory growth.
pub mod output_limits;
/// Prompt budget defaults shared across instruction and project-doc loading.
pub mod prompt_budget;
/// Prompt caching defaults shared across features and providers
pub mod prompt_cache;
/// Prompt path constants to avoid hardcoding throughout the codebase
pub mod prompts;
/// Reasoning effort configuration constants
pub mod reasoning;
/// Tool name constants to avoid hardcoding strings throughout the codebase
pub mod tools;
/// UI constants
pub mod ui;
/// URL constants for API endpoints
pub mod urls;