@lmzhen/dsh-memory 0.3.83 → 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 +12 -15
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,26 +1,23 @@
1
1
  # @lmzhen/dsh-memory
2
2
 
3
- Memory provider registry for self-evolution
3
+ Memory provider registry: the `memory` service the memory tool and the loops use.
4
4
 
5
- ## Model Experience
5
+ ## Model surface
6
6
 
7
- ### Indirect model surface
7
+ - **Model-visible:** nothing of its own: `tool-memory` owns the tool and the injection.
8
+ - **Prompt prefix / KV cache:** unchanged by this package: family-level rules single-sourced in `packages/README.md` §"Model-visible prompt prefix and the KV cache".
9
+ - **Mount it?** yes — the `memory` row, `evolution-host`/`evolution-all`/one-click `evolution-preset`; a seam whose shipped provider is `memory-files`.
8
10
 
9
- #### What the model sees
11
+ ## Configuration
10
12
 
11
- `@lmzhen/dsh-memory` registers no direct prompt or tool schema itself. Model-visible effects are owned by the packages that consume this service.
13
+ - `provider` (default `''`): pins one provider for all reads and writes; empty = first registered.
12
14
 
13
- #### Token effect
15
+ ## Known limitations
14
16
 
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
17
+ - A pin no mounted provider satisfies warns when a differently-named provider registers, then fails the first read/write with the pin named: there is no earlier check (registry and registration API are one service).
22
18
 
19
+ **Runtime invariant:** No companion is published. The platform auto-assembles nothing and the family mounts no `<pkg>/invariant` cordis row, so a companion here would never execute (v37 S2.1 / I-3).
23
20
 
24
- - `provider` pins the registry to one provider name (V27 G6.3); empty (the default) serves the FIRST registered provider, so with two providers mounted the choice is row order. A pin that no mounted provider satisfies warns when a differently-named provider registers and then fails the first read/write with the pin named — the registry and the registration API are one service, so there is no earlier point to check it.
21
+ ## Notes and history
25
22
 
26
- **Runtime invariant:** No companion is published. The platform auto-assembles nothing and the family mounts no `<pkg>/invariant` cordis row, so a companion here would never execute (v37 S2.1 / I-3).
23
+ - `provider` pins the registry to one provider name (V27 G6.3); empty (the default) serves the FIRST registered provider, so with two providers mounted the choice is row order.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-memory",
3
3
  "description": "Memory provider registry for self-evolution (community build)",
4
- "version": "0.3.83",
4
+ "version": "0.4.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },