Interface GuardrailThresholds

Configurable thresholds for guardrailed autonomy mode.

interface GuardrailThresholds {
    maxTotalCost: number;
    maxAgentCount: number;
    maxToolForges: number;
    maxExpansions: number;
    maxDepth: number;
    costPerExpansionCap: number;
}

Properties

maxTotalCost: number

Maximum total spend in USD before pausing.

maxAgentCount: number

Maximum concurrent agent count.

maxToolForges: number

Maximum emergent tool forge operations.

maxExpansions: number

Maximum graph expansion operations.

maxDepth: number

Maximum sub-mission nesting depth.

costPerExpansionCap: number

Maximum cost per single expansion operation.