veogent 1.1.4 → 1.4.0
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 +163 -265
- package/index.js +358 -411
- package/package.json +1 -1
- package/skills/SKILL.md +314 -734
- package/.claude/worktrees/vigorous-hellman/README.md +0 -370
- package/.claude/worktrees/vigorous-hellman/api.js +0 -43
- package/.claude/worktrees/vigorous-hellman/auth.js +0 -77
- package/.claude/worktrees/vigorous-hellman/config.js +0 -37
- package/.claude/worktrees/vigorous-hellman/device-auth.js +0 -128
- package/.claude/worktrees/vigorous-hellman/flow-extractor.js +0 -66
- package/.claude/worktrees/vigorous-hellman/index.js +0 -1398
- package/.claude/worktrees/vigorous-hellman/package-lock.json +0 -3269
- package/.claude/worktrees/vigorous-hellman/package.json +0 -41
- package/.claude/worktrees/vigorous-hellman/skills/SKILL.md +0 -819
package/README.md
CHANGED
|
@@ -10,8 +10,6 @@ Perfectly engineered for **Agentic workflows** — enabling tools like OpenClaw,
|
|
|
10
10
|
|
|
11
11
|
## 🚀 Installation
|
|
12
12
|
|
|
13
|
-
Install globally via npm:
|
|
14
|
-
|
|
15
13
|
```bash
|
|
16
14
|
npm install -g veogent
|
|
17
15
|
```
|
|
@@ -20,23 +18,12 @@ npm install -g veogent
|
|
|
20
18
|
|
|
21
19
|
## 🔐 Authentication
|
|
22
20
|
|
|
23
|
-
Veogent CLI supports both browser callback login and headless device-code login.
|
|
24
|
-
|
|
25
21
|
```bash
|
|
26
|
-
# Browser callback
|
|
27
|
-
veogent login
|
|
28
|
-
|
|
29
|
-
#
|
|
30
|
-
veogent
|
|
31
|
-
|
|
32
|
-
# Verify your session
|
|
33
|
-
veogent status
|
|
34
|
-
|
|
35
|
-
# Clear saved credentials
|
|
36
|
-
veogent logout
|
|
37
|
-
|
|
38
|
-
# Setup/update Google Flow Key (required for video generation & AI features)
|
|
39
|
-
veogent setup-flow --flowkey "ya29.a0AW..." --tier "PAYGATE_TIER_TWO"
|
|
22
|
+
veogent login # Browser callback (desktop)
|
|
23
|
+
veogent login --device # Device-code flow (VM/server/headless — recommended for AI Agents)
|
|
24
|
+
veogent status # Verify session
|
|
25
|
+
veogent logout # Clear credentials
|
|
26
|
+
veogent setup-flow --flowkey "ya29.a0AW..." --tier "PAYGATE_TIER_TWO" # Setup Flow Key
|
|
40
27
|
```
|
|
41
28
|
|
|
42
29
|
---
|
|
@@ -45,323 +32,234 @@ veogent setup-flow --flowkey "ya29.a0AW..." --tier "PAYGATE_TIER_TWO"
|
|
|
45
32
|
|
|
46
33
|
| Flag | Description |
|
|
47
34
|
|------|-------------|
|
|
48
|
-
| `--json` | Output machine-readable JSON only
|
|
49
|
-
| `--agent-safe` | Agent-safe mode — no emoji, no browser surprises, stable output
|
|
35
|
+
| `--json` | Output machine-readable JSON only |
|
|
36
|
+
| `--agent-safe` | Agent-safe mode — no emoji, no browser surprises, stable JSON output |
|
|
50
37
|
| `--version` | Print CLI version |
|
|
51
38
|
|
|
52
|
-
> **For AI Agents:** always use `--agent-safe`
|
|
39
|
+
> **For AI Agents:** always use `--agent-safe` for deterministic, parseable JSON output.
|
|
53
40
|
|
|
54
41
|
---
|
|
55
42
|
|
|
56
|
-
##
|
|
57
|
-
|
|
58
|
-
### Authentication & Configuration
|
|
59
|
-
|
|
60
|
-
| Command | Description |
|
|
61
|
-
|---------|-------------|
|
|
62
|
-
| `login` | Login via browser callback or device code flow (`--device`) |
|
|
63
|
-
| `logout` | Clear saved credentials and remove stored access token |
|
|
64
|
-
| `status` | Show authenticated user, Flow Key details, and payment tier |
|
|
65
|
-
| `setup-flow` | Setup/update Google Flow Key and User Payment Tier |
|
|
66
|
-
|
|
67
|
-
### Capabilities & Discovery
|
|
68
|
-
|
|
69
|
-
| Command | Description |
|
|
70
|
-
|---------|-------------|
|
|
71
|
-
| `capabilities` | Get backend capabilities (models, orientations, speed modes, queue) |
|
|
72
|
-
| `image-models` | List supported image generation models |
|
|
73
|
-
| `video-models` | List supported video generation models |
|
|
74
|
-
| `image-materials` | Get all available Image Material styles (e.g., `CINEMATIC`, `PIXAR_3D`) |
|
|
75
|
-
| `custom-prompts` | Get custom prompt templates and story directives |
|
|
76
|
-
|
|
77
|
-
### Project Management
|
|
43
|
+
## 🎯 Recommended Workflow
|
|
78
44
|
|
|
79
|
-
|
|
80
|
-
|---------|-------------|
|
|
81
|
-
| `projects` | List all your available projects |
|
|
82
|
-
| `project <id>` | Get details for a specific project |
|
|
83
|
-
| `create-project-description` | Generate AI description for a new project based on keywords |
|
|
84
|
-
| `create-project` | Create a new project with name, keywords, material, chapters, objects |
|
|
85
|
-
|
|
86
|
-
### Chapters
|
|
45
|
+
### How VEOGENT Works — The Mental Model
|
|
87
46
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
### Characters
|
|
95
|
-
|
|
96
|
-
| Command | Description |
|
|
97
|
-
|---------|-------------|
|
|
98
|
-
| `characters <projectId>` | Get all characters with readiness info |
|
|
99
|
-
| `edit-character` | Update character description or edit generated image via AI prompt |
|
|
100
|
-
|
|
101
|
-
### Scenes
|
|
102
|
-
|
|
103
|
-
| Command | Description |
|
|
104
|
-
|---------|-------------|
|
|
105
|
-
| `scenes <projectId> <chapterId>` | Get all scenes for a chapter |
|
|
106
|
-
| `create-scene` | Create new scene(s) from text content |
|
|
107
|
-
| `add-scene` | Add a single scene to a chapter with a user prompt |
|
|
108
|
-
| `edit-scene` | Edit scene image prompt via AI assistance |
|
|
109
|
-
|
|
110
|
-
### Generation Requests (Project-scoped)
|
|
111
|
-
|
|
112
|
-
> **Clarification:** `request` (singular) = **CREATE** a new job. `requests` (plural) = **LIST** existing jobs.
|
|
113
|
-
|
|
114
|
-
| Command | Description |
|
|
115
|
-
|---------|-------------|
|
|
116
|
-
| `request` | Create a generation job: `GENERATE_IMAGES`, `GENERATE_VIDEO`, or `VIDEO_UPSCALE` |
|
|
117
|
-
| `requests` | List generation requests (filterable by project, chapter, status) |
|
|
118
|
-
| `upscale` | Upscale video output for a scene (shortcut for `request --type VIDEO_UPSCALE`) |
|
|
119
|
-
| `assets <projectId> <chapterId> <sceneId> <type>` | Check generated assets history/status for a scene |
|
|
47
|
+
```
|
|
48
|
+
--idea → AI Description → Project + Characters (reference images)
|
|
49
|
+
→ Chapter Content (storyboard)
|
|
50
|
+
→ Scenes → Images → Videos
|
|
51
|
+
```
|
|
120
52
|
|
|
121
|
-
|
|
53
|
+
**Key concept:** Names in `--idea` become character/entity references with image URIs at project level. These references ensure visual consistency across ALL chapters and scenes.
|
|
122
54
|
|
|
123
|
-
|
|
55
|
+
### The Pipeline (4 Phases)
|
|
124
56
|
|
|
125
|
-
|
|
126
|
-
|---------|-------------|
|
|
127
|
-
| `gen-image` | Generate image from text prompt (standalone, 3 credits, Imagen 3.5) |
|
|
128
|
-
| `gen-video` | Generate video from text prompt (standalone, 5 credits, Veo 3.1 Fast) |
|
|
129
|
-
| `standalone-requests` | List your standalone generation requests |
|
|
130
|
-
| `standalone-request <requestId>` | Get details of a specific standalone request |
|
|
57
|
+
#### Phase 1: Create Project
|
|
131
58
|
|
|
132
|
-
|
|
59
|
+
```bash
|
|
60
|
+
veogent create-project \
|
|
61
|
+
--idea "Bella the white Bichon Frisé CEO in pink blazer, two Doberman bodyguards Rex and Duke in black suits, luxury shopping mall Saigon" \
|
|
62
|
+
--name "Boss Babe in Fur" \
|
|
63
|
+
--lang English \
|
|
64
|
+
--material CINEMATIC
|
|
65
|
+
```
|
|
133
66
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
| `workflow-status` | Full workflow snapshot: scenes + requests + assets (agent helper) |
|
|
138
|
-
| `scene-materialization-status` | Check how many scenes have materialized for a chapter |
|
|
139
|
-
| `failed-requests` | List failed/error/rejected requests for a project/chapter (agent helper) |
|
|
140
|
-
| `wait-images` | Poll until all image requests in a chapter finish |
|
|
141
|
-
| `wait-videos` | Poll until all video requests in a chapter finish |
|
|
142
|
-
| `queue-status` | Get current queue/concurrency status |
|
|
67
|
+
**What happens internally:**
|
|
68
|
+
1. CLI calls `/app/description` with --idea → VEOGENT AI generates rich story description
|
|
69
|
+
2. CLI calls `/app/project` with rich description → creates project + auto-generates characters from names in --idea
|
|
143
70
|
|
|
144
|
-
|
|
71
|
+
**--idea rules:**
|
|
72
|
+
- ✅ Include specific names: characters, locations, props, creatures
|
|
73
|
+
- ✅ Include visual traits: "white Bichon Frisé", "black suits", "luxury mall"
|
|
74
|
+
- ❌ Don't be vague: "cute dog shopping" → VEOGENT will invent random characters
|
|
75
|
+
- Names in --idea → appear in storyboard → VEOGENT creates reference images → consistent across N chapters
|
|
145
76
|
|
|
146
|
-
|
|
147
|
-
|---------|-------------|
|
|
148
|
-
| `generate-yt-metadata` | Generate YouTube metadata (Title, Description, Tags) for a chapter |
|
|
149
|
-
| `generate-yt-thumbnail` | Trigger request to generate a YouTube thumbnail |
|
|
150
|
-
| `yt-thumbnails <projectId> <chapterId>` | Get generated YouTube thumbnails for a chapter |
|
|
77
|
+
#### Phase 2: Generate Storyboard + Scenes
|
|
151
78
|
|
|
152
|
-
|
|
79
|
+
```bash
|
|
80
|
+
# Get chapter ID
|
|
81
|
+
veogent chapters <projectId>
|
|
153
82
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
| `obtain-flow` | Auto-extract Flow Token (ya29.) using secure browser overlay |
|
|
157
|
-
| `flow-credits` | Fetch plan and credit info from Google AI Sandbox |
|
|
83
|
+
# Generate storyboard (VEOGENT AI writes scene scripts from the rich description)
|
|
84
|
+
veogent create-chapter-content --project <projectId> --chapter <chapterId> --scenes 5
|
|
158
85
|
|
|
159
|
-
|
|
86
|
+
# Create scenes from storyboard scripts
|
|
87
|
+
veogent create-scene --project <projectId> --chapter <chapterId> \
|
|
88
|
+
--content "Scene 1 script..." "Scene 2 script..." "Scene 3..." "Scene 4..." "Scene 5..." \
|
|
89
|
+
--flowkey
|
|
160
90
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
| `skill` | Print the native Agent SKILL.md guide |
|
|
91
|
+
# Wait for materialization (~30s per scene)
|
|
92
|
+
# Poll: veogent scenes <projectId> <chapterId> until all scenes have scriptSegment
|
|
164
93
|
|
|
165
|
-
|
|
94
|
+
# Wait for characters to be ready (reference images generated)
|
|
95
|
+
# Poll: veogent characters <projectId> until characterReadiness.allReady === true
|
|
96
|
+
```
|
|
166
97
|
|
|
167
|
-
|
|
98
|
+
--lang English --material CINEMATIC --scenes 5 --wait
|
|
99
|
+
```
|
|
168
100
|
|
|
169
|
-
|
|
101
|
+
#### Phase 3: Generate Images + Videos
|
|
170
102
|
|
|
171
103
|
```bash
|
|
172
|
-
#
|
|
173
|
-
veogent
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
--
|
|
181
|
-
--objects '{"name":"Hero","entityType":"character","description":"brave knight"}'
|
|
104
|
+
# Generate all images
|
|
105
|
+
veogent batch-request --type GENERATE_IMAGES \
|
|
106
|
+
--project <projectId> --chapter <chapterId> --all \
|
|
107
|
+
--orientation VERTICAL --wait
|
|
108
|
+
|
|
109
|
+
# Generate all videos
|
|
110
|
+
veogent batch-request --type GENERATE_VIDEO \
|
|
111
|
+
--project <projectId> --chapter <chapterId> --all \
|
|
112
|
+
--orientation VERTICAL --wait
|
|
182
113
|
```
|
|
183
114
|
|
|
184
|
-
|
|
115
|
+
#### Phase 4: QA + Fix Loop
|
|
185
116
|
|
|
186
117
|
```bash
|
|
187
|
-
#
|
|
188
|
-
veogent
|
|
189
|
-
|
|
190
|
-
# View characters (includes readiness info)
|
|
191
|
-
veogent characters <projectId>
|
|
192
|
-
# → { characters: [...], characterReadiness: {total, ready, allReady} }
|
|
193
|
-
|
|
194
|
-
# Check scene materialization status
|
|
195
|
-
veogent scene-materialization-status --project <projectId> --chapter <chapterId>
|
|
196
|
-
# → { expectedScenes, materializedScenes, status: "PROCESSING"|"READY"|"EMPTY" }
|
|
197
|
-
|
|
198
|
-
# Create scenes from narrative scripts
|
|
199
|
-
veogent create-scene --project <projectId> --chapter <chapterId> --flowkey \
|
|
200
|
-
--content "The T-Rex looks up at the sky." "A meteor shower begins."
|
|
201
|
-
|
|
202
|
-
# Add a single scene to an existing chapter
|
|
203
|
-
veogent add-scene --project <projectId> --chapter <chapterId> \
|
|
204
|
-
--userprompt "A meteor crashes into the city." --after-scene-id <sceneId>
|
|
118
|
+
# Check results
|
|
119
|
+
veogent workflow-status --project <projectId> --chapter <chapterId>
|
|
205
120
|
```
|
|
206
121
|
|
|
207
|
-
|
|
122
|
+
**edit-scene has TWO modes:**
|
|
208
123
|
|
|
124
|
+
**Mode A — Edit storyboard/prompt only (no image regen):**
|
|
209
125
|
```bash
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
# Edit character image directly via AI
|
|
215
|
-
veogent edit-character --project <projectId> --character "drelenavance" \
|
|
216
|
-
--userprompt "change outfit to dark leather jacket" --editimage
|
|
126
|
+
veogent edit-scene --project X --chapter Y --scene Z \
|
|
127
|
+
--prompt "Bella walks through mall on all four paws"
|
|
128
|
+
# Then trigger image gen separately:
|
|
129
|
+
veogent request --type GENERATE_IMAGES --project X --chapter Y --scene Z --orientation VERTICAL --wait
|
|
217
130
|
```
|
|
131
|
+
Use when image is fundamentally wrong (wrong character, wrong scene).
|
|
218
132
|
|
|
219
|
-
|
|
220
|
-
|
|
133
|
+
**Mode B — Regenerate image directly (with request ID):**
|
|
221
134
|
```bash
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
135
|
+
veogent edit-scene --project X --chapter Y --scene Z \
|
|
136
|
+
--prompt "adjust lighting to warmer tones" --request <requestId> --wait
|
|
137
|
+
```
|
|
138
|
+
Use when image is close but needs a tweak (lighting, pose, angle).
|
|
225
139
|
|
|
226
|
-
|
|
227
|
-
|
|
140
|
+
**Fix video only (image is fine):**
|
|
141
|
+
```bash
|
|
142
|
+
veogent request --type GENERATE_VIDEO \
|
|
143
|
+
--project X --chapter Y --scene Z \
|
|
144
|
+
--videomodel veo_3_1_fast --orientation VERTICAL --wait
|
|
145
|
+
```
|
|
228
146
|
|
|
229
|
-
|
|
230
|
-
veogent request --type "GENERATE_VIDEO" --project <projectId> --chapter <chapterId> --scene <sceneId> --videomodel "veo_3_1_fast"
|
|
147
|
+
---
|
|
231
148
|
|
|
232
|
-
|
|
233
|
-
veogent upscale --project <projectId> --chapter <chapterId> --scene <sceneId> --orientation "VERTICAL" --resolution "VIDEO_RESOLUTION_4K"
|
|
234
|
-
```
|
|
149
|
+
## 📋 Command Reference
|
|
235
150
|
|
|
236
|
-
###
|
|
151
|
+
### Authentication & Config
|
|
237
152
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
153
|
+
| Command | Description |
|
|
154
|
+
|---------|-------------|
|
|
155
|
+
| `login [--device]` | Login (use `--device` for headless/VM) |
|
|
156
|
+
| `logout` | Clear credentials |
|
|
157
|
+
| `status` | Show session + Flow Key details |
|
|
158
|
+
| `setup-flow` | Setup Google Flow Key + payment tier |
|
|
241
159
|
|
|
242
|
-
|
|
243
|
-
veogent gen-video --prompt "A cat playing piano" --orientation "HORIZONTAL"
|
|
160
|
+
### Project Management
|
|
244
161
|
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
162
|
+
| Command | Description |
|
|
163
|
+
|---------|-------------|
|
|
164
|
+
| `projects` | List all projects |
|
|
165
|
+
| `project <id>` | Get project details |
|
|
166
|
+
| `create-project` | Create project (auto-generates description from `--idea`) |
|
|
249
167
|
|
|
250
|
-
###
|
|
168
|
+
### Chapters & Scenes
|
|
251
169
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
170
|
+
| Command | Description |
|
|
171
|
+
|---------|-------------|
|
|
172
|
+
| `chapters <projectId>` | List chapters |
|
|
173
|
+
| `recent-chapters` | Recently updated chapters |
|
|
174
|
+
| `create-chapter-content` | Generate storyboard (scene scripts) via AI |
|
|
175
|
+
| `scenes <projectId> <chapterId>` | List scenes |
|
|
176
|
+
| `create-scene` | Create scenes from script content |
|
|
177
|
+
| `edit-scene` | Edit scene storyboard/prompt, or regenerate image with `--request` |
|
|
255
178
|
|
|
256
|
-
|
|
257
|
-
veogent requests --project <projectId> --chapter <chapterId> --status FAILED
|
|
179
|
+
### Characters
|
|
258
180
|
|
|
259
|
-
|
|
260
|
-
|
|
181
|
+
| Command | Description |
|
|
182
|
+
|---------|-------------|
|
|
183
|
+
| `characters <projectId>` | List characters + readiness (reference images) |
|
|
184
|
+
| `edit-character` | Update character description or edit image via AI |
|
|
261
185
|
|
|
262
|
-
|
|
263
|
-
veogent workflow-status --project <projectId> --chapter <chapterId>
|
|
186
|
+
### Generation
|
|
264
187
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
188
|
+
| Command | Description |
|
|
189
|
+
|---------|-------------|
|
|
190
|
+
| `request` | Create a single generation job (`GENERATE_IMAGES` / `GENERATE_VIDEO`) |
|
|
191
|
+
| `batch-request` | Batch generation for multiple/all scenes (`--all`) |
|
|
192
|
+
| `requests` | List existing generation jobs |
|
|
193
|
+
| `failed-requests` | List failed requests for a chapter |
|
|
194
|
+
| `wait-images` | Poll until all image jobs finish |
|
|
195
|
+
| `wait-videos` | Poll until all video jobs finish |
|
|
196
|
+
| `queue-status` | Current queue/concurrency status |
|
|
268
197
|
|
|
269
|
-
|
|
270
|
-
veogent queue-status
|
|
198
|
+
### Monitoring
|
|
271
199
|
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
200
|
+
| Command | Description |
|
|
201
|
+
|---------|-------------|
|
|
202
|
+
| `scene-status` | Scene-level image+video status with asset URLs |
|
|
203
|
+
| `workflow-status` | Full snapshot: scenes + requests + assets (best for agents) |
|
|
275
204
|
|
|
276
|
-
### YouTube
|
|
205
|
+
### YouTube
|
|
277
206
|
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
207
|
+
| Command | Description |
|
|
208
|
+
|---------|-------------|
|
|
209
|
+
| `generate-yt-metadata` | Generate Title/Description/Tags for a chapter |
|
|
210
|
+
| `generate-yt-thumbnail` | Trigger thumbnail generation |
|
|
211
|
+
| `yt-thumbnails` | Get generated thumbnails |
|
|
281
212
|
|
|
282
|
-
|
|
283
|
-
veogent generate-yt-thumbnail --project <projectId> --chapter <chapterId>
|
|
213
|
+
### Utility
|
|
284
214
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
215
|
+
| Command | Description |
|
|
216
|
+
|---------|-------------|
|
|
217
|
+
| `image-materials` | List available image styles |
|
|
218
|
+
| `custom-prompts` | List custom prompt templates |
|
|
219
|
+
| `obtain-flow` | Auto-extract Flow Token via browser |
|
|
220
|
+
| `flow-credits` | Check plan + credit info |
|
|
221
|
+
| `skill` | Print the Agent SKILL.md guide |
|
|
288
222
|
|
|
289
223
|
---
|
|
290
224
|
|
|
291
|
-
##
|
|
225
|
+
## Video Speed Modes
|
|
226
|
+
|
|
227
|
+
| Mode | Flag | Use case |
|
|
228
|
+
|------|------|----------|
|
|
229
|
+
| `normal` | `--speed normal` (default) | Most scenes |
|
|
230
|
+
| `timelapse` | `--speed timelapse` | Sunrise, cooking montage, traffic |
|
|
231
|
+
| `slowmotion` | `--speed slowmotion` | Impact, water splash, dramatic reveal |
|
|
292
232
|
|
|
293
|
-
|
|
233
|
+
---
|
|
294
234
|
|
|
295
|
-
|
|
296
|
-
- `scene.latestImageRequestId`: latest image-related request (`GENERATE_IMAGES` / `EDIT_IMAGE`) regardless of status.
|
|
297
|
-
- `scene.latestVideoRequestId`: latest video request (`GENERATE_VIDEO`) regardless of status.
|
|
298
|
-
- `scene.latestSuccessfulImageRequestId`: latest image-related request in `COMPLETED`.
|
|
299
|
-
- `scene.latestSuccessfulVideoRequestId`: latest video request in `COMPLETED`.
|
|
235
|
+
## Chained Video (endScene)
|
|
300
236
|
|
|
301
|
-
|
|
302
|
-
- Prefer `veogent scene-status` or `veogent workflow-status` for chapter-level overview.
|
|
303
|
-
- Use `latestSuccessful*` fields when selecting canonical output URIs.
|
|
237
|
+
Smooth transition between two consecutive scenes:
|
|
304
238
|
|
|
305
|
-
|
|
239
|
+
```bash
|
|
240
|
+
veogent request --type GENERATE_VIDEO --project X --chapter Y --scene sceneA \
|
|
241
|
+
--endscene sceneB --videomodel veo_3_1_fast --orientation VERTICAL
|
|
242
|
+
```
|
|
306
243
|
|
|
307
|
-
|
|
308
|
-
- **`requests`** — Lists existing jobs (GET). Filterable with `--project`, `--chapter`, `--status`, `--limit`.
|
|
244
|
+
Uses sceneA's image as start frame, sceneB's image as end frame. Both scenes must have successful images. Only works with `veo_3_1_fast`.
|
|
309
245
|
|
|
310
|
-
|
|
246
|
+
---
|
|
311
247
|
|
|
312
|
-
|
|
313
|
-
|---|---|---|
|
|
314
|
-
| **Image** | `request --type GENERATE_IMAGES --project ... --chapter ... --scene ...` | `gen-image --prompt "prompt"` |
|
|
315
|
-
| **Video** | `request --type GENERATE_VIDEO --project ... --chapter ... --scene ...` | `gen-video --prompt "prompt"` |
|
|
316
|
-
| **List** | `requests` | `standalone-requests` |
|
|
317
|
-
| **Detail** | `requests` with filters | `standalone-request <id>` |
|
|
248
|
+
## Concurrency
|
|
318
249
|
|
|
319
|
-
|
|
250
|
+
Maximum **5** concurrent requests. If queue is full (E10071), CLI auto-retries once after 30s.
|
|
320
251
|
|
|
321
|
-
|
|
322
|
-
|---------|----------|
|
|
323
|
-
| `requests` | Check individual request status, filter by status/project |
|
|
324
|
-
| `scene-status` | Quick overview of image+video status per scene in a chapter |
|
|
325
|
-
| `workflow-status` | Full snapshot with scenes + requests + assets (best for agents) |
|
|
326
|
-
| `failed-requests` | Quick list of all failed/error/rejected requests for a chapter |
|
|
327
|
-
| `wait-images` / `wait-videos` | Block until all generation jobs finish (polling) |
|
|
252
|
+
`batch-request` respects the 5-request limit with inter-batch throttling.
|
|
328
253
|
|
|
329
254
|
---
|
|
330
255
|
|
|
331
256
|
## 🤖 For AI Agents
|
|
332
257
|
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
- `veogent custom-prompts`
|
|
339
|
-
- `veogent image-materials` (default fallback: `CINEMATIC`)
|
|
340
|
-
2. Prepare story input (arc, summary, key notes).
|
|
341
|
-
3. Generate project description:
|
|
342
|
-
- `veogent create-project-description ...`
|
|
343
|
-
4. Create project from generated payload.
|
|
344
|
-
5. Create chapter content with scene count:
|
|
345
|
-
- `veogent create-chapter-content --scenes <sceneCount>`
|
|
346
|
-
- Rule: each scene maps to ~8s clip.
|
|
347
|
-
6. Create scenes from returned script list:
|
|
348
|
-
- `veogent create-scene --project <projectId> --chapter <chapterId> --content "scene 1" "scene 2" ... --flowkey`
|
|
349
|
-
7. Wait for character generation completion (`imageUri` required for all characters):
|
|
350
|
-
- `veogent characters <projectId>` — check `characterReadiness.allReady === true`
|
|
351
|
-
- `veogent scene-materialization-status --project <projectId> --chapter <chapterId>` — verify `status: "READY"`
|
|
352
|
-
- If missing/fail: inspect `veogent requests --limit 20`, recover via `veogent edit-character`.
|
|
353
|
-
8. Generate scene images:
|
|
354
|
-
- `veogent request --type "GENERATE_IMAGES" ...`
|
|
355
|
-
- If image is reported wrong, decode image to Base64 and send to AI reviewer for evaluation.
|
|
356
|
-
- If mismatch persists, fix via:
|
|
357
|
-
- `veogent edit-scene --userprompt "..."` (prompt refinement), or
|
|
358
|
-
- `veogent edit-scene --request <requestId> ...` (direct edit on prior generated image)
|
|
359
|
-
9. Generate video only after matching-orientation image exists successfully:
|
|
360
|
-
- `veogent request --type "GENERATE_VIDEO" ...`
|
|
361
|
-
|
|
362
|
-
> 📖 For the full detailed guide with all commands, options tables, and examples, see **[`skills/SKILL.md`](./skills/SKILL.md)**.
|
|
363
|
-
|
|
364
|
-
**Concurrency:** maximum **5** requests can be processed simultaneously. If the API reports maximum limit reached, treat it as queue-full (wait/retry), not a hard failure.
|
|
258
|
+
- Always use `--agent-safe` flag
|
|
259
|
+
- Use `workflow-status` for the most complete snapshot
|
|
260
|
+
- Character reference images are created from names found in `--idea` and scene scripts
|
|
261
|
+
- Use character NAMES only in prompts — never describe appearance (reference images define it)
|
|
262
|
+
- See **[`skills/SKILL.md`](./skills/SKILL.md)** for the full agent guide
|
|
365
263
|
|
|
366
264
|
---
|
|
367
265
|
|