@dai_ming/plugin-deliverables 1.0.0 → 1.0.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 +8 -8
- package/openclaw-plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,11 +24,11 @@ OpenClaw 交付物插件 — 让 AI Agent 将生成的文件(文章、HTML 页
|
|
|
24
24
|
```yaml
|
|
25
25
|
# values.yaml(或 claw-gateway 管理界面的 Helm 参数)
|
|
26
26
|
installPlugins:
|
|
27
|
-
- "@dai_ming/plugin-deliverables@1.0.
|
|
27
|
+
- "@dai_ming/plugin-deliverables@1.0.1"
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
initContainer 执行顺序:
|
|
31
|
-
1. **Phase 3**:`npm pack @dai_ming/plugin-deliverables@1.0.
|
|
31
|
+
1. **Phase 3**:`npm pack @dai_ming/plugin-deliverables@1.0.1` 下载 tarball → 解压到 `/data/extensions-extra/plugin-deliverables/`
|
|
32
32
|
2. **Phase 3b**:在插件目录执行 `npm install --omit=dev`(本插件无运行时依赖,此步骤跳过)
|
|
33
33
|
3. **Phase 3e**:读取 `openclaw-plugin.json` 清单,自动:
|
|
34
34
|
- 复制 `mcp-servers/deliverables.js` → `/data/mcp-servers/deliverables.js`
|
|
@@ -173,21 +173,21 @@ fi
|
|
|
173
173
|
|
|
174
174
|
### 在 claw-gateway 仓库内发布
|
|
175
175
|
|
|
176
|
-
插件源码位于 `
|
|
176
|
+
插件源码位于 `packages/plugin-deliverables/` 目录,与 claw-gateway 主仓库同步维护。更新流程:
|
|
177
177
|
|
|
178
178
|
```bash
|
|
179
|
-
# 1. 修改
|
|
180
|
-
# 2. 同步更新
|
|
179
|
+
# 1. 修改 packages/plugin-deliverables/package.json 中的 version
|
|
180
|
+
# 2. 同步更新 packages/plugin-deliverables/mcp-servers/deliverables.js(如有变更)
|
|
181
181
|
# 3. 打包并发布到 npmmirror 兼容的私有或公开 registry
|
|
182
|
-
cd
|
|
183
|
-
npm publish --registry https://registry.
|
|
182
|
+
cd packages/plugin-deliverables
|
|
183
|
+
npm publish --registry https://registry.npmjs.org --access public
|
|
184
184
|
```
|
|
185
185
|
|
|
186
186
|
### 版本对齐建议
|
|
187
187
|
|
|
188
188
|
| claw-gateway 版本 | plugin 版本 |
|
|
189
189
|
|-------------------|-------------|
|
|
190
|
-
| 当前 | 1.0.
|
|
190
|
+
| 当前 | 1.0.1 |
|
|
191
191
|
|
|
192
192
|
---
|
|
193
193
|
|
package/openclaw-plugin.json
CHANGED
package/package.json
CHANGED