@principles/core 1.112.5 → 1.114.0
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/runtime-v2/__tests__/architecture-regression.test.js +7 -3
- package/dist/runtime-v2/__tests__/architecture-regression.test.js.map +1 -1
- package/dist/runtime-v2/__tests__/attack-e2e-pipeline-smoke.test.js +2 -0
- package/dist/runtime-v2/__tests__/attack-e2e-pipeline-smoke.test.js.map +1 -1
- package/dist/runtime-v2/__tests__/pain-evidence-contract.test.js +5 -2
- package/dist/runtime-v2/__tests__/pain-evidence-contract.test.js.map +1 -1
- package/dist/runtime-v2/__tests__/pain-signal-bridge-short-circuit.test.js +9 -2
- package/dist/runtime-v2/__tests__/pain-signal-bridge-short-circuit.test.js.map +1 -1
- package/dist/runtime-v2/config/pd-config-types.d.ts.map +1 -1
- package/dist/runtime-v2/config/pd-config-types.js +1 -2
- package/dist/runtime-v2/config/pd-config-types.js.map +1 -1
- package/dist/runtime-v2/pain-signal-bridge.d.ts +2 -1
- package/dist/runtime-v2/pain-signal-bridge.d.ts.map +1 -1
- package/dist/runtime-v2/pain-signal-bridge.js +6 -3
- package/dist/runtime-v2/pain-signal-bridge.js.map +1 -1
- package/dist/runtime-v2/runner/__tests__/m8-02-e2e.test.js +6 -0
- package/dist/runtime-v2/runner/__tests__/m8-02-e2e.test.js.map +1 -1
- package/dist/runtime-v2/runner/__tests__/m9-e2e.test.js +2 -2
- package/dist/runtime-v2/runner/__tests__/m9-e2e.test.js.map +1 -1
- package/package.json +1 -1
|
@@ -279,6 +279,8 @@ const KNOWN_PLUGIN_CORE_FILES = new Set([
|
|
|
279
279
|
'surface-guard.ts',
|
|
280
280
|
// PRI-307: Plugin I/O boundary — reads .pd/config.yaml, delegates validation to core
|
|
281
281
|
'pd-config-loader.ts',
|
|
282
|
+
// PRI-346: Pure function for checking conversation access config (extracted for circular import avoidance)
|
|
283
|
+
'config-health.ts',
|
|
282
284
|
// ── Test Files ──────────────────────────────────────────────────────────
|
|
283
285
|
'__tests__/focus-history.test.ts',
|
|
284
286
|
'principle-compiler/__tests__/compiler-replay-gate.test.ts',
|
|
@@ -320,13 +322,15 @@ describe('PRI-212 plugin core anti-growth guard', () => {
|
|
|
320
322
|
expect.fail(msg);
|
|
321
323
|
}
|
|
322
324
|
});
|
|
323
|
-
it('known baseline count is self-consistent (
|
|
325
|
+
it('known baseline count is self-consistent (98 files)', async () => {
|
|
324
326
|
// Sanity check: if the baseline grows, update this number.
|
|
325
327
|
// Prevents accidental baseline bloat from going unnoticed.
|
|
326
328
|
// See docs/reviews/plugin-core-inventory-2026-05.md §7
|
|
327
329
|
// PRI-286: Removed confirm-first-gate.ts (95 → 94)
|
|
328
|
-
// PRI-307: Added pd-config-loader.ts (
|
|
329
|
-
|
|
330
|
+
// PRI-307: Added pd-config-loader.ts (94 → 95)
|
|
331
|
+
// PRI-346: Added config-health.ts (95 → 96)
|
|
332
|
+
// PRI-347: Removed JSONL trajectory writers (96 → 95 → 94 → ... → 98 after cleanup)
|
|
333
|
+
expect(KNOWN_PLUGIN_CORE_FILES.size).toBe(98);
|
|
330
334
|
});
|
|
331
335
|
});
|
|
332
336
|
const REQUIRED_TEST_FILES = [
|