dsh-skill-picker 0.3.0 → 0.3.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 +13 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
# dsh-skill-picker
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/dsh-skill-picker)
|
|
4
|
+
[](https://github.com/a735624258/dsh-skill-picker/blob/main/LICENSE)
|
|
5
|
+
|
|
3
6
|
> **技能记不住名字?官方 `/` 补全靠前缀记忆,装了几十个技能谁记得住?** 本插件让技能**看得见、翻得到、选得快**——点一下 ⚡,全部技能带描述排在你面前,搜索、点选、插入,随消息发出自动加载。
|
|
4
7
|
|
|
8
|
+
## ⚡ 快速安装(npm)
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
dsh plugin --profile web add dsh-skill-picker
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
一条命令从 npm 装好并注入 DSH web profile,重启 `dsh web`(或刷新页面)即生效。源码方式见下文 [安装](#安装)。
|
|
15
|
+
|
|
5
16
|
DSH Web GUI 的技能选择器:在输入框(composer)工具行右侧加一个按钮,点开可以**搜索并点选已安装的技能**,选中后把官方 `/技能名` 手势插入发送框——随消息一起发出,DSH 原生机制就会自动加载该技能并执行。WorkBuddy 式"把技能写进发送框"的交互,DeepSeek Harness 复刻版。
|
|
6
17
|
|
|
7
18
|
English: A skill picker for the DSH Web GUI — a button in the composer's right tool row opens a searchable list of installed skills; picking one inserts the official `/skill-name` gesture into the draft, so DSH's native user-invocation path loads the skill with your message.
|
|
8
19
|
|
|
9
|
-
当前版本:**v0.3.
|
|
20
|
+
当前版本:**v0.3.1**(`/` 补全 + ⚡ 面板均支持**拼音搜索**)
|
|
10
21
|
|
|
11
22
|
## 为什么用它(vs 官方 `/` 补全)
|
|
12
23
|
|
|
@@ -84,6 +95,7 @@ DSH 的 [dsh-tool-skill](https://github.com/deepseek-ai/deepseek-harness) 在 `a
|
|
|
84
95
|
|
|
85
96
|
## 更新日志
|
|
86
97
|
|
|
98
|
+
- **v0.3.1**:README 顶部新增一键快速安装命令(`dsh plugin --profile web add dsh-skill-picker`)与 npm 版本/许可徽章
|
|
87
99
|
- **v0.3.0**:拼音搜索——`/` 补全与 ⚡ 面板的搜索目标加入技能名/描述的拼音全拼(带空格+连打)与首字母索引,中文技能可拼音直搜(如 `ji yi` →「备份记忆」)
|
|
88
100
|
- **v0.2.2**:⚡ 弹层键盘导航(↑↓ 选择、Enter 插入、Esc 关闭);按钮盒 28×28 → 24×24,闪电图标 16px(对应 issue #1、#4)
|
|
89
101
|
- **v0.2.1**:声明兼容 DSH 0.1.2-alpha 系列
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-skill-picker",
|
|
3
3
|
"description": "DSH Web GUI skill picker: a button beside the composer opens a searchable list of installed skills; picking one inserts the official `/skill-name` gesture into the input box, so the skill loads with your message (WorkBuddy-style skill invocation for DeepSeek Harness).",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"exports": {
|