stratagate-dsh 0.2.46 → 0.2.47
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 +5 -1
- package/README.md +14 -6
- package/README.zh-CN.md +14 -6
- package/dist/client.js +10 -8
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.47 - 2026-09-02
|
|
4
|
+
|
|
5
|
+
- Package the ordered, per-tool retrieval visualization as a new installable DSH release.
|
|
6
|
+
|
|
3
7
|
## 0.2.46 - 2026-09-02
|
|
4
8
|
|
|
5
|
-
- Show a quiet, expandable answer-tail retrieval receipt when matching memories were checked but not adopted, with on-demand source details
|
|
9
|
+
- Show a quiet, expandable answer-tail retrieval receipt when matching memories were checked but not adopted, preserving each tool retrieval as an ordered group with separately numbered candidates and on-demand source details.
|
|
6
10
|
|
|
7
11
|
## 0.2.45 - 2026-09-02
|
|
8
12
|
|
package/README.md
CHANGED
|
@@ -8,10 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
A layered memory and evidence retrieval system for long-running AI agents.
|
|
10
10
|
|
|
11
|
-
[](https://github.com/diqierjia/StrataGate-AgentMemory/actions/workflows/ci.yml)
|
|
12
|
-
[](https://github.com/diqierjia/StrataGate-AgentMemory/actions/workflows/ci.yml)
|
|
12
|
+
[](https://www.npmjs.com/package/stratagate-dsh)
|
|
13
|
+
[](LICENSE)
|
|
14
|
+
[](https://www.typescriptlang.org/)
|
|
15
|
+
[](https://awesome-dsh-plugin.com)
|
|
16
|
+
[](CONTRIBUTING.md)
|
|
15
17
|
|
|
16
18
|
[中文说明](README.zh-CN.md) · [Architecture](docs/ARCHITECTURE.md) · [Full evaluation](docs/EVALUATION.md)
|
|
17
19
|
|
|
@@ -385,7 +387,13 @@ dsh plugin --profile web add stratagate-dsh
|
|
|
385
387
|
```
|
|
386
388
|
|
|
387
389
|
The DSH-specific behavior, tools, configuration, and failure semantics are documented in [`docs/DSH.md`](docs/DSH.md).
|
|
388
|
-
|
|
389
|
-
##
|
|
390
|
+
|
|
391
|
+
## Contributing
|
|
392
|
+
|
|
393
|
+
Contributions are welcome—whether you are fixing a bug, improving documentation, adding an integration, or exploring a better memory and retrieval strategy.
|
|
394
|
+
|
|
395
|
+
To get started, read [`CONTRIBUTING.md`](CONTRIBUTING.md). It explains how to set up the monorepo, run checks and tests, choose a useful area to work on, and prepare a focused pull request. If you are unsure whether an idea fits the project, [open an issue](https://github.com/diqierjia/StrataGate-AgentMemory/issues) before investing in a large change.
|
|
396
|
+
|
|
397
|
+
## License
|
|
390
398
|
|
|
391
399
|
StrataGate is available under the [MIT License](LICENSE).
|
package/README.zh-CN.md
CHANGED
|
@@ -8,10 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
面向长期 AI Agent 的分层记忆与证据检索系统。
|
|
10
10
|
|
|
11
|
-
[](https://github.com/diqierjia/StrataGate-AgentMemory/actions/workflows/ci.yml)
|
|
12
|
-
[](https://github.com/diqierjia/StrataGate-AgentMemory/actions/workflows/ci.yml)
|
|
12
|
+
[](https://www.npmjs.com/package/stratagate-dsh)
|
|
13
|
+
[](LICENSE)
|
|
14
|
+
[](https://www.typescriptlang.org/)
|
|
15
|
+
[](https://awesome-dsh-plugin.com)
|
|
16
|
+
[](CONTRIBUTING.zh-CN.md)
|
|
15
17
|
|
|
16
18
|
[English](README.md) · [架构说明](docs/ARCHITECTURE.md) · [完整评测](docs/EVALUATION.md)
|
|
17
19
|
|
|
@@ -394,7 +396,13 @@ dsh plugin --profile web add stratagate-dsh
|
|
|
394
396
|
```
|
|
395
397
|
|
|
396
398
|
DSH 适配层的行为、工具、配置和失败恢复方式见 [DeepSeek Harness 插件中文文档](docs/DSH.zh-CN.md)。
|
|
397
|
-
|
|
398
|
-
##
|
|
399
|
+
|
|
400
|
+
## 参与贡献
|
|
401
|
+
|
|
402
|
+
欢迎各种形式的贡献:修复问题、完善文档、增加集成,或探索更好的记忆与检索方案都可以。
|
|
403
|
+
|
|
404
|
+
请先阅读 [`CONTRIBUTING.zh-CN.md`](CONTRIBUTING.zh-CN.md),其中包含 monorepo 开发环境、检查与测试命令、适合参与的方向,以及提交 Pull Request 的建议。如果还不确定一个想法是否适合项目,建议先[创建 Issue](https://github.com/diqierjia/StrataGate-AgentMemory/issues),再投入较大的改动。
|
|
405
|
+
|
|
406
|
+
## 许可证
|
|
399
407
|
|
|
400
408
|
StrataGate 使用 [MIT License](LICENSE)。
|