vx_cli/commands/
search.rs1use crate::cli::OutputFormat;
4use crate::ui::UI;
5use anyhow::Result;
6use vx_plugin::PluginRegistry;
7
8pub async fn handle(
9 _registry: &PluginRegistry,
10 query: Option<String>,
11 category: Option<String>,
12 installed_only: bool,
13 available_only: bool,
14 format: OutputFormat,
15 verbose: bool,
16) -> Result<()> {
17 UI::warning("Search command not yet fully implemented in new architecture");
18 UI::hint(&format!(
19 "Would search with query: {:?}, category: {:?}, installed_only: {}, available_only: {}, format: {:?}, verbose: {}",
20 query, category, installed_only, available_only, format, verbose
21 ));
22 Ok(())
23}