Bootstrap Workflow
Trigger & Intent
Section titled “Trigger & Intent”Triggered by: meta-routing when a user request is greenfield or has an unclear scope.
Intent: Prevent scope creep and vague requirements by forcing a formal extraction and ambiguity detection phase before any code is written.
Required Skills
Section titled “Required Skills”req-analysis— requirements analysisreq-scope— scope boundary definitionreq-ambiguity-detection— ambiguity detectionreq-acceptance-criteria— acceptance criteria generation
Input Schema
Section titled “Input Schema”{ rawInput: string; constraints?: string[] }Decision Logic
Section titled “Decision Logic”- Conflicting or ambiguous requirements → loop back to user for clarification
- Only tightly scoped, bounded requirements exit the workflow
Required Pre-Conditions
Section titled “Required Pre-Conditions”Before scope analysis: agent-snapshot, agent-session, agent-memory
stateDiagram-v2
[*] --> RawRequest
RawRequest --> ScopePerception
ScopePerception --> RequirementInterpretation
RequirementInterpretation --> AmbiguityEvaluation
AmbiguityEvaluation --> ConstraintCommitment
ConstraintCommitment --> ScopeDeclaration
ScopeDeclaration --> AcceptanceCriteriaGeneration
AcceptanceCriteriaGeneration --> ScopeReflection
ScopeReflection --> ScopePerception: revise scope boundary
ScopeReflection --> RequirementInterpretation: reinterpret user intent
ScopeReflection --> ConstraintCommitment: reaffirm boundaries
ScopeReflection --> [*]: scope locked and verified
Success Chains
Section titled “Success Chains”design · implement · research · review · plan · debug · refactor · testing · orchestrate · govern · enterprise · physics-analysis