1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
use clap::{Parser, Subcommand};
use tracing::Level;
use tracing_subscriber::{EnvFilter, Layer, fmt, layer::SubscriberExt, util::SubscriberInitExt};
pub mod init;
pub mod inline;
#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
struct Cli {
/// Enable verbose logging
#[arg(short, long, global = true)]
verbose: bool,
/// Custom API endpoint
#[arg(long, global = true, env = "ATUIN_AI_API_ENDPOINT")]
api_endpoint: Option<String>,
#[command(subcommand)]
command: Commands,
}
#[derive(Subcommand, Debug)]
enum Commands {
/// Initialize shell integration
Init,
/// Complete current command line
Complete {
/// Current command line to complete
#[arg(value_name = "COMMAND")]
command: Option<String>,
},
/// Inline completion mode with small TUI overlay
Inline {
/// Current command line to complete
#[arg(value_name = "COMMAND")]
command: Option<String>,
/// Start in natural language mode
#[arg(long)]
natural_language: bool,
},
/// Interactive mode with TUI
Interactive,
}
pub async fn run() -> eyre::Result<()> {
let cli = Cli::parse();
init_tracing(cli.verbose);
match cli.command {
Commands::Init => init::run().await,
Commands::Inline {
command,
natural_language,
} => inline::run(command, natural_language, cli.api_endpoint).await,
Commands::Complete { command } => inline::run(command, false, cli.api_endpoint).await,
Commands::Interactive => Err(eyre::eyre!("interactive mode not implemented yet")),
}
}
fn init_tracing(verbose: bool) {
let level = if verbose { Level::DEBUG } else { Level::INFO };
// Create env filter
let env_filter = EnvFilter::from_default_env().add_directive(
format!("atuin_ai={}", level.as_str().to_lowercase())
.parse()
.unwrap(),
);
// Create console layer (only for verbose mode)
let console_layer = if verbose {
Some(
fmt::layer()
.with_writer(std::io::stderr)
.with_ansi(true)
.with_target(false)
.with_filter(env_filter),
)
} else {
None
};
// Initialize subscriber
let subscriber = tracing_subscriber::registry();
if let Some(console) = console_layer {
subscriber.with(console).init();
} else {
subscriber.init();
}
}
|