pub struct Step {
pub step_id: String,
pub description: String,
pub agent_hint: String,
pub phases: Vec<Phase>,
pub verify_command: String,
pub depends_on: Vec<String>,
pub budget_estimate_usd: Option<f64>,
pub timeout_secs: Option<u64>,
pub skill_ref: Option<String>,
pub determinism: Option<DeterminismMode>,
pub input: Option<Table>,
pub judge: bool,
}Expand description
A single step in the plan — one agent assignment (§4.1).
Fields§
§step_id: StringStable identifier within the plan.
description: StringHuman-readable description of what this step does.
agent_hint: StringPreferred agent manifest name (e.g. “code-review”).
phases: Vec<Phase>SDLC phases for this step, in execution order.
verify_command: StringShell command or verify:// URI for the Verify Gateway (§6).
depends_on: Vec<String>Step ids that must complete before this step starts.
budget_estimate_usd: Option<f64>Per-step budget override.
timeout_secs: Option<u64>Per-step timeout override (seconds).
skill_ref: Option<String>Skill reference: <name>@<version> if this step executes a skill.
determinism: Option<DeterminismMode>Per-step determinism override (inherits plan.determinism if absent).
input: Option<Table>Step-specific input variables (free-form).
judge: boolWhether to run an independent judge on this step’s result.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Step
impl<'de> Deserialize<'de> for Step
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
impl UnwindSafe for Step
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