dsh-session-hover-preview 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 +11 -8
- package/package.json +8 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# dsh-session-hover-preview
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
DeepSeek Harness Web 插件,为右侧当前会话历史增加 Codex 风格的消息导航条。
|
|
4
4
|
|
|
5
5
|
## 功能
|
|
6
6
|
|
|
@@ -12,19 +12,22 @@
|
|
|
12
12
|
- Markdown 只用于生成安全纯文本标签;触屏和窄屏自动禁用。
|
|
13
13
|
- 只读调用官方 `ApiProxy.sessions.history`,不会恢复或发布 Agent。
|
|
14
14
|
|
|
15
|
-
##
|
|
15
|
+
## 安装
|
|
16
|
+
|
|
17
|
+
确保本机已经安装并初始化 DeepSeek Harness,然后从 npm 官方仓库加入 Web Profile:
|
|
16
18
|
|
|
17
19
|
```bash
|
|
18
20
|
cd ~/.dsh
|
|
19
|
-
dsh plugin --profile web add
|
|
21
|
+
npm_config_registry=https://registry.npmjs.org/ npm exec @deepseek-ai/dsh -- plugin --profile web add dsh-session-hover-preview@latest
|
|
20
22
|
```
|
|
21
23
|
|
|
22
|
-
|
|
24
|
+
如果 `dsh web` 正在运行,请重启它以加载 Host 路由;随后刷新 `http://127.0.0.1:3080`。
|
|
23
25
|
|
|
24
|
-
##
|
|
26
|
+
## 更新
|
|
25
27
|
|
|
26
28
|
```bash
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
node --check lib/client.js
|
|
29
|
+
cd ~/.dsh
|
|
30
|
+
npm_config_registry=https://registry.npmjs.org/ npm exec @deepseek-ai/dsh -- plugin --profile web add dsh-session-hover-preview@latest
|
|
30
31
|
```
|
|
32
|
+
|
|
33
|
+
更新后同样需要重启 `dsh web`。
|
package/package.json
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-session-hover-preview",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Codex-style user-message navigation for the current DeepSeek Harness conversation history",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"deepseek-harness",
|
|
7
|
+
"dsh",
|
|
8
|
+
"plugin",
|
|
9
|
+
"session",
|
|
10
|
+
"message-navigation"
|
|
11
|
+
],
|
|
5
12
|
"type": "module",
|
|
6
13
|
"main": "lib/index.js",
|
|
7
14
|
"files": [
|