dsh-edit-diff 0.1.0 → 0.1.1
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 +0 -1
- package/package.json +15 -3
package/README.md
CHANGED
|
@@ -62,7 +62,6 @@ dsh plugin --profile web remove dsh-edit-diff
|
|
|
62
62
|
- **UI 挂载点**:接管 keyed 槽位 `tool.call.toolview` 的 `edit` 与 `write` 两个 key。
|
|
63
63
|
- **遮蔽而非冲突**:注册时显式传 `priority: -1`(低于内置 `file-mutation-toolview` 的默认 0),用更低优先级遮蔽默认渲染,而不是在同一优先级上 clash。
|
|
64
64
|
- **无构建**:`lib/client.js` 是按 DSH client bundle 产出的注册式模块,源码即产物,改完即用。
|
|
65
|
-
- **硬性约束**:`lib/client.js` 的 `factory` 必须以 `return module.exports` 结尾,否则模块导出为 `undefined`,DSH 启动即 fail-loud。
|
|
66
65
|
- 纯 JavaScript 单文件,不引入任何额外 npm 依赖(diff 算法就地内联)。
|
|
67
66
|
|
|
68
67
|
## License
|
package/package.json
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-edit-diff",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "质量 diff
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "质量 diff:接管 edit/write 工具卡片,行级去重与行内高亮,消除相同内容在删除与新增两区的重复,标准可安装的 dsh 客户端插件",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"deepseek-harness",
|
|
7
|
+
"dsh",
|
|
8
|
+
"dsh-plugin",
|
|
9
|
+
"diff",
|
|
10
|
+
"edit",
|
|
11
|
+
"review"
|
|
12
|
+
],
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/better-er/dsh-edit-diff.git"
|
|
16
|
+
},
|
|
5
17
|
"type": "module",
|
|
6
18
|
"main": "lib/index.js",
|
|
7
19
|
"exports": {
|
|
@@ -28,4 +40,4 @@
|
|
|
28
40
|
"docs/"
|
|
29
41
|
],
|
|
30
42
|
"license": "MIT"
|
|
31
|
-
}
|
|
43
|
+
}
|