assistant 1.0.0

Layer 3 super-app aggregating all claude_* CLI commands.
1
2
3
4
5
6
7
8
9
10
//! `clt` binary entry point.
//!
//! Short alias — identical to the `assistant` binary.
//! This separate file gives Cargo a unique compilation unit per `[[bin]]`
//! target, eliminating the "same file in multiple targets" warning.

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