harn-cli 0.8.1

CLI for the Harn programming language — run, test, REPL, format, and lint
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::Args;

#[derive(Debug, Args)]
pub(crate) struct TryArgs {
    /// Prompt to send to the agent loop.
    pub prompt: String,
    /// Maximum agent iterations (default 5).
    #[arg(long, default_value_t = 5)]
    pub max_iterations: u32,
}