$npx -y skills add T0UGH/videoclaw --skill video-t2iUse when user needs to generate images from text prompts. Independent text-to-image command for creating single images outside of video creation workflow.
| 1 | # video-t2i - 文生图 |
| 2 | |
| 3 | ## Overview |
| 4 | |
| 5 | Generate images from text prompts. Independent command that does not require project context. |
| 6 | |
| 7 | ## Usage |
| 8 | |
| 9 | > **注意**:如果是首次使用,确保已安装 videoclaw:`uvx videoclaw --help` |
| 10 | |
| 11 | ```bash |
| 12 | # Generate image |
| 13 | videoclaw t2i -p "九宫格角色图:正面、侧面、背面..." -o output.png |
| 14 | |
| 15 | # Specify provider |
| 16 | videoclaw t2i -p "描述" -o output.png --provider volcengine |
| 17 | |
| 18 | # Specify model |
| 19 | videoclaw t2i -p "描述" -o output.png --provider gemini --model gemini-3-pro-image-preview |
| 20 | ``` |
| 21 | |
| 22 | ## Parameters |
| 23 | |
| 24 | - `--prompt, -p`: Text prompt (required) |
| 25 | - `--output, -o`: Output file path (required) |
| 26 | - `--provider`: Model provider (optional, default: volcengine) |
| 27 | - `--model`: Model name (optional) |
| 28 | |
| 29 | ## Supported Providers |
| 30 | |
| 31 | - `volcengine` - Volcano Engine Seedream (default) |
| 32 | - `dashscope` - Alibaba Wan2.6 |
| 33 | - `gemini` - Google Gemini |
| 34 | - `mock` - For testing |
| 35 | |
| 36 | ## Examples |
| 37 | |
| 38 | ``` |
| 39 | Claude Code: videoclaw t2i -p "一个可爱的小黄人角色,正面视图" -o character.png |
| 40 | ``` |