principles-disciple 1.90.0 → 1.91.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.90.0",
5
+ "version": "1.91.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.90.0",
3
+ "version": "1.91.0",
4
4
  "description": "Native OpenClaw plugin for Principles Disciple",
5
5
  "type": "module",
6
6
  "main": "./dist/bundle.js",
package/src/hooks/pain.ts CHANGED
@@ -36,7 +36,7 @@ const WRITE_TOOLS = ['write', 'edit', 'apply_patch', 'write_file', 'edit_file',
36
36
  function createPainToPrincipleService(wctx: WorkspaceContext): PainToPrincipleService {
37
37
  const ledgerAdapter = new PrincipleTreeLedgerAdapter({ stateDir: wctx.stateDir });
38
38
  // PRI-306: Load .pd/config.yaml and pass effectiveConfig to PainToPrincipleService
39
- // so createPainSignalBridge uses config-driven runtime binding resolution.
39
+ // so config-driven runtime binding resolution is used.
40
40
  const configResult = loadPdConfigForPlugin(wctx.workspaceDir);
41
41
  return new PainToPrincipleService({
42
42
  workspaceDir: wctx.workspaceDir,