Vofy Task Management
Every vofy image create and vofy video create command creates a task. Use task commands to inspect async jobs, recover result URLs, and download completed media.
Fast Path
- List recent tasks with
vofy tasks --plain, adding--type imageor--type videowhen known. - Identify the relevant task id or unique prefix from the plain table.
- Use
vofy task <id_or_prefix> --result-urlfor URLs or--download-to ./outputfor files. - If the task is still pending or processing, report the current status and the exact command to run later.
List Tasks
Always use --plain in agent workflows because vofy tasks opens an interactive browser in TTY sessions.
vofy tasks --plain
vofy tasks --plain --type image
vofy tasks --plain --type video
The CLI does not support server-side status filtering. Filter the plain output locally when looking for completed or failed tasks.
Inspect or Download One Task
vofy task accepts a full id or unique prefix.
vofy task <task_id_or_prefix>
vofy task <task_id_or_prefix> --result-url
vofy task <task_id_or_prefix> --download-to ./output
Async Pattern
vofy video create --model veo-3.1 --prompt "epic cinematic scene" --duration 8 --async --yes
vofy tasks --plain --type video
vofy task <task_id_or_prefix> --download-to ./output
Status Handling
completed: print URLs or download with--download-to.pending/processing: report the status and avoid polling unless asked.failed: inspect details and suggest a corrected create command.
Common Actions
- Previous output URL:
vofy task <id_or_prefix> --result-url - Download output: inspect the task id, then run
vofy task <id_or_prefix> --download-to ./output - Retry failed task: re-run the original create command; there is no retry command.