vofy-cli — AI Media Generation CLI
vofy-cli is a command-line tool for Vofy, the media generation platform. It supports 21 models across image generation (text-to-image, image-to-image, inpainting) and video generation (text-to-video, image-to-video, interpolation, motion control, and more).
Prerequisites
- Install vofy-cli with
npm install -g vofy-cli@0.1.3 - User must be authenticated:
vofy login - Verify with:
vofy status
AI Agent Rules
When using vofy-cli as an AI agent, always:
- Use
--yesflag on create commands to skip interactive route picker - Use
--plainflag onvofy tasksto avoid the interactive task browser in TTY sessions - Use
--download-to <path>to save results to a known location - Never run
vofy login— it requires a browser. If auth fails, tell the user to run it manually.
Command Quick Reference
| Command | Purpose |
|---------|---------|
| vofy status | Show account summary, credits balance, plan |
| vofy image create | Create an image generation task |
| vofy video create | Create a video generation task |
| vofy task <id_or_prefix> | Show task detail, resource URLs, or download results |
| vofy tasks --plain | List recent tasks in plain text |
| vofy models | List all available models |
| vofy models <name> | Show detailed model capabilities |
| vofy billing | Open pricing or switch plans |
Typical Workflow
# 1. Check auth and credits
vofy status
# 2. Find the right model
vofy models --type image # or --type video
# 3. Create media
vofy image create --model seedream-4.5 --prompt "a sunset over mountains" --yes --download-to ./output
# 4. Check task status if needed
vofy tasks --plain --type image
vofy task <task_id> --download-to ./output
When vofy tasks runs in a TTY, it opens an interactive browser by default. Use --plain for agent-friendly output.
vofy billing opens an interactive picker in a TTY and also supports direct plan selection via vofy billing starter|pro|max or vofy billing --plan <plan>.
Related Skills
- imagine-create: Detailed media creation workflow with mode selection and flag guidance
- imagine-models: Model selection guide and detailed capability reference
- imagine-tasks: Task management — listing, detail view, downloading results
Full Command Reference
See commands-reference.md for complete flag documentation for every command.