feat(fctool): register new git tools in mod.rs

Register repo_analysis, kb, and repo_util tool modules in the
git_tools register_all function.
This commit is contained in:
ZhenYi 2026-04-29 09:03:13 +08:00
parent a5704c9730
commit b673c31485

View File

@ -8,6 +8,9 @@ pub mod branch;
pub mod commit;
pub mod ctx;
pub mod diff;
pub mod kb;
pub mod repo_analysis;
pub mod repo_util;
pub mod tag;
pub mod tree;
pub mod types;
@ -20,4 +23,7 @@ pub fn register_all(registry: &mut agent::ToolRegistry) {
blob::register_git_tools(registry);
tree::register_git_tools(registry);
tag::register_git_tools(registry);
repo_analysis::register_git_tools(registry);
kb::register_git_tools(registry);
repo_util::register_git_tools(registry);
}