rs_hack/commands/mod.rs
1//! Per-command lib API: each subcommand of the rs-hack CLI is exposed here as
2//! `pub fn run(args: …Args) -> Result<…Result>` so embedders (MCP server, yah,
3//! tests) can drive the same logic without shelling out. The CLI in `main.rs`
4//! is a thin clap → struct → `run()` translator that adds rendering on top.
5
6pub mod doc_coverage;
7pub mod find;
8pub mod match_audit;
9pub mod neighbors;
10pub mod summary;