@lmzhen/dsh-evolution-plan-validator 0.3.36 → 0.3.38

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.
Files changed (2) hide show
  1. package/lib/index.js +4 -1
  2. package/package.json +2 -2
package/lib/index.js CHANGED
@@ -129,7 +129,10 @@ function validateEvolutionPlan(plan, context) {
129
129
  kind: "skill",
130
130
  reason
131
131
  });
132
- else skillOps.push(op);
132
+ else skillOps.push(op.action === void 0 ? {
133
+ ...op,
134
+ action: "patch"
135
+ } : op);
133
136
  }
134
137
  return {
135
138
  accepted,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-plan-validator",
3
3
  "description": "Deterministic validator for model-produced evolution plans (community build)",
4
- "version": "0.3.36",
4
+ "version": "0.3.38",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -31,7 +31,7 @@
31
31
  "license": "MIT",
32
32
  "dependencies": {
33
33
  "@deepseek-ai/schemastery": "^3.18.1",
34
- "@lmzhen/dsh-evolution-core": "^0.3.36"
34
+ "@lmzhen/dsh-evolution-core": "^0.3.38"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",