claude_runner 1.0.0

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
//! `claude_runner` binary entry point.
//!
//! Thin wrapper that delegates to [`claude_runner::run_cli()`].
//! The full pipeline implementation lives in the library so it is compiled
//! once and shared by the `claude_runner` and `clr` binary targets.

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