dsh-tabbit 0.2.1 → 0.2.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.
- package/README.md +7 -0
- package/README.zh-CN.md +7 -0
- package/index.js +1 -1
- package/package.json +1 -1
- package/skills/tabbit-browser/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -53,6 +53,13 @@ Run `dsh --version` again to confirm DSH works.
|
|
|
53
53
|
|
|
54
54
|
### 2. Install the tabbit-browser plugin
|
|
55
55
|
|
|
56
|
+
```sh
|
|
57
|
+
dsh plugin --profile web add dsh-tabbit
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
This installs the npm package (prebuilt tarball, CDN-served). If the npm
|
|
61
|
+
registry is unreachable, fall back to the GitHub source:
|
|
62
|
+
|
|
56
63
|
```sh
|
|
57
64
|
dsh plugin --profile web add github:Tabbit-Browser/dsh-tabbit
|
|
58
65
|
```
|
package/README.zh-CN.md
CHANGED
|
@@ -53,6 +53,13 @@ npm install -g @deepseek-ai/dsh
|
|
|
53
53
|
|
|
54
54
|
### 2. 安装 tabbit-browser 插件
|
|
55
55
|
|
|
56
|
+
```sh
|
|
57
|
+
dsh plugin --profile web add dsh-tabbit
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
这会安装 npm 包(预构建 tarball,走 CDN 分发)。如果无法访问 npm
|
|
61
|
+
registry,可以回退到 GitHub 源:
|
|
62
|
+
|
|
56
63
|
```sh
|
|
57
64
|
dsh plugin --profile web add github:Tabbit-Browser/dsh-tabbit
|
|
58
65
|
```
|
package/index.js
CHANGED
|
@@ -34,7 +34,7 @@ export function formatUpdateNotice({ currentVersion, latestVersion, changelog })
|
|
|
34
34
|
'> Show the offered version and these changes to the user, then ask whether to update now.',
|
|
35
35
|
'> If they agree, tell them to rerun the install command below over the current install and restart the DSH session afterwards:',
|
|
36
36
|
'> ```bash',
|
|
37
|
-
'> dsh plugin --profile web add
|
|
37
|
+
'> dsh plugin --profile web add dsh-tabbit',
|
|
38
38
|
'> ```',
|
|
39
39
|
`> If they decline, call \`tabbit_plugin_update\` with \`dismiss: "${latestVersion}"\`, then continue the task.`,
|
|
40
40
|
]
|
package/package.json
CHANGED
|
@@ -74,7 +74,7 @@ update now. If they agree, tell them to rerun the install command below over
|
|
|
74
74
|
the current install, then restart the DSH session afterwards:
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
dsh plugin --profile web add
|
|
77
|
+
dsh plugin --profile web add dsh-tabbit
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
If they decline, call `tabbit_plugin_update` with `dismiss` set to the offered
|