pub struct TaskDecomposeArgs {Show 16 fields
pub source: Vec<String>,
pub attach_to: Option<String>,
pub max_depth: u8,
pub max_children: u8,
pub max_nodes: u16,
pub status: TaskStatusArg,
pub child_policy: TaskDecomposeChildPolicyArg,
pub with_dependencies: bool,
pub write: bool,
pub preview: bool,
pub format: TaskDecomposeFormatArg,
pub runner: Option<String>,
pub model: Option<String>,
pub effort: Option<String>,
pub repo_prompt: Option<RepoPromptMode>,
pub runner_cli: RunnerCliArgs,
}Fields§
§source: Vec<String>Task ID or freeform request text to decompose. If omitted, reads from stdin.
attach_to: Option<String>Attach a new decomposition subtree under an existing parent task.
max_depth: u8Maximum hierarchy depth to generate, including the root node.
max_children: u8Maximum number of children allowed for any single node.
max_nodes: u16Maximum total nodes allowed in the generated tree.
status: TaskStatusArgStatus to assign to newly created tasks.
child_policy: TaskDecomposeChildPolicyArgChild-tree handling when the effective parent already has children.
with_dependencies: boolInfer sibling dependencies from the planner output.
write: boolWrite the proposed decomposition into the queue.
preview: boolExplicitly request preview mode.
format: TaskDecomposeFormatArgOutput format.
runner: Option<String>Runner to use. CLI flag overrides config defaults (project > global > built-in).
model: Option<String>Model to use. CLI flag overrides config defaults (project > global > built-in).
effort: Option<String>Codex reasoning effort. CLI flag overrides config defaults (project > global > built-in). Ignored for opencode and gemini.
repo_prompt: Option<RepoPromptMode>RepoPrompt mode (tools, plan, off). Alias: -rp.
runner_cli: RunnerCliArgsTrait Implementations§
Source§impl Args for TaskDecomposeArgs
impl Args for TaskDecomposeArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Clone for TaskDecomposeArgs
impl Clone for TaskDecomposeArgs
Source§fn clone(&self) -> TaskDecomposeArgs
fn clone(&self) -> TaskDecomposeArgs
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for TaskDecomposeArgs
impl Debug for TaskDecomposeArgs
Source§impl FromArgMatches for TaskDecomposeArgs
impl FromArgMatches for TaskDecomposeArgs
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>
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.