Meta-Routing Workflow
Trigger & Intent
Section titled “Trigger & Intent”Triggered by: Absolute entry point of any user interaction.
Intent: Triage ambiguous, generic queries into the 20 structured master instructions without human input.
Required Skills
Section titled “Required Skills”req-ambiguity-detection— detects under-specificationreq-scope— clarifies request boundary
Input Schema
Section titled “Input Schema”{ request: string; context?: string; taskType?: string; currentPhase?: string }Decision Logic
Section titled “Decision Logic”- Missing architecture context → route to
task-bootstrap - Explicit stack trace → route directly to
issue-debug - Structural rewrite requested → route to
system-design - Compound multi-domain task → route to
meta-routingrecursively then fan-out
stateDiagram-v2
[*] --> UnstructuredRequest
UnstructuredRequest --> SignalExploration
UnstructuredRequest --> ConfidentDispatch: prior routing pattern available
state SignalExploration {
[*] --> BootstrapProbe
[*] --> DebugProbe
[*] --> DesignProbe
BootstrapProbe --> EvidencePool
DebugProbe --> EvidencePool
DesignProbe --> EvidencePool
}
EvidencePool --> ConfidenceAssessment
ConfidenceAssessment --> ConfidentDispatch: signal threshold met
ConfidenceAssessment --> SignalExploration: insufficient signal
ConfidentDispatch --> RouteExecution
RouteExecution --> [*]
Success Chains
Section titled “Success Chains”Terminal node — does not chain to other workflows on completion.