pub enum RunCommand {
Agent {
prompt: String,
model: Option<String>,
timeout: u64,
format: Option<String>,
runner: String,
skip_permissions: bool,
},
DevLoop {
project_root: Option<PathBuf>,
agent: Option<String>,
model: Option<String>,
},
WorkerLoop {
project_root: Option<PathBuf>,
agent: Option<String>,
model: Option<String>,
},
ReviewerLoop {
project_root: Option<PathBuf>,
agent: Option<String>,
model: Option<String>,
},
Responder {
project_root: Option<PathBuf>,
agent: Option<String>,
model: Option<String>,
},
Triage {
project_root: Option<PathBuf>,
},
IterationStart {
project_root: Option<PathBuf>,
agent: Option<String>,
},
}Variants§
Agent
Run an agent with stream output parsing (pi default, claude opt-in)
Fields
DevLoop
Run the dev-loop (lead agent)
Fields
WorkerLoop
Run the worker-loop (agent-loop)
Fields
ReviewerLoop
Run the reviewer-loop
Fields
Responder
Run the responder (message router)
Fields
Triage
Run triage (bone scoring and recommendations)
IterationStart
Run iteration-start (combined status snapshot)
Implementations§
Trait Implementations§
Source§impl Debug for RunCommand
impl Debug for RunCommand
Source§impl FromArgMatches for RunCommand
impl FromArgMatches for RunCommand
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Subcommand for RunCommand
impl Subcommand for RunCommand
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for RunCommand
impl RefUnwindSafe for RunCommand
impl Send for RunCommand
impl Sync for RunCommand
impl Unpin for RunCommand
impl UnsafeUnpin for RunCommand
impl UnwindSafe for RunCommand
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more