
Imagine Tasks
- 1 installs
- Updated May 18, 2026
- whitetowerai/imagine-skill
Manage vofy-cli generation jobs: list tasks, check status, print result URLs, and download completed media.
About
Inspects and recovers vofy-cli image and video generation tasks, including async job status, result URLs, and local downloads. A developer uses it to continue an async media workflow or retrieve a prior job's output.
- Always use vofy tasks --plain in agent workflows to avoid the interactive browser
- Async pattern: create with --async, list, then download by task id or prefix
Imagine Tasks by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,200 of 1,335 Generative Media skills by installs in the Skillselion catalog
- Data as of Jul 23, 2026 (Skillselion catalog sync)
npx skills add https://github.com/whitetowerai/imagine-skill --skill imagine-tasksAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | May 18, 2026 |
| Repository | whitetowerai/imagine-skill ↗ |
What it does
Manage vofy-cli generation jobs: list tasks, check status, print result URLs, and download completed media.
Files
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
1. List recent tasks with vofy tasks --plain, adding --type image or --type video when known. 2. Identify the relevant task id or unique prefix from the plain table. 3. Use vofy task <id_or_prefix> --result-url for URLs or --download-to ./output for files. 4. 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 videoThe 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 ./outputAsync 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 ./outputStatus 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.