edisonprompt 0.1.0

Lightning-fast AI prompt management CLI with template variables and local-first architecture
Documentation
use crate::{
    error::Result,
    cli::{Shell, Cli},
};
use clap::CommandFactory;
use clap_complete::{generate, shells};
use std::io;

pub struct CompletionsCommand;

impl CompletionsCommand {
    pub fn execute(shell: Shell) -> Result<()> {
        let mut cmd = Cli::command();
        
        match shell {
            Shell::Bash => {
                generate(shells::Bash, &mut cmd, "promptedo", &mut io::stdout());
            }
            Shell::Zsh => {
                generate(shells::Zsh, &mut cmd, "promptedo", &mut io::stdout());
            }
            Shell::Fish => {
                generate(shells::Fish, &mut cmd, "promptedo", &mut io::stdout());
            }
            Shell::PowerShell => {
                generate(shells::PowerShell, &mut cmd, "promptedo", &mut io::stdout());
            }
        }
        
        Ok(())
    }
}