claude_runner 1.4.1

CLI for executing Claude Code via builder pattern; YAML schema constants for command registration
Documentation
1
2
3
4
5
6
7
8
9
10
//! `c` binary entry point.
//!
//! Ultra-short alias — identical to the `clr` and `claude_runner` binaries.
//! Separate file gives Cargo a unique compilation unit per `[[bin]]` target,
//! eliminating the "same file in multiple targets" warning.

fn main()
{
  claude_runner::run_cli();
}