Intake To Retrieval Sequence¶
This sequence shows one item moving from intake through promotion, indexing, retrieval, and evaluation, including the review gate that can send it back.
sequenceDiagram
actor Operator
participant Router
participant Store as Source store
participant Promo as Promotion service
participant Gate as Validation check
participant Registry
participant Retrieval
participant Eval as Evaluation service
participant Decision as Decision store
Operator->>Router: submit new item
Router->>Router: classify zone and posture
Router->>Store: place in owning store
Operator->>Promo: request promotion
Promo->>Promo: attach source refs and sensitivity
Promo->>Gate: submit for validation
alt validation fails
Gate-->>Promo: reject with reasons
Promo-->>Operator: needs source refs or metadata
else validation passes
Gate->>Registry: write manifest entry and promotion log
Registry->>Retrieval: mark eligible and index
Retrieval-->>Operator: searchable with authority class
Registry->>Decision: compile into package with relationships
Decision-->>Operator: decision artifact for validation
end
Operator->>Eval: run evaluation
Eval->>Retrieval: score against cases and rubric
Eval-->>Operator: stage results and proposals
Eval-->>Router: review-gated guidance improvement
Reading The Sequence¶
The important branch is the validation gate. An item that arrives without source references or required metadata never reaches the index. It returns to the promotion service with reasons. Only a passing item becomes searchable and gets compiled into the decision store. The evaluation loop closes back onto the routing and guidance surfaces, so what the system learns from failures improves how future work is classified.