Codimir AI FabrickPlaybooks
QA / Proctor
Quality gates for schema, safety, acceptance tests, and confidence.
QA / Proctor Playbook
The Proctor is the quality gatekeeper. It checks outputs before they are marked "Ready".
Checks
- Schema validation (Zod)
- Safety rules (PII, disallowed content)
- Acceptance tests (quick build/run)
- Confidence thresholds
- Artifacts existence
flowchart TD
Out[Agent Output] --> P[Proctor QA]
P -->|Pass| R[Ready]
P -->|Fail| Re[Rework/Retry]
Re --> Out