pub struct CommandConfig {
pub enabled: bool,
pub max_handoffs: u32,
}Expand description
Configuration for Command-style dynamic task handoff
([orchestration.command] TOML section, spec 080-cross-thread-store-dynamic-handoff,
GitHub #6363).
Opt-in and default-OFF: when enabled = false (the default), a node’s trailing
```zeph-command output block is left as ordinary output text and
TaskOutcome::Handoff is never produced — zero behavior change (FR-B-001).
Fields§
§enabled: boolEnable node-agent-driven dynamic task handoff via a trailing ```zeph-command
output block. Default: false.
max_handoffs: u32Per-graph livelock budget: maximum number of Command.goto handoffs allowed across
a single graph run (dag::try_handoff’s budget check). Validated > 0 at config
load time (FR-B-013) — 0 would make every handoff attempt fail immediately, which
is indistinguishable from enabled = false but without the honest signal. Default:
16.
Trait Implementations§
Source§impl Clone for CommandConfig
impl Clone for CommandConfig
Source§fn clone(&self) -> CommandConfig
fn clone(&self) -> CommandConfig
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more