gate-trace
Gate Trace
Section titled “Gate Trace”Deterministic quality gate that combines traceability coverage and blind-spot data into a single PASS/FAIL/CONCERNS/WAIVED decision before release.
Decision Rules
Section titled “Decision Rules”| Rule | Condition | Verdict |
|---|---|---|
| R1 | Any undone story with 0 code tags | FAIL |
| R2 | Any story done but no verify evidence | CONCERNS |
| R3 | P0 story (top WSJF quartile) with 0% coverage | FAIL |
| R4 | Overall coverage < 60% | CONCERNS |
| R6 | P0 story + eNN-TEST_PLAN_LATEST.md exists + zero SC-eNNsYY-P0-* in test files | CONCERNS |
| R5 | Overall ≥ 80% + no critical gaps + all verify → PASS | PASS |
Oracle Confidence Downgrade
Section titled “Oracle Confidence Downgrade”TEA-inspired: if trace links rely on heuristics rather than explicit tags, confidence drops.
| Heuristic Ratio | Downgrade |
|---|---|
| > 50% links from heuristics (file-name or task-reference) | One level (PASS→CONCERNS, CONCERNS→FAIL) |
| > 80% links from heuristics | Two levels (PASS→FAIL, CONCERNS→FAIL) |
Process
Section titled “Process”- Pre-flight: Ensure
scripts/trace-stories.sh --jsonhas been run (producesspecs/traceability-matrix.json). If not present, run it. - Ensure
scripts/check-blind-spots.shhas been run (producesspecs/blind-spots.json). If not present, run it. - Read
specs/traceability-matrix.jsonandspecs/blind-spots.json. - Apply decision rules R1–R5 in order (first match wins).
- Apply oracle confidence downgrade based on the heuristic link ratio from the matrix’s
oracle_stats. - Drift check (e39s03): If
specs/drift-report.jsonexists and has suspect links, mark verdict as CONCERNS with note: “Drift detected — some implementing files are newer than their specs. Run scripts/check-spec-drift.sh for details.” - Output verdict + rationale to stdout.
- Adversarial refute check (e45s32): Before emitting PASS, attempt to refute the verdict — list at least one concrete traceability gap that would block merge if it were real. If the gap is real, downgrade the verdict. Rubber-stamping is prohibited; every PASS must survive one refutation attempt.
- Completeness critic (e45s05) — Run adversarial gap-finding:
bash scripts/lib/completeness-critic.shClassify output as BLOCKER / WARNING / FILLED. BLOCKER overrides any PASS verdict → FAIL. Append critic summary to rationale.
10. Update specs/execution-status.yaml with gate-trace result.
Verdict Semantics
Section titled “Verdict Semantics”| Verdict | Meaning | Action |
|---|---|---|
| PASS | All gates satisfied | Proceed with merge |
| CONCERNS | Non-critical issues found | Requires explicit human override in state.yaml |
| FAIL | Critical traceability gap | Block merge — fix gap first |
| WAIVED | Cannot evaluate (missing inputs) | Skip gate — data not available |
Output Format
Section titled “Output Format”gate_trace: verdict: PASS|CONCERNS|FAIL|WAIVED generated_at: "<ISO 8601>" rationale: "<human-readable explanation>" heuristic_ratio: <0.0–1.0> downgrade_applied: <true|false>Integration Points
Section titled “Integration Points”- release-branch SKILL.md — pre-PR gate (FAIL blocks merge).
- sync-skills.yml — CI gate (FAIL blocks pipeline).
- verify-work SKILL.md — runs blind-spot checks; gate-trace consumes the result.
References
Section titled “References”- BMAD TEA traceability approach (market survey 2026-07-02).
- scripts/trace-stories.sh (e38s01) — produces traceability-matrix.json.
- scripts/check-blind-spots.sh (e38s04) — produces blind-spots.json.
- specs/execution-status.yaml — output target for gate result.
Handoff
Section titled “Handoff”Gate: READY → next: release-branch (final step before merge) Writes: state.yaml handoff.next_skill = release-branch