feat: Added static completions via a --completions flag

This commit is contained in:
2025-10-24 10:56:34 -06:00
parent c13142f971
commit 59a3e3012b
5 changed files with 52 additions and 5 deletions
+28 -1
View File
@@ -1,7 +1,34 @@
use crate::client::{list_models, ModelType};
use crate::config::{list_agents, Config};
use clap_complete::CompletionCandidate;
use clap_complete::{generate, CompletionCandidate, Shell};
use clap_complete_nushell::Nushell;
use std::ffi::OsStr;
use std::io;
const LOKI_CLI_NAME: &str = "loki";
#[derive(Clone, Copy, Debug, clap::ValueEnum)]
pub enum ShellCompletion {
Bash,
Elvish,
Fish,
PowerShell,
Zsh,
Nushell,
}
impl ShellCompletion {
pub fn generate_completions(self, cmd: &mut clap::Command) {
match self {
Self::Bash => generate(Shell::Bash, cmd, LOKI_CLI_NAME, &mut io::stdout()),
Self::Elvish => generate(Shell::Elvish, cmd, LOKI_CLI_NAME, &mut io::stdout()),
Self::Fish => generate(Shell::Fish, cmd, LOKI_CLI_NAME, &mut io::stdout()),
Self::PowerShell => generate(Shell::PowerShell, cmd, LOKI_CLI_NAME, &mut io::stdout()),
Self::Zsh => generate(Shell::Zsh, cmd, LOKI_CLI_NAME, &mut io::stdout()),
Self::Nushell => generate(Nushell, cmd, LOKI_CLI_NAME, &mut io::stdout()),
}
}
}
pub(super) fn model_completer(current: &OsStr) -> Vec<CompletionCandidate> {
let cur = current.to_string_lossy();
+4 -1
View File
@@ -2,7 +2,7 @@ mod completer;
use crate::cli::completer::{
agent_completer, macro_completer, model_completer, rag_completer, role_completer,
secrets_completer, session_completer,
secrets_completer, session_completer, ShellCompletion,
};
use anyhow::{Context, Result};
use clap::ValueHint;
@@ -130,6 +130,9 @@ pub struct Cli {
/// List all secrets stored in the Loki vault
#[arg(long, exclusive = true)]
pub list_secrets: bool,
/// Generate static shell completion scripts
#[arg(long, value_enum)]
pub completions: Option<ShellCompletion>,
}
impl Cli {