Variable StrictWorkflowStepSchemaConst
StrictWorkflowStepSchema: ZodObject<
{
id: ZodString;
agent: ZodEnum<
{
custom: "custom";
orchestrator: "orchestrator";
code_expert: "code_expert";
architecture_expert: "architecture_expert";
security_expert: "security_expert";
documentation_expert: "documentation_expert";
testing_expert: "testing_expert";
infrastructure_expert: "infrastructure_expert";
},
>;
action: ZodString;
inputs: ZodDefault<ZodRecord<ZodString, ZodUnknown>>;
dependsOn: ZodOptional<ZodArray<ZodString>>;
parallel: ZodOptional<ZodBoolean>;
retries: ZodOptional<ZodNumber>;
timeout: ZodOptional<ZodNumber>;
condition: ZodOptional<ZodString>;
contextBudget: ZodOptional<
ZodObject<
{
system: ZodOptional<ZodNumber>;
task: ZodOptional<ZodNumber>;
active: ZodOptional<ZodNumber>;
reserved: ZodOptional<ZodNumber>;
},
$strip,
>,
>;
},
$strict,
> = ...
Schema for a single workflow step. Steps are the atomic units of work in a workflow.