agents-docs-manager 0.1.1

Manage AGENTS.md and Docs markdown indexes for agent-oriented repositories.
1
2
3
4
5
6
7
8
9
10
11
mod cli;
mod document;
mod namespace;
mod utils;

fn main() {
    match cli::run() {
        Ok(output) => utils::output::write_success_and_exit(&output),
        Err(error) => utils::output::write_error_and_exit(&error),
    }
}