principles-disciple 1.173.0 → 1.174.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.
@@ -271,17 +271,18 @@ export class RuleHost {
271
271
  continue;
272
272
  }
273
273
  if (activationMode === 'shadow') {
274
- // CodeRabbit PR #1121: shadow activations are observation-only and do
275
- // NOT enter mergeDecisions (no block / requireApproval). Historical
276
- // owner-approved records persisted with action=code_tool_hook_shadow_activate
277
- // (before RuleHostWriter was fixed to write code_tool_hook_live_activate)
278
- // silently lost execution after the dual-mode change. Surface a
274
+ // PRI-489 (seed-MVP readiness): shadow activations are
275
+ // observation-only and do NOT enter mergeDecisions (no block /
276
+ // requireApproval). Owner approval creates a shadow activation
277
+ // first; the only shadow -> live transition is `pd activation
278
+ // promote --activation-id ... --confirm` (atomic action rewrite
279
+ // in SqliteActivationStateStore.promoteActivation). Surface a
279
280
  // structured reason + nextAction so the degradation is observable
280
- // (rc-9-no-silent-fallback), not silent. Fires once per fingerprint
281
- // change (cached), not per evaluation.
281
+ // (rc-9-no-silent-fallback), not silent. Fires once per
282
+ // fingerprint change (cached), not per evaluation.
282
283
  this.logger.warn?.(`[RuleHost] Activation ${activationId}: loaded in shadow (observation-only) mode; ` +
283
284
  'it will NOT block or require approval (shadowDecisions only). ' +
284
- `nextAction=run \`pd runtime activation promote --activation-id ${activationId} --confirm\` to enable live blocking, ` +
285
+ `nextAction=run \`pd activation promote --activation-id ${activationId} --confirm\` to enable live blocking, ` +
285
286
  'or leave as-is for shadow observation.');
286
287
  }
287
288
  try {
@@ -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.173.0",
5
+ "version": "1.174.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.173.0",
3
+ "version": "1.174.0",
4
4
  "description": "Native OpenClaw plugin for Principles Disciple",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",