instar 1.3.1061 → 1.3.1062
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data/standards-registry.meta.json +1 -1
- package/dist/server/routes.js +3 -3
- package/dist/server/routes.js.map +1 -1
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +46 -46
- package/src/data/standards-registry.meta.json +1 -1
- package/upgrades/1.3.1062.md +27 -0
- package/upgrades/eli16/decision-quality-empty-ratios.md +20 -0
- package/upgrades/side-effects/decision-quality-empty-ratios.md +91 -0
package/dist/server/routes.js
CHANGED
|
@@ -15576,14 +15576,14 @@ document.getElementById('mcpForm').addEventListener('submit', async function (e)
|
|
|
15576
15576
|
contentClass: entry.contentClass,
|
|
15577
15577
|
decisions,
|
|
15578
15578
|
outcomesKnown,
|
|
15579
|
-
outcomesKnownRatio: decisions > 0 ? outcomesKnown / decisions :
|
|
15579
|
+
outcomesKnownRatio: decisions > 0 ? outcomesKnown / decisions : null,
|
|
15580
15580
|
/**
|
|
15581
15581
|
* Settled (right|wrong) grades — the only ones that can support a rate.
|
|
15582
15582
|
* `selfReportShare` below already divides by this same quantity.
|
|
15583
15583
|
*/
|
|
15584
15584
|
settledGrades,
|
|
15585
15585
|
/** Share of graded rows that are unsettled. 1.0 means nothing is known. */
|
|
15586
|
-
unknownShare: outcomesKnown > 0 ? unknown / outcomesKnown :
|
|
15586
|
+
unknownShare: outcomesKnown > 0 ? unknown / outcomesKnown : null,
|
|
15587
15587
|
// Below the minimum SETTLED-grade count an aggregate rate is not
|
|
15588
15588
|
// actionable (§5.5 codex r5). Measured 2026-07-28: this counted
|
|
15589
15589
|
// `unknown` toward the sample, so messaging-tone-gate (2075 decisions,
|
|
@@ -15612,7 +15612,7 @@ document.getElementById('mcpForm').addEventListener('submit', async function (e)
|
|
|
15612
15612
|
// much of it is self-report without having to know `byStrength`
|
|
15613
15613
|
// exists. `selfReportOnly` is the loud case: every graded outcome
|
|
15614
15614
|
// here is the interested party's word.
|
|
15615
|
-
selfReportShare: right + wrong > 0 ? selfReportGraded / (right + wrong) :
|
|
15615
|
+
selfReportShare: right + wrong > 0 ? selfReportGraded / (right + wrong) : null,
|
|
15616
15616
|
selfReportOnly: right + wrong > 0 && selfReportGraded === right + wrong,
|
|
15617
15617
|
},
|
|
15618
15618
|
// Strength FIRST (default aggregate) — proof-like and heuristic grades are never conflated.
|