@lmzhen/dsh-tool-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.
- package/README.md +10 -18
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,26 +1,18 @@
|
|
|
1
1
|
# @lmzhen/dsh-tool-memory
|
|
2
2
|
|
|
3
|
-
Model-facing memory tool and prompt context
|
|
3
|
+
Model-facing memory tool and prompt context: it registers the `memory` tool, one fixed
|
|
4
|
+
guidance section and the runtime snapshot of the current memory entries. It owns no store —
|
|
5
|
+
the memory files and their provider do.
|
|
4
6
|
|
|
5
|
-
## Model
|
|
7
|
+
## Model surface
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
The model sees the `memory` tool schema, one fixed guidance section, and a runtime snapshot containing the current memory entries.
|
|
12
|
-
|
|
13
|
-
#### Token effect
|
|
14
|
-
|
|
15
|
-
Fixed guidance has a constant token cost. The runtime snapshot scales with stored memory entries and is absent when memory is empty.
|
|
16
|
-
|
|
17
|
-
#### KV Cache effect
|
|
18
|
-
|
|
19
|
-
Guidance text is prefix-stable. The runtime snapshot is replaced after successful memory writes and is otherwise unchanged between requests.
|
|
20
|
-
|
|
21
|
-
## Known Limitations and Deferred Work
|
|
9
|
+
- **Model-visible:** the `memory` tool schema, one fixed guidance section, and a runtime snapshot containing the current memory entries; the snapshot scales with the stored entries and is absent when memory is empty.
|
|
10
|
+
- **Prompt prefix / KV cache:** guidance text is prefix-stable; the runtime snapshot is replaced after successful memory writes and is otherwise unchanged between requests; family rules: `packages/README.md` §"Model-visible prompt prefix and the KV cache".
|
|
11
|
+
- **Mount it?** yes — the `tool-memory` row, carried by the `evolution-all` and one-click `evolution-preset` bundles and by the Evolution agent preset delta.
|
|
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.
|
|
16
|
+
- The pre-approval required-field pre-check and the store's own rejection text are hand-copied twins: the check runs on BOTH paths (every `operations[]` element and the normalized single operation) BEFORE the approval gate, so an approval-enabled deployment never stages a write the approved replay must then fail. Keeping the two texts in step is still manual; unifying them is deferred.
|
|
25
17
|
|
|
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).
|
|
18
|
+
**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).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-tool-memory",
|
|
3
3
|
"description": "Model-facing memory tool and prompt context (community build)",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.4.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -27,21 +27,21 @@
|
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@deepseek-ai/schemastery": "^3.18.1",
|
|
30
|
-
"@lmzhen/dsh-evolution-approval": "^0.
|
|
31
|
-
"@lmzhen/dsh-evolution-core": "^0.
|
|
30
|
+
"@lmzhen/dsh-evolution-approval": "^0.4.0",
|
|
31
|
+
"@lmzhen/dsh-evolution-core": "^0.4.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
35
35
|
"@deepseek-ai/dsh-tools": "^0.1.5-rc.2",
|
|
36
36
|
"@deepseek-ai/dsh-system-prompt": "^0.1.5-rc.2",
|
|
37
|
-
"@lmzhen/dsh-memory": "^0.
|
|
37
|
+
"@lmzhen/dsh-memory": "^0.4.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@deepseek-ai/dsh-tools": "^0.1.5-rc.2",
|
|
41
41
|
"@deepseek-ai/dsh-system-prompt": "^0.1.5-rc.2",
|
|
42
42
|
"@deepseek-ai/dsh-agent-loop-testkit": "^0.1.5-rc.2",
|
|
43
|
-
"@lmzhen/dsh-evolution-approval": "^0.
|
|
44
|
-
"@lmzhen/dsh-memory": "^0.
|
|
45
|
-
"@lmzhen/dsh-memory-files": "^0.
|
|
43
|
+
"@lmzhen/dsh-evolution-approval": "^0.4.0",
|
|
44
|
+
"@lmzhen/dsh-memory": "^0.4.0",
|
|
45
|
+
"@lmzhen/dsh-memory-files": "^0.4.0"
|
|
46
46
|
}
|
|
47
47
|
}
|