elph 0.0.8

Minimalist AI agent companion for coding
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use clap::Args;

use crate::runtime::{EXIT_SUCCESS, ExitCode};

#[derive(Args, Default)]
pub struct CompletionsArgs {
    /// Shell type for completion script
    #[arg(short, long, value_name = "SHELL", default_value = "bash")]
    pub shell: String,
}

pub fn handle(args: &CompletionsArgs) -> ExitCode {
    eprintln!("Completions — not yet implemented (shell: {})", args.shell);
    EXIT_SUCCESS
}