create-principles-disciple 1.121.0 → 1.121.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.
@@ -74,6 +74,15 @@ export interface RuleHostEvaluationReport {
74
74
  * reason + nextAction so the owner can act without reading SQLite rows.
75
75
  */
76
76
  readonly skippedActivations: readonly SkippedActivation[];
77
+ /**
78
+ * PRI-567 — Number of live-mode implementations loaded for this evaluation.
79
+ * Lets the gate distinguish "live rule evaluated → allow" from
80
+ * "no live rules armed at all" (which previously both logged decision='allow',
81
+ * making enforcement statistics read as if rules were active when none were).
82
+ */
83
+ readonly liveRulesLoaded: number;
84
+ /** Distinguishes an empty live set from a failed evaluation. */
85
+ readonly evaluationStatus: 'ok' | 'failed';
77
86
  }
78
87
  export declare class RuleHost {
79
88
  private readonly stateDir;
@@ -2,7 +2,7 @@
2
2
  "id": "principles-disciple",
3
3
  "name": "Principles Disciple",
4
4
  "description": "Principles Disciple is an AI Agent Governance System. Stop correcting the same AI behavior across sessions. Turn repeated Agent corrections into Owner-approved, observable, reversible behavior principles.",
5
- "version": "1.218.0",
5
+ "version": "1.219.1",
6
6
  "activation": {
7
7
  "onCapabilities": [
8
8
  "hook"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "principles-disciple",
3
- "version": "1.218.0",
3
+ "version": "1.219.1",
4
4
  "description": "Principles Disciple is an AI Agent Governance System. Stop correcting the same AI behavior across sessions. Turn repeated Agent corrections into Owner-approved, observable, reversible behavior principles.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",