mod run;
use std::path::PathBuf;
#[derive(clap::Args)]
pub struct PromptArgs {
#[arg(short = 'C', long = "cwd", default_value = ".")]
pub cwd: PathBuf,
#[arg(long = "mcp-config")]
pub mcp_configs: Vec<PathBuf>,
#[arg(long = "system-prompt")]
pub system_prompt: Option<String>,
#[arg(short = 'a', long = "agent")]
pub agent: Option<String>,
}
pub use run::run_prompt;