crabmate 0.5.0

Rust AI agent: OpenAI-compatible chat/completions, function calling, HTTP serve, ops CLI
Documentation
//! 工具 JSON 参数 schema(按领域拆分子模块,再统一导出)。

mod archive;
mod basic_network;
mod cargo_rust;
mod ci_workflow;
mod code_nav;
mod container;
mod diagnostics;
mod docs_health_sweep;
mod exec_package;
mod file_core;
mod file_extra;
mod format_lint;
mod frontend_python;
mod git_read;
mod git_write;
mod github_cli;
mod go;
mod golangci;
mod jvm;
mod markdown;
mod metrics;
mod nodejs;
mod process;
mod quality_ast;
mod schedule;
mod source_analysis;
mod structured;
mod text_format_lint;
mod todo_dev;

pub(super) use archive::*;
pub(super) use basic_network::*;
pub(super) use cargo_rust::*;
pub(super) use ci_workflow::*;
pub(super) use code_nav::*;
pub(super) use container::*;
pub(super) use diagnostics::*;
pub(super) use docs_health_sweep::*;
pub(super) use exec_package::*;
pub(super) use file_core::*;
pub(super) use file_extra::*;
pub(super) use format_lint::*;
pub(super) use frontend_python::*;
pub(super) use git_read::*;
pub(super) use git_write::*;
pub(super) use github_cli::*;
pub(super) use go::*;
pub(super) use golangci::*;
pub(super) use jvm::*;
pub(super) use markdown::*;
pub(super) use metrics::*;
pub(super) use nodejs::*;
pub(super) use process::*;
pub(super) use quality_ast::*;
pub(super) use schedule::*;
pub(super) use source_analysis::*;
pub(super) use structured::*;
pub(super) use text_format_lint::*;
pub(super) use todo_dev::*;