@alpacachen/dsh-kanban 1.0.1 → 1.0.3

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 CHANGED
@@ -28,18 +28,14 @@ Turn a conversation into an actionable plan without copying tasks between your A
28
28
 
29
29
  ### 1. Install the plugin
30
30
 
31
- ```sh
32
- # From GitHub
33
- dsh plugin --profile web add github:alpacachen/dsh-kanban
34
- ```
35
-
36
- You can also install the published npm package or a local checkout:
31
+ Install the published npm package:
37
32
 
38
33
  ```sh
39
34
  dsh plugin --profile web add @alpacachen/dsh-kanban
40
- dsh plugin --profile web add ./dsh-kanban
41
35
  ```
42
36
 
37
+ GitHub source checkouts are not a supported installation method because the generated browser bundle is created only by CI for the npm package.
38
+
43
39
  Restart `dsh web` after installation so the plugin bundle is loaded. To confirm that it was added successfully:
44
40
 
45
41
  ```sh
@@ -126,7 +122,7 @@ index.js # Host plugin, tools, persistence, and HTTP endpoint
126
122
  cordis.patch.yml # DSH bundle patch
127
123
  build.mjs # Client build script
128
124
  src/client/ # React and TypeScript source
129
- lib/client.js # Prebuilt browser bundle published with the package
125
+ lib/client.js # Generated locally or by CI; included only in the npm package
130
126
  ```
131
127
 
132
128
  ## Contributing
package/README.zh.md CHANGED
@@ -28,18 +28,14 @@
28
28
 
29
29
  ### 1. 安装插件
30
30
 
31
- ```sh
32
- # 从 GitHub 安装
33
- dsh plugin --profile web add github:alpacachen/dsh-kanban
34
- ```
35
-
36
- 也可以从 npm 或本地目录安装:
31
+ 从 npm 安装已发布的包:
37
32
 
38
33
  ```sh
39
34
  dsh plugin --profile web add @alpacachen/dsh-kanban
40
- dsh plugin --profile web add ./dsh-kanban
41
35
  ```
42
36
 
37
+ 项目不支持从 GitHub 源码安装,因为生成的浏览器 bundle 只会由 CI 构建并放入 npm 包。
38
+
43
39
  安装后重启 `dsh web`,让插件 bundle 在启动时加载。可以通过下面的命令确认配置:
44
40
 
45
41
  ```sh
@@ -126,7 +122,7 @@ index.js # 宿主插件、Agent 工具、持久化与 HTTP 接口
126
122
  cordis.patch.yml # DSH bundle 补丁
127
123
  build.mjs # 客户端构建脚本
128
124
  src/client/ # React 与 TypeScript 源码
129
- lib/client.js # 随包发布的预构建浏览器 bundle
125
+ lib/client.js # 本地或 CI 生成,仅随 npm 包发布
130
126
  ```
131
127
 
132
128
  ## 参与贡献