@lmzhen/dsh-evolution-plan-validator 0.3.82 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +9 -18
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,25 +1,16 @@
1
- # @deepseek-ai/dsh-evolution-plan-validator
1
+ # @lmzhen/dsh-evolution-plan-validator
2
2
 
3
- Deterministic validator for model-produced evolution plans
3
+ Deterministic validator for model-produced evolution plans: it exports the plan types
4
+ (`EvolutionPlan`, `MemoryOp`, `SkillOp`) and the single `validateEvolutionPlan(plan,
5
+ context)` entry point.
4
6
 
5
- ## Model Experience
7
+ ## Model surface
6
8
 
7
- ### Indirect model surface
8
-
9
- #### What the model sees
10
-
11
- `@deepseek-ai/dsh-evolution-plan-validator` registers no direct prompt or tool schema itself. Model-visible effects are owned by the packages that consume this service.
12
-
13
- #### Token effect
14
-
15
- Zero direct token effect from this package; consumers add any model-visible tokens.
16
-
17
- #### KV Cache effect
18
-
19
- Independent of request-prefix construction. This package does not alter the assembled prompt or tool list.
20
-
21
- ## Known Limitations and Deferred Work
9
+ - **Model-visible:** nothing of its own: no prompt, no tool schema and no service; consumers own the model-visible effects.
10
+ - **Prompt prefix / KV cache:** independent of request-prefix construction — it does not alter the assembled prompt or tool list; family-level rules: `packages/README.md` §"Model-visible prompt prefix and the KV cache".
11
+ - **Mount it?** no: a library/seam consumed by the review pipeline.
22
12
 
13
+ ## Known limitations
23
14
 
24
15
  - No known durable consumer gaps at this time. Runtime contracts are covered by package and boundary tests.
25
16
 
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.82",
4
+ "version": "0.4.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -26,6 +26,6 @@
26
26
  ],
27
27
  "license": "MIT",
28
28
  "dependencies": {
29
- "@lmzhen/dsh-evolution-core": "^0.3.82"
29
+ "@lmzhen/dsh-evolution-core": "^0.4.0"
30
30
  }
31
31
  }