mise 2026.2.24

The front-end to your dev env
use crate::exit;

use eyre::Result;

use crate::config::{Config, Settings};
use crate::shell::ShellType;
use crate::toolset::ToolsetBuilder;

/// [internal] called by shell when a command is not found
#[derive(Debug, clap::Args)]
#[clap(hide = true)]
pub struct HookNotFound {
    /// Attempted bin to run
    #[clap()]
    bin: String,

    /// Shell type to generate script for
    #[clap(long, short)]
    shell: Option<ShellType>,
}

impl HookNotFound {
    pub async fn run(self) -> Result<()> {
        let mut config = Config::get().await?;
        let settings = Settings::try_get()?;
        if settings.not_found_auto_install {
            let mut ts = ToolsetBuilder::new().build(&config).await?;
            if ts
                .install_missing_bin(&mut config, &self.bin)
                .await?
                .is_some()
            {
                return Ok(());
            }
        }
        exit(127);
    }
}