stratagate-dsh 0.2.35 → 0.2.37
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/CHANGELOG.md +26 -16
- package/LICENSE +21 -21
- package/README.md +336 -133
- package/README.zh-CN.md +400 -0
- package/dist/client.js +3 -3
- package/dist/index.d.ts +1 -0
- package/dist/index.js +583 -150
- package/dist/index.js.map +1 -1
- package/docs/ARCHITECTURE.md +244 -0
- package/docs/DSH.md +191 -0
- package/docs/{README.zh-CN.md → DSH.zh-CN.md} +30 -27
- package/docs/EVALUATION.md +179 -0
- package/docs/EXTERNAL_MEMORY_IMPORT.zh-CN.md +54 -0
- package/docs/assets/stratagate-avatar.png +0 -0
- package/docs/assets/stratagate-how-it-works.en.png +0 -0
- package/docs/assets/stratagate-how-it-works.zh-CN.png +0 -0
- package/docs/assets/stratagate-knowledge-graph.png +0 -0
- package/docs/assets/stratagate-memory-structure.png +0 -0
- package/docs/assets/stratagate-short-term-memory.png +0 -0
- package/package.json +176 -153
- package/screenshots.json +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.2.
|
|
3
|
+
## 0.2.37 - 2026-08-29
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
-
|
|
7
|
-
-
|
|
5
|
+
- Seal each completed Block immediately with deterministic L3-L4 and permanent L5, while keeping model-pending Blocks out of decay and native-surface replacement until L0-L2 and Event processing both complete.
|
|
6
|
+
- Add persisted summary jobs, bounded exponential retries, and SQLite schema v9 migration so derivation failures cannot lose turns, receipts, or block later sealing.
|
|
7
|
+
- Resolve exact-model `reasoningEffort: off` support, fall back once on explicit rejection, cache negative capability by route, and bound structured tasks by output tokens and a hard timeout.
|
|
8
8
|
|
|
9
|
-
## 0.2.
|
|
10
|
-
|
|
11
|
-
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
9
|
+
## 0.2.36 - 2026-08-28
|
|
10
|
+
|
|
11
|
+
- Make completed conversation turns per Block editable in Advanced Settings, persist it globally, and suggest an optional λ adjustment that preserves decay speed per turn.
|
|
12
|
+
|
|
13
|
+
## 0.2.35 - 2026-08-27
|
|
14
|
+
|
|
15
|
+
- Return compact Event, Knowledge Graph, and raw-memory search cards while keeping full details in expand tools.
|
|
16
|
+
- Rename tool-facing ranking output to `rankScore` and document that it is not confidence or factual accuracy.
|
|
17
|
+
- Filter relation-only Knowledge Graph matches, report matched fields, and preserve distinct same-name entity types.
|
|
18
|
+
|
|
19
|
+
## 0.2.34 - 2026-08-27
|
|
20
|
+
|
|
21
|
+
- Add explicit `session` and `namespace` scopes to block and raw-memory retrieval.
|
|
22
|
+
- Return namespace, thread, counts, and machine-readable empty reasons for block queries.
|
|
23
|
+
- Keep session namespace isolation and make open-tail and cross-thread empty results explainable.
|
|
24
|
+
|
|
25
|
+
## 0.2.33 - 2026-08-27
|
|
26
|
+
|
|
27
|
+
- Keep concurrent retrieval batches independently addressable through optional `batch_id` parameters on assessment and usage recording while preserving latest-batch defaults for sequential calls.
|
|
28
|
+
- Report every assessment rejection and aggregate all invalid usage refs with batch status, available refs, and adopted refs; zero-use audits now retain the real batch ID.
|
|
29
|
+
|
|
30
|
+
## 0.2.30 - 2026-08-25
|
|
21
31
|
|
|
22
32
|
- Add compact minus, slider, and plus controls to the Knowledge Graph for faster zoom adjustments.
|
|
23
33
|
- Synchronize the visible zoom control with mouse-wheel zoom while keeping button and slider zoom centered on the graph canvas.
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 diqier
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|