usesuper::ui::{prompt_api_key, save_encrypted_key};usecrate::common::Result;/// Key-only wizard: prompt api_key, save to existing config.
pub(super)fnwizard_key_only()->Result<()>{eprintln!("❌ No API key found.");eprintln!();let api_key =prompt_api_key()?;save_encrypted_key(&api_key)?;Ok(())}