dsh-session-hover-preview 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +11 -8
  2. package/package.json +16 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # dsh-session-hover-preview
2
2
 
3
- 本地 DeepSeek Harness Web 插件,为右侧当前会话历史增加 Codex 风格的消息导航条。
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 /Users/g/gits/for-nothing/dsh-session-hover-preview
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
- 安装后刷新现有的 `http://127.0.0.1:3080`。如果 `dsh web` 已经运行,Host 端新增路由通常需要重启该进程;单独重写 `lib/client.js` 时,只有配套构建 watcher 正在运行才会触发 client HMR。
24
+ 如果 `dsh web` 正在运行,请重启它以加载 Host 路由;随后刷新 `http://127.0.0.1:3080`。
23
25
 
24
- ## 本地检查
26
+ ## 更新
25
27
 
26
28
  ```bash
27
- node --test test/index.test.js
28
- node --check lib/index.js
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,9 +1,24 @@
1
1
  {
2
2
  "name": "dsh-session-hover-preview",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
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",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/MichaelGong/dsh-session-hover-preview.git"
17
+ },
18
+ "homepage": "https://github.com/MichaelGong/dsh-session-hover-preview#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/MichaelGong/dsh-session-hover-preview/issues"
21
+ },
7
22
  "files": [
8
23
  "lib",
9
24
  "cordis.patch.yml",