vtcode-core 0.136.1

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
//! Git worktree management for loop isolation.
//!
//! Provides `WorktreeManager` for creating, listing, and removing git worktrees
//! so that parallel loop runs cannot corrupt each other's working trees.
//! The `WorktreeReconciler` handles the diff → verify → merge cycle after
//! a worktree-isolated subagent completes.

pub mod reconciler;
pub mod verify;
pub mod worktree;

pub use reconciler::{ReconcileResult, WorktreeReconciler};
pub use verify::{DiffVerifier, HeuristicDiffVerifier, VerifyVerdict};
pub use worktree::{WorktreeInfo, WorktreeManager};