dsh-input-traffic 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.en.md +6 -2
- package/README.md +6 -2
- package/package.json +1 -1
package/README.en.md
CHANGED
|
@@ -85,8 +85,12 @@ When editing a queued message (inline):
|
|
|
85
85
|
## Installation
|
|
86
86
|
|
|
87
87
|
```sh
|
|
88
|
-
#
|
|
89
|
-
|
|
88
|
+
# Option 1: install from npm (recommended)
|
|
89
|
+
# (the profile is a pnpm workspace root, so -w is required)
|
|
90
|
+
dsh plugin --profile web add dsh-input-traffic -w
|
|
91
|
+
|
|
92
|
+
# Option 2: assemble from git or a local path
|
|
93
|
+
# dsh plugin --profile web add /absolute/path/to/dsh-input-traffic -w
|
|
90
94
|
# (after git install, build in the profile's node_modules: npm install --legacy-peer-deps && npm run build)
|
|
91
95
|
|
|
92
96
|
# Confirm the composed tree contains the new row
|
package/README.md
CHANGED
|
@@ -85,8 +85,12 @@
|
|
|
85
85
|
## 安装
|
|
86
86
|
|
|
87
87
|
```sh
|
|
88
|
-
#
|
|
89
|
-
|
|
88
|
+
# 方式一:从 npm 安装(推荐)
|
|
89
|
+
# (profile 是 pnpm workspace root,add 需带 -w 参数)
|
|
90
|
+
dsh plugin --profile web add dsh-input-traffic -w
|
|
91
|
+
|
|
92
|
+
# 方式二:git 或本地路径组装
|
|
93
|
+
# dsh plugin --profile web add /absolute/path/to/dsh-input-traffic -w
|
|
90
94
|
# (git 安装后需在 profile 的 node_modules 内现场构建:npm install --legacy-peer-deps && npm run build)
|
|
91
95
|
|
|
92
96
|
# 确认组合树包含新行
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-input-traffic",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Three-tier (now/next/later) input steering for the DeepSeek Harness web GUI: replaces the busy-Enter queue dock with a red/yellow/green planning strip, hides the official busy-Enter behavior row, and keeps plain Enter as queue-later —a cordis client plugin, no dsh source changes, no PR required",
|
|
6
6
|
"repository": {
|