principles-disciple 1.105.0 → 1.107.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.
@@ -2,7 +2,7 @@
2
2
  "id": "principles-disciple",
3
3
  "name": "Principles Disciple",
4
4
  "description": "Evolutionary programming agent framework with strategic guardrails and reflection loops.",
5
- "version": "1.105.0",
5
+ "version": "1.107.0",
6
6
  "activation": {
7
7
  "onCapabilities": [
8
8
  "hook"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "principles-disciple",
3
- "version": "1.105.0",
3
+ "version": "1.107.0",
4
4
  "description": "Native OpenClaw plugin for Principles Disciple",
5
5
  "type": "module",
6
6
  "main": "./dist/bundle.js",
package/src/core/init.ts CHANGED
@@ -160,7 +160,7 @@ export const CORE_THINKING_MODELS: Array<{
160
160
  }> = CORE_PRINCIPLES.map(p => ({
161
161
  id: p.id,
162
162
  name: p.name,
163
- description: p.description,
163
+ description: p.statement,
164
164
  }));
165
165
 
166
166
  /**
@@ -209,7 +209,7 @@ function getFallbackName(id: string): string {
209
209
 
210
210
  function getFallbackDescription(id: string): string {
211
211
  const entry = CORE_PRINCIPLES.find(p => p.id === id);
212
- return entry?.description ?? '';
212
+ return entry?.statement ?? '';
213
213
  }
214
214
 
215
215
  // ---------------------------------------------------------------------------
@@ -21,7 +21,7 @@ import {
21
21
  isPeerRunnerKind,
22
22
  hydratePITaskRecord,
23
23
  type PITaskRecord,
24
- type PeerRunnerKind,
24
+ type RunnerKind,
25
25
  } from '@principles/core/runtime-v2';
26
26
 
27
27
  // ── Structured log event types ───────────────────────────────────────────────
@@ -30,7 +30,7 @@ type TriggerWakeEvent = {
30
30
  event: 'INTERNALIZATION_TRIGGER_WAKE';
31
31
  workspaceDir: string;
32
32
  taskId: string;
33
- taskKind: PeerRunnerKind;
33
+ taskKind: RunnerKind;
34
34
  correlationId?: string;
35
35
  gateDecision: 'proceed';
36
36
  timestamp: string;