vtcode 0.141.10

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Session-loop orchestration and focused lifecycle helpers.

mod archive;
mod handoff;
mod harness;
mod metrics;
mod orchestration;
mod plan_seed;
mod support;

#[cfg(test)]
mod tests;

pub(super) use orchestration::run_single_agent_loop_unified_impl;