dsh-plugin-dev-kb 1.0.4 → 1.0.6
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 +9 -0
- package/README.md +22 -0
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.6] - 2026-08-21
|
|
4
|
+
|
|
5
|
+
- 整理:package.json 补 `selfcheck` / `rebuild-index` npm 脚本(发布前可一键自检);
|
|
6
|
+
`.gitignore` 补 `*.tgz` / `*.orig` / `*.rej` / `.vscode/`;README 新增「自检」小节。
|
|
7
|
+
|
|
8
|
+
## [1.0.5] - 2026-08-21
|
|
9
|
+
|
|
10
|
+
- README 新增「相关插件」互相引用段(列出同系列已发布插件,npm / GitHub 链接 + 一句话说明),互相引流。
|
|
11
|
+
|
|
3
12
|
## [1.0.4] - 2026-08-21
|
|
4
13
|
|
|
5
14
|
- 知识库同步至上游 master `b150a551`(2026-08-21,对应 dsh `0.1.1-rc.2`):站点镜像 104 个页面内容更新
|
package/README.md
CHANGED
|
@@ -90,6 +90,14 @@ dsh-plugin-dev-kb/
|
|
|
90
90
|
`dsh-plugin-dev-kb` 技能 → 读 `kb/meta/topics.md` 定位 → 按需 read/grep。
|
|
91
91
|
- **人侧**:直接浏览 `kb/` 目录,或打开 `kb/INDEX.md` 按 URL 对照查阅。
|
|
92
92
|
|
|
93
|
+
## 自检
|
|
94
|
+
|
|
95
|
+
发布前跑结构自检(离线、零依赖):
|
|
96
|
+
|
|
97
|
+
```powershell
|
|
98
|
+
npm run selfcheck # 结构完整 + 入口 / bundle patch 存在性
|
|
99
|
+
```
|
|
100
|
+
|
|
93
101
|
## 更新知识库
|
|
94
102
|
|
|
95
103
|
见 `kb/README.md`:重新克隆 `deepseek-ai/deepseek-harness`(master 分支),安装投影依赖后
|
|
@@ -97,6 +105,20 @@ dsh-plugin-dev-kb/
|
|
|
97
105
|
覆盖本插件的 `kb/site/`(并按发布清单同步 `kb/extra/`),再在本插件根目录运行
|
|
98
106
|
`node scripts/rebuild-index.mjs` 重建索引与 INDEX.md。
|
|
99
107
|
|
|
108
|
+
## 相关插件
|
|
109
|
+
|
|
110
|
+
本插件属于 **Pasumao 的 dsh 插件生态**,同系列已发布插件可搭配使用:
|
|
111
|
+
|
|
112
|
+
| 插件(npm) | GitHub | 说明 |
|
|
113
|
+
|---|---|---|
|
|
114
|
+
| [dsh-notify](https://www.npmjs.com/package/dsh-notify) | [GitHub 仓库](https://github.com/Pasumao/dsh-plugin-notify) | Windows 原生通知 + 系统托盘 |
|
|
115
|
+
| [dsh-plugin-choice-refresh](https://www.npmjs.com/package/dsh-plugin-choice-refresh) | [GitHub 仓库](https://github.com/Pasumao/dsh-plugin-choice-refresh) | 选择增强:重新生成选项 / 更多选项 |
|
|
116
|
+
| [dsh-plugin-image-tools](https://www.npmjs.com/package/dsh-plugin-image-tools) | [GitHub 仓库](https://github.com/Pasumao/dsh-plugin-image-tools) | 图片选择卡 + 回复内嵌图片 + 盲模型收图 |
|
|
117
|
+
| [dsh-plugin-table-zoom](https://www.npmjs.com/package/dsh-plugin-table-zoom) | [GitHub 仓库](https://github.com/Pasumao/dsh-plugin-table-zoom) | 聊天长表格浮窗查看 + 一键复制 Markdown |
|
|
118
|
+
| [dsh-plugin-workbench](https://www.npmjs.com/package/dsh-plugin-workbench) | [GitHub 仓库](https://github.com/Pasumao/dsh-plugin-workbench) | VS Code 风格文件浏览器 + 可编辑预览 |
|
|
119
|
+
|
|
120
|
+
> 本系列其余插件见 [Pasumao · dsh 插件](https://github.com/Pasumao);觉得好用欢迎到 GitHub 点 ⭐。
|
|
121
|
+
|
|
100
122
|
## AI 生成声明
|
|
101
123
|
|
|
102
124
|
知识库内容为官方文档的镜像整理(来源标注于 `kb/meta/source.json`),索引与
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-plugin-dev-kb",
|
|
3
3
|
"description": "DeepSeek Harness (dsh) 插件开发知识库:官方文档站点的完整 Markdown 镜像(中英双语 168 页)+ 仓库补充文档(52 篇)+ 主题导航与搜索索引,以 dsh-plugin-dev-kb 技能形式让 agent 在插件开发任务中自动加载定位文档。纯数据插件,无运行时依赖。",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"exports": {
|
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
"CHANGELOG.md",
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"selfcheck": "node scripts/selfcheck.mjs",
|
|
23
|
+
"rebuild-index": "node scripts/rebuild-index.mjs"
|
|
24
|
+
},
|
|
21
25
|
"keywords": [
|
|
22
26
|
"dsh",
|
|
23
27
|
"dsh-plugin",
|