vtcode-core 0.104.0

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::PathBuf;
use vtcode_core::tools::registry::ToolRegistry;

#[tokio::test]
async fn test_get_errors_tool_registered_for_back_compat() {
    let root = std::env::current_dir().unwrap_or_else(|_| PathBuf::from("."));
    let registry = ToolRegistry::new(root).await;
    let has = registry.has_tool("get_errors").await;
    assert!(
        has,
        "get_errors tool should remain registered for compatibility"
    );
}