vv-agent 0.4.7

VectorVein agent runtime, SDK, CLI, tools, and workspace backends
Documentation
mod args;
mod edit;
mod file_types;
mod grep;
mod paths;
mod process;
mod result;

pub(crate) use args::{coerce_bool, coerce_truthy_arg, parse_integer_arg, stringify_tool_arg};
pub(crate) use edit::replace_n;
pub(crate) use file_types::{
    is_supported_file_type, matches_file_type, supported_file_types_message,
};
pub(crate) use grep::{grep_text, GrepTextOptions};
pub(crate) use paths::{
    collect_ignored_roots, is_hidden_path, is_ignored_root, workspace_relative_path_or_absolute,
};
pub(crate) use process::command_output_with_executable_busy_retry;
pub(crate) use result::{
    path_escapes_workspace_error, tool_error, tool_error_with_code, tool_result,
};