Integrate spec-readiness precheck into sprint pipeline

This commit is contained in:
Bill
2026-02-26 14:09:13 -07:00
parent 55876d3540
commit ccf8f7a817
3 changed files with 167 additions and 23 deletions

View File

@@ -51,3 +51,12 @@
- Current path-B repair closure is pattern-driven around recurring queue-shaped transpile failures.
- Next required tranche: broaden to non-queue semantics and first-class spec-to-execution-ready planning.
## Added After Commit `55876d3` (Same Day Continuation)
- Wired first-class planning precheck into `tools/mcp/run_sprint_taskitem_pipeline.sh`.
- Added environment controls:
- `WSTONE_SPEC_READINESS_PRECHECK`
- `WSTONE_SPEC_READINESS_HARD_GATE`
- `WSTONE_SPEC_READINESS_MIN_SCORE`
- Spec readiness is now available in pipeline `00_summary.json` as `planning_readiness`.

View File

@@ -11,6 +11,12 @@ Planned and started:
- Added planning-readiness tool:
- `tools/mcp/spec_planning_readiness.py`
- Integrated planning precheck into taskitem pipeline:
- `tools/mcp/run_sprint_taskitem_pipeline.sh`
- new env controls:
- `WSTONE_SPEC_READINESS_PRECHECK` (default `1`)
- `WSTONE_SPEC_READINESS_HARD_GATE` (default `0`)
- `WSTONE_SPEC_READINESS_MIN_SCORE` (default `65`)
- Tool outputs:
- readiness score (`section_score`, `keyword_score`, `total`)
- verdict (`execution_ready` or `needs_spec_hardening`)
@@ -28,13 +34,13 @@ Observed baseline:
## Explicit Completion Signal
- Sprint 228: `PARTIAL` (tool implemented and baseline executed)
- Sprint 228: `PARTIAL` (tool implemented, baseline executed, pipeline precheck integrated)
- Sprint 229: `PARTIAL` (constraint synthesis mapping implemented in tool)
- Sprint 230: `PARTIAL` (acceptance readiness checks implemented in tool)
- Sprint 231: `PARTIAL` (environment/projection checks implemented in tool)
## Next Closure Work
- Bind readiness tool into pre-taskitem pipeline gate.
- Enable hard-gate mode for selected sprint ranges and capture pass/fail deltas.
- Add structured spec hardening pass that applies template scaffolds to candidate specs.
- Re-run benchmarks using hardened specs and measure downstream readiness deltas.