@dai_ming/plugin-deliverables 1.0.0 → 1.0.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 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.0"
27
+ - "@dai_ming/plugin-deliverables@1.0.2"
28
28
  ```
29
29
 
30
30
  initContainer 执行顺序:
31
- 1. **Phase 3**:`npm pack @dai_ming/plugin-deliverables@1.0.0` 下载 tarball → 解压到 `/data/extensions-extra/plugin-deliverables/`
31
+ 1. **Phase 3**:`npm pack @dai_ming/plugin-deliverables@1.0.2` 下载 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
- 插件源码位于 `package/` 目录,与 claw-gateway 主仓库同步维护。更新流程:
176
+ 插件源码位于 `packages/plugin-deliverables/` 目录,与 claw-gateway 主仓库同步维护。更新流程:
177
177
 
178
178
  ```bash
179
- # 1. 修改 package/package.json 中的 version
180
- # 2. 同步更新 package/mcp-servers/deliverables.js(如有变更)
179
+ # 1. 修改 packages/plugin-deliverables/package.json 中的 version
180
+ # 2. 同步更新 packages/plugin-deliverables/mcp-servers/deliverables.js(如有变更)
181
181
  # 3. 打包并发布到 npmmirror 兼容的私有或公开 registry
182
- cd package
183
- npm publish --registry https://registry.npmmirror.com
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.0 |
190
+ | 当前 | 1.0.2 |
191
191
 
192
192
  ---
193
193
 
@@ -252,7 +252,7 @@ function handleMessage(msg) {
252
252
  send({ jsonrpc: "2.0", id: id, result: {
253
253
  protocolVersion: "2024-11-05",
254
254
  capabilities: { tools: {} },
255
- serverInfo: { name: "deliverables", version: "1.0.0" }
255
+ serverInfo: { name: "deliverables", version: "1.0.2" }
256
256
  }});
257
257
  return Promise.resolve();
258
258
 
@@ -1,6 +1,7 @@
1
1
  {
2
- "name": "deliverables",
3
- "version": "1.0.0",
2
+ "id": "plugin-deliverables",
3
+ "name": "plugin-deliverables",
4
+ "version": "1.0.2",
4
5
  "npm_package": "@dai_ming/plugin-deliverables",
5
6
  "description": "Deliverables plugin: MCP server + skill + AGENTS rules for AI-generated file uploads",
6
7
  "mcp_servers": {
@@ -26,7 +27,7 @@
26
27
  "openclaw_config": {
27
28
  "plugins": {
28
29
  "entries": {
29
- "deliverables": { "enabled": true }
30
+ "plugin-deliverables": { "enabled": true }
30
31
  }
31
32
  }
32
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dai_ming/plugin-deliverables",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "OpenClaw deliverables plugin — upload AI-generated files to OSS and return shareable preview/download links",
5
5
  "keywords": [
6
6
  "openclaw",