principles-disciple 1.172.0 → 1.173.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/index.js CHANGED
@@ -45,7 +45,8 @@ const startedWorkspaces = new Set();
45
45
  // Re-exported from core/config-health.ts for backward compatibility.
46
46
  // Implementation moved to avoid circular imports with trajectory-collector.ts.
47
47
  // ── Feature Flag Loader (plugin I/O boundary) ─────────────────────────────
48
- // Reads workspace feature-flags.yaml and checks a specific flag.
48
+ // Reads workspace .pd/config.yaml and checks a specific flag.
49
+ // (ADR-0016: the legacy .pd/feature-flags.yaml is no longer read by production runtime.)
49
50
  // Returns the flag definition with effective enabled state.
50
51
  function isRecord(value) {
51
52
  return value !== null && typeof value === 'object' && !Array.isArray(value);
@@ -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.172.0",
5
+ "version": "1.173.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.172.0",
3
+ "version": "1.173.0",
4
4
  "description": "Native OpenClaw plugin for Principles Disciple",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",