pub struct GateCommands<'a> {
pub test_command: Option<&'a str>,
pub lint_command: Option<&'a str>,
pub build_command: Option<&'a str>,
pub doc_build_command: Option<&'a str>,
pub spec_validate_command: Option<&'a str>,
pub fmt_check_command: Option<&'a str>,
pub security_audit_command: Option<&'a str>,
pub doc_tool_command: Option<&'a str>,
}Expand description
Borrowed view of the seven gate-command templates substituted by
render into the supervisor skill.
Each field maps to a {{...}} placeholder in the skill template (see
render for the full list). None renders as the literal
(not configured) so the rendered prose stays readable and the
supervisor agent can machine-check the value to decide whether to skip
the tooling invocation for that gate.
{{CHANGE_ID}} is NOT a field here: it is a per-invocation placeholder
substituted by the supervisor agent at verification time (using the
change being audited), not by render at session boot.
Use SupervisorConfig::gate_commands
to build one from a config.
Fields§
§test_command: Option<&'a str>Renders into {{TEST_COMMAND}}. Gate 1 test runner.
lint_command: Option<&'a str>Renders into {{LINT_COMMAND}}. Gate 1 lint sub-step.
build_command: Option<&'a str>Renders into {{BUILD_COMMAND}}. Gate 1 build sub-step.
doc_build_command: Option<&'a str>Renders into {{DOC_BUILD_COMMAND}}. Gate 4 doc builder.
spec_validate_command: Option<&'a str>Renders into {{SPEC_VALIDATE_COMMAND}}. Gate 3 spec validator.
MAY contain a {{CHANGE_ID}} substring that the supervisor agent
expands at verification time — render does NOT substitute it.
fmt_check_command: Option<&'a str>Renders into {{FMT_CHECK_COMMAND}}. Gate 1 format check.
security_audit_command: Option<&'a str>Renders into {{SECURITY_AUDIT_COMMAND}}. Gate 5 security tooling.
doc_tool_command: Option<&'a str>Renders into {{DOC_TOOL_COMMAND}}. Gate 4 API-doc generator,
distinct from Self::doc_build_command which builds the human
doc site. None renders as an empty string so the surrounding
prose can read naturally without a stray (not configured) token
— the supervisor template is authored to handle the empty case.
Trait Implementations§
Source§impl<'a> Clone for GateCommands<'a>
impl<'a> Clone for GateCommands<'a>
Source§fn clone(&self) -> GateCommands<'a>
fn clone(&self) -> GateCommands<'a>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl<'a> Copy for GateCommands<'a>
Source§impl<'a> Debug for GateCommands<'a>
impl<'a> Debug for GateCommands<'a>
Source§impl<'a> Default for GateCommands<'a>
impl<'a> Default for GateCommands<'a>
Source§fn default() -> GateCommands<'a>
fn default() -> GateCommands<'a>
Auto Trait Implementations§
impl<'a> Freeze for GateCommands<'a>
impl<'a> RefUnwindSafe for GateCommands<'a>
impl<'a> Send for GateCommands<'a>
impl<'a> Sync for GateCommands<'a>
impl<'a> Unpin for GateCommands<'a>
impl<'a> UnsafeUnpin for GateCommands<'a>
impl<'a> UnwindSafe for GateCommands<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more