@baomihuatop/popcorn-cli 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.
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: popcorn-cli
3
3
  description: popcorn-cli 是爆米花系统(Popcorn)的官方 CLI。需要生图、生视频时即可使用本工具:通过本地 API Key 查询可用模型、异步提交任务、按会话/任务 ID 查询最终结果。当要在终端、脚本或 Agent 流程中完成生图/生视频相关能力时使用此 skill。
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  metadata:
6
6
  openclaw:
7
7
  requires:
@@ -9,7 +9,7 @@ import { buildTaskCommand } from '../src/commands/task.js';
9
9
  program
10
10
  .name('popcorn-cli')
11
11
  .description('Popcorn CLI - 通过 API Key 调用 Popcorn 后端服务')
12
- .version('0.1.0');
12
+ .version('0.1.1');
13
13
 
14
14
  program.addCommand(buildConfigCommand());
15
15
  program.addCommand(buildImageCommand());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baomihuatop/popcorn-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Popcorn CLI - 通过 API Key 提交生图任务",
5
5
  "type": "module",
6
6
  "bin": {
@@ -27,7 +27,7 @@ npm install -g @baomihuatop/popcorn-cli
27
27
  popcorn-cli --version
28
28
  ```
29
29
 
30
- 预期输出为版本号(例如 `0.1.0`)。返回该输出即视为安装成功。
30
+ 预期输出为版本号(例如 `0.1.1`)。返回该输出即视为安装成功。
31
31
 
32
32
  `command not found` 时,检查 `npm bin -g` 输出的目录是否在 `PATH` 中。
33
33