principles-disciple 1.236.1 → 1.236.2

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.
@@ -2,15 +2,19 @@
2
2
  * Pain Diagnostic Gate — PRI-446 thin adapter
3
3
  *
4
4
  * @deprecated PRI-454 — Gate A (PainDiagnosticGate) is superseded by Gate B
5
- * (TriggerController + EvidenceTriage). This module remains as the rollback
6
- * path when `painEvidenceAdmission` or `painEvidenceAdmissionDefault` flags
7
- * are OFF. Do not add new callers. New admission logic must use
8
- * `evaluateTriggerController` from runtime-v2/evidence-triage.
5
+ * (TriggerController + EvidenceTriage). Do not add new callers. New admission
6
+ * logic must use `evaluateTriggerController` from runtime-v2/evidence-triage.
9
7
  *
10
- * Disposition: Archive (do not delete) per PRI-454 plan step 6.
11
- * Removal conditions: Both flags confirmed ON in production for 30 days,
12
- * and all 5 MVP paths verified on Gate B. See
13
- * docs/plans/2026-06-pain-evidence-admission-track.md.
8
+ * Reality note (PRI-752, 2026-09-12): NO runtime routing reads
9
+ * `painEvidenceAdmission` / `painEvidenceAdmissionDefault` to re-activate this
10
+ * module the documented flag-off rollback does not exist as code. This
11
+ * adapter has ZERO production importers; only tests import it
12
+ * (PRI-749 G-1 / PRI-752 finding). The historical PRI-454 removal criteria
13
+ * (both flags ON >=30 days + 5 MVP paths verified on Gate B) require
14
+ * production evidence this repo does not hold — what IS verified here is
15
+ * only the zero-importer / no-routing-effect facts above; disposition awaits
16
+ * the Owner decision recorded on PRI-752 —
17
+ * see docs/plans/2026-06-pain-evidence-admission-track.md.
14
18
  *
15
19
  * The pure decision logic (threshold tree, cooldown comparison, episode-key
16
20
  * construction) now lives in principles-core
@@ -21,9 +25,8 @@
21
25
  * - SystemLogger for unknown-source telemetry
22
26
  *
23
27
  * It preserves the original export names (evaluatePainDiagnosticGate,
24
- * isCooldownActiveForEpisode, resetPainDiagnosticGateForTest) so all 5 callers
25
- * (gate-block-helper, llm, pain, prompt x2) and the characterization test keep
26
- * working unchanged.
28
+ * isCooldownActiveForEpisode, resetPainDiagnosticGateForTest) for the
29
+ * remaining test consumers (auto-entry-gate, characterization, mocks).
27
30
  *
28
31
  * ERR checklist:
29
32
  * - ERR-011: this is a stateful adapter delegating to core pure logic.