@principles/core 1.115.0 → 1.116.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 +3 -3
- package/dist/runtime-v2/__tests__/architecture-regression.test.js.map +1 -1
- package/dist/runtime-v2/__tests__/attack-e2e-pipeline-smoke.test.js +1 -1
- package/dist/runtime-v2/__tests__/attack-e2e-pipeline-smoke.test.js.map +1 -1
- package/dist/runtime-v2/__tests__/pain-evidence-contract.test.js +1 -1
- package/dist/runtime-v2/__tests__/pain-evidence-contract.test.js.map +1 -1
- package/dist/runtime-v2/activation/__tests__/approval-queue.test.js +1 -1
- package/dist/runtime-v2/activation/__tests__/approval-queue.test.js.map +1 -1
- package/dist/runtime-v2/activation/__tests__/low-risk-writers.test.js +104 -87
- package/dist/runtime-v2/activation/__tests__/low-risk-writers.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 +2 -3
- package/dist/runtime-v2/config/pd-config-types.js.map +1 -1
- package/dist/runtime-v2/observer/__tests__/empathy-observer.real-e2e.test.js +2 -2
- package/dist/runtime-v2/observer/__tests__/empathy-observer.real-e2e.test.js.map +1 -1
- package/dist/runtime-v2/observer/empathy-observer.js +1 -1
- package/dist/runtime-v2/observer/empathy-observer.js.map +1 -1
- package/dist/runtime-v2/runner/__tests__/m8-02-e2e.test.js +7 -15
- package/dist/runtime-v2/runner/__tests__/m8-02-e2e.test.js.map +1 -1
- package/dist/runtime-v2/runner/__tests__/m9-e2e.test.js +3 -10
- package/dist/runtime-v2/runner/__tests__/m9-e2e.test.js.map +1 -1
- package/package.json +1 -1
|
@@ -201,6 +201,7 @@ const KNOWN_PLUGIN_CORE_FILES = new Set([
|
|
|
201
201
|
'principle-internalization/lifecycle-read-model.ts',
|
|
202
202
|
'principle-internalization/filesystem-lifecycle-datasource.ts',
|
|
203
203
|
'config-service.ts',
|
|
204
|
+
'config-health.ts', // PRI-346: Pure conversation access config check — plugin-specific due to OpenClaw config shape dependency
|
|
204
205
|
'principle-compiler/index.ts',
|
|
205
206
|
'principle-internalization/lifecycle-refresh.ts',
|
|
206
207
|
// ── Do Not Move — intrinsically plugin-specific ─────────────────────────
|
|
@@ -327,9 +328,8 @@ describe('PRI-212 plugin core anti-growth guard', () => {
|
|
|
327
328
|
// Prevents accidental baseline bloat from going unnoticed.
|
|
328
329
|
// See docs/reviews/plugin-core-inventory-2026-05.md §7
|
|
329
330
|
// PRI-286: Removed confirm-first-gate.ts (95 → 94)
|
|
330
|
-
// PRI-307: Added pd-config-loader.ts (
|
|
331
|
-
// PRI-346: Added config-health.ts (
|
|
332
|
-
// PRI-347: Removed JSONL trajectory writers (96 → 95 → 94 → ... → 98 after cleanup)
|
|
331
|
+
// PRI-307: Added pd-config-loader.ts (96 → 97)
|
|
332
|
+
// PRI-346: Added config-health.ts (97 → 98)
|
|
333
333
|
expect(KNOWN_PLUGIN_CORE_FILES.size).toBe(98);
|
|
334
334
|
});
|
|
335
335
|
});
|