vtcode 0.142.0

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
1
2
3
4
5
6
7
8
use vtcode_agent_plugins::{FileSystemPluginInstaller, PluginInstaller};

pub(super) async fn handle_remove(name: &str) -> anyhow::Result<()> {
    let installer = FileSystemPluginInstaller::new();
    installer.remove(name).map_err(|e| anyhow::anyhow!("{}", e))?;
    println!("Removed plugin {}", name);
    Ok(())
}