@lmzhen/dsh-evolution-core 0.3.30 → 0.3.31

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.
@@ -29,6 +29,13 @@ export interface EvolutionPlanAppliedEvent {
29
29
  memoryApplied: number;
30
30
  skillApplied: number;
31
31
  rejectedOps: number;
32
+ /** 0.3.31 (V5-19): execution-layer failures — ops that reached execution but
33
+ * did not land (non-throw `ok:false` results). `rejectedOps` counts only
34
+ * VALIDATION rejects; a consumer that treats rejectedOps as "work not done"
35
+ * would otherwise miss a partial application. */
36
+ executionFailures?: number | undefined;
37
+ /** First execution-layer failure message (abort reason or op failure). */
38
+ executionError?: string | undefined;
32
39
  evidenceQuotes?: number | undefined;
33
40
  estimatedInputChars?: number | undefined;
34
41
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-core",
3
3
  "description": "Shared stores, prompts, signals and lifecycle logic for the dsh-evolution plugin family (community build)",
4
- "version": "0.3.30",
4
+ "version": "0.3.31",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },