vtcode 0.99.1

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
mod git;
mod mcp_elicitation;
mod mcp_events;
mod model_picker;
mod prompt;
mod skills_commands;
mod skills_commands_parser;
mod slash_commands;
mod telemetry;
mod text_tools;
mod tool_output;
mod ui;
pub(crate) mod unified;
mod welcome;
#[cfg(test)]
mod welcome_tests;

pub(crate) use crate::agent::agents::ResumeSession;
pub(crate) use skills_commands::{
    SkillCommandAction, SkillCommandOutcome, handle_skill_command, parse_skill_command,
};