assistant 1.0.0

Layer 3 super-app aggregating all claude_* CLI commands.
1
2
3
4
5
6
7
8
9
10
//! `assistant` binary entry point.
//!
//! Thin wrapper that delegates to [`assistant::run_cli()`].
//! The full pipeline implementation lives in the library so it is compiled
//! once and shared by the `assistant` and `clt` binary targets.

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