cap-cli 0.0.1

cap command-line tool — discover, drive, and orchestrate CLI AI agents.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Placeholder `cap` CLI. Real implementation is in progress.
//!
//! See <https://cap-protocol.org>.

fn main() {
    eprintln!(
        "cap {} — placeholder, implementation in progress.",
        env!("CARGO_PKG_VERSION")
    );
    eprintln!();
    eprintln!("  Spec: https://cap-protocol.org");
    eprintln!("  Repo: https://github.com/rsclaw-ai/cap-protocol");
    std::process::exit(0);
}