@optima-chat/optima-agent 0.4.12 → 0.4.13

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.
@@ -163,6 +163,7 @@ comfy video <图片路径> [options]
163
163
  |------|------|--------|
164
164
  | `-p, --prompt` | 运动/内容描述(最长 1500 字) | - |
165
165
  | `-n, --negative` | 负向提示词(最长 500 字) | - |
166
+ | `-o, --output <path>` | 输出目录或完整路径 | ./comfy-output |
166
167
  | `-r, --resolution` | 720P \| 1080P | 1080P |
167
168
  | `-d, --duration` | 5 \| 10 \| 15 秒 | 5 |
168
169
  | `--shot-type` | single \| multi(多镜头叙事) | single |
@@ -187,12 +188,13 @@ comfy video story.png --shot-type multi -d 15 --prompt "a day in the life"
187
188
  # 静音视频
188
189
  comfy video product.png --no-audio --prompt "360 degree rotation"
189
190
 
190
- # 读取生成的视频
191
- Read ./comfy-output/dashscope_xxx.mp4
191
+ # 指定输出路径
192
+ comfy video scene.png -o /Users/john/project/result.mp4 --prompt "camera zoom"
193
+ Read /Users/john/project/result.mp4
192
194
  ```
193
195
 
194
196
  ### 注意事项
195
197
 
196
198
  - 输入图片:360-2000px,≤10MB,推荐 1080P 比例
197
199
  - 输出规格:30fps,MP4 (H.264)
198
- - 视频自动下载到 `./comfy-output/`
200
+ - 默认输出到 `./comfy-output/`,可用 `-o` 指定
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optima-chat/optima-agent",
3
- "version": "0.4.12",
3
+ "version": "0.4.13",
4
4
  "description": "基于 Claude Agent SDK 的电商运营 AI 助手",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",