Priority: π‘ Important
Audit source: T4 Leader (devops-architect)
Related PR: v1.11.0 (PR #54 or earlier schema addition)
Problem
Running scripts/verify-plugin.sh on main is currently failing.
Evidence
$ bash scripts/verify-plugin.sh
...
β schemas: 6 (expected 5)
...
=== SUMMARY ===
Pass: 56
Fail: 1
File: near scripts/verify-plugin.sh:131 β the schema count assertion is hardcoded to -eq 5, but v1.11.0 added a 6th schema.
Side effects
- DoD promised the pass count would grow from 56 β 70+
- Reality: still 56, plus 1 broken assertion
- That is, the v1.11.0 PR was merged while ignoring verify-plugin verification (CI gating likely does not mark this script as required)
Acceptance Criteria
Notes
A trivial fix (1-line change), but the real concern is that main is partially broken β CI gating policy needs review.
Cross-references
- T-1 (advocate count assertion) β same pattern
- C-1 (missing e2e verification) β the assertions themselves are stale
Priority: π‘ Important
Audit source: T4 Leader (devops-architect)
Related PR: v1.11.0 (PR #54 or earlier schema addition)
Problem
Running
scripts/verify-plugin.shon main is currently failing.Evidence
File: near
scripts/verify-plugin.sh:131β the schema count assertion is hardcoded to-eq 5, but v1.11.0 added a 6th schema.Side effects
Acceptance Criteria
scripts/verify-plugin.sh:131: useexpected_schemas=6or a dynamic count.github/workflows/ci.ymlgates on the verify-plugin result with fail-on-error (add it if not already enforced)Notes
A trivial fix (1-line change), but the real concern is that main is partially broken β CI gating policy needs review.
Cross-references