makaron-cli 0.7.1 → 0.7.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
@@ -97,6 +97,22 @@ Returns immediately:
97
97
  npx makaron-cli chat --project <id> --image ref1.jpg --image ref2.jpg -b "use these as style reference"
98
98
  ```
99
99
 
100
+ ### With video input (MP4/MOV/WebM)
101
+
102
+ ```bash
103
+ # Upload a video and ask the agent to edit it
104
+ npx makaron-cli chat --project auto --video clip.mp4 -b "put Iron Man armor on me in this video"
105
+
106
+ # Combine video + image references
107
+ npx makaron-cli chat --project <id> --video party.mp4 --image kid.jpg -b "make this kid appear in the party"
108
+
109
+ # Multiple videos (for composition / continuation)
110
+ npx makaron-cli chat --project <id> --video clip1.mp4 --video clip2.mp4 -b "splice these into one seamless video"
111
+ ```
112
+
113
+ Video files are uploaded via signed URL (no size limit up to 200MB). Supported formats: `.mp4`, `.mov`, `.webm`.
114
+ The agent understands video content natively — it can analyze scenes, edit, extend, and compose videos.
115
+
100
116
  ### Check status (single query)
101
117
 
102
118
  ```bash
@@ -224,6 +240,9 @@ type MakaronOutput =
224
240
  | Text-to-image | "generate a cyberpunk cityscape" |
225
241
  | Video from image | "create a 5 second video of her walking" |
226
242
  | Video with model | "use seedance model, make a 5s video" |
243
+ | **Edit video** | **"put Iron Man armor on me in this video"** |
244
+ | **Compose videos** | **"combine @1 and @2 into one party video"** |
245
+ | **Extend video** | **"continue the story for 10 more seconds"** |
227
246
  | Background music | "add calm piano music" |
228
247
  | Motion design | "create an Instagram story with animated text" |
229
248
  | Multi-step | "edit the photo then make a video from it" |
package/SKILL.md CHANGED
@@ -86,20 +86,23 @@ Returns immediately:
86
86
  npx makaron-cli chat --project <id> --image ref1.jpg --image ref2.jpg -b "use these as style reference"
87
87
  ```
88
88
 
89
- ### With video input
89
+ ### With video input (edit, compose, extend)
90
90
 
91
91
  ```bash
92
- # Upload a video file — Agent can analyze, edit, or use it as reference
93
- npx makaron-cli chat --project <id> --video clip.mp4 -b "edit this video to be more cinematic"
92
+ # Upload a video and transform it — Agent understands video content natively
93
+ npx makaron-cli chat --project auto --video selfie.mp4 -b "put Iron Man armor on me"
94
94
 
95
- # Video URL (public, downloadable)
96
- npx makaron-cli chat --project auto --video https://example.com/video.mp4 -b "make a 10s highlight reel"
95
+ # Combine a person's photo with a video scene
96
+ npx makaron-cli chat --project <id> --video party.mp4 --image kid.jpg -b "make this kid join the party"
97
+
98
+ # Multiple videos — compose or splice
99
+ npx makaron-cli chat --project <id> --video clip1.mp4 --video clip2.mp4 -b "combine into one seamless video"
97
100
 
98
- # Mix images + video
99
- npx makaron-cli chat --project auto --image photo.jpg --video clip.mp4 -b "combine the photo style with this video"
101
+ # Video URL (public, downloadable)
102
+ npx makaron-cli chat --project auto --video https://example.com/dance.mp4 -b "extend this to 15 seconds"
100
103
  ```
101
104
 
102
- Supported formats: MP4, MOV, WebM (max 200MB). Videos are uploaded to the project timeline and available to the Agent for analysis and editing.
105
+ Supported formats: MP4, MOV, WebM (max 200MB, ≤15s per video for composition). Videos are uploaded to the project timeline. The Agent can analyze scenes, edit content, compose multiple clips, extend duration, and add effects — all via natural language.
103
106
 
104
107
  ### Check status (single query)
105
108
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "makaron-cli",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Talk to Makaron Agent from the terminal — create projects, edit images, generate videos",
5
5
  "type": "module",
6
6
  "bin": {
@@ -86,6 +86,24 @@ Returns immediately:
86
86
  npx makaron-cli chat --project <id> --image ref1.jpg --image ref2.jpg -b "use these as style reference"
87
87
  ```
88
88
 
89
+ ### With video input (edit, compose, extend)
90
+
91
+ ```bash
92
+ # Upload a video and transform it — Agent understands video content natively
93
+ npx makaron-cli chat --project auto --video selfie.mp4 -b "put Iron Man armor on me"
94
+
95
+ # Combine a person's photo with a video scene
96
+ npx makaron-cli chat --project <id> --video party.mp4 --image kid.jpg -b "make this kid join the party"
97
+
98
+ # Multiple videos — compose or splice
99
+ npx makaron-cli chat --project <id> --video clip1.mp4 --video clip2.mp4 -b "combine into one seamless video"
100
+
101
+ # Video URL (public, downloadable)
102
+ npx makaron-cli chat --project auto --video https://example.com/dance.mp4 -b "extend this to 15 seconds"
103
+ ```
104
+
105
+ Supported formats: MP4, MOV, WebM (max 200MB, ≤15s per video for composition). Videos are uploaded to the project timeline. The Agent can analyze scenes, edit content, compose multiple clips, extend duration, and add effects — all via natural language.
106
+
89
107
  ### Check status (single query)
90
108
 
91
109
  ```bash
@@ -184,7 +202,7 @@ type MakaronOutput =
184
202
  | { id: string; type: "text"; status: "completed"; content: string }
185
203
  | { id: string; type: "image"; status: "completed"; url: string; snapshot_id: string }
186
204
  | { id: string; type: "design"; status: "completed"; url: string; width: number; height: number; animated: boolean; duration?: number }
187
- | { id: string; type: "video"; status: "queued"|"rendering"|"completed"|"failed"; task_id: string; url?: string; elapsed_seconds?: number }
205
+ | { id: string; type: "video"; status: "queued"|"rendering"|"completed"|"failed"; task_id: string; snapshot_id?: string; url?: string; elapsed_seconds?: number; width?: number; height?: number }
188
206
  | { id: string; type: "music"; status: "queued"|"rendering"|"completed"|"failed"; task_id: string; url?: string; elapsed_seconds?: number }
189
207
  ```
190
208