@yolk_vat-y/dsh-project-memory 0.1.4 → 0.1.5

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.5 (2026-08-25)
4
+
5
+ ### 修复
6
+ - **关键**:`cordis.patch.yml` 的 loader entry `name` 从已弃用的裸包名改为实际的 scoped 包名。此前从 npm / 市场安装后启动 dsh 必然崩溃(`Cannot find package 'dsh-project-memory'`);本地路径安装的旧用户不受影响,但 npm 安装路径完全不可用
7
+ - 测试新增守卫:bundle patch 引用的包名必须与 package.json 一致,杜绝再次漂移
8
+
3
9
  ## 0.1.4 (2026-08-25)
4
10
 
5
11
  ### 修复
package/README.md CHANGED
@@ -52,7 +52,7 @@ dsh plugin --profile web add @yolk_vat-y/dsh-project-memory -w
52
52
  A prebuilt tarball is published with each release, installable without a build step:
53
53
 
54
54
  ```bash
55
- dsh plugin --profile web add /path/to/dsh-project-memory-0.1.4.tgz
55
+ dsh plugin --profile web add /path/to/dsh-project-memory-0.1.5.tgz
56
56
  ```
57
57
 
58
58
  Each indexed project has its own store at `<root>/.dsh-project-memory/`. Add it to `.gitignore` if it should not be committed.
package/README.zh-CN.md CHANGED
@@ -52,7 +52,7 @@ dsh plugin --profile web add @yolk_vat-y/dsh-project-memory -w
52
52
  每个版本会附带预构建 tarball,无需构建步骤即可安装:
53
53
 
54
54
  ```bash
55
- dsh plugin --profile web add /path/to/dsh-project-memory-0.1.4.tgz
55
+ dsh plugin --profile web add /path/to/dsh-project-memory-0.1.5.tgz
56
56
  ```
57
57
 
58
58
  每个被索引的项目在 `<root>/.dsh-project-memory/` 下有独立存储。如无需入库,可加入 `.gitignore`。
package/cordis.patch.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  - insert:
2
2
  - id: project-memory
3
- name: dsh-project-memory
3
+ name: "@yolk_vat-y/dsh-project-memory"
4
4
  config:
5
5
  memoryDir: .dsh-project-memory
6
6
  chunkChars: 3000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolk_vat-y/dsh-project-memory",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Persistent project memory for dsh agents: index docs (PDF/Markdown/text) and code symbols into a searchable per-workspace store, recall them with cited sources, and keep experience entries (problems -> solutions) searchable on demand.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",