$npx -y skills add T0UGH/videoclaw --skill video-i2iUse when user needs to transform or edit images using AI. Independent image-to-image command for converting reference images to different styles or content.
| 1 | # video-i2i - 图生图 |
| 2 | |
| 3 | ## Overview |
| 4 | |
| 5 | Transform or edit images using AI. Independent command for converting reference images to different styles or content. |
| 6 | |
| 7 | ## Usage |
| 8 | |
| 9 | > **注意**:如果是首次使用,确保已安装 videoclaw:`uvx videoclaw --help` |
| 10 | |
| 11 | ```bash |
| 12 | # Transform image |
| 13 | videoclaw i2i -i input.png -p "转换为九宫格角色图" -o output.png |
| 14 | |
| 15 | # Specify provider |
| 16 | videoclaw i2i -i input.png -p "描述" -o output.png --provider volcengine |
| 17 | |
| 18 | # Specify model |
| 19 | videoclaw i2i -i input.png -p "描述" -o output.png --provider gemini --model gemini-3-pro-image-preview |
| 20 | ``` |
| 21 | |
| 22 | ## Parameters |
| 23 | |
| 24 | - `--input, -i`: Input image path (required) |
| 25 | - `--prompt, -p`: Transformation prompt (required) |
| 26 | - `--output, -o`: Output file path (required) |
| 27 | - `--provider`: Model provider (optional, default: volcengine) |
| 28 | - `--model`: Model name (optional) |
| 29 | |
| 30 | ## Supported Providers |
| 31 | |
| 32 | - `volcengine` - Volcano Engine Seedream (default) |
| 33 | - `dashscope` - Alibaba Wan2.6 |
| 34 | - `gemini` - Google Gemini |
| 35 | - `mock` - For testing |
| 36 | |
| 37 | ## Examples |
| 38 | |
| 39 | ``` |
| 40 | Claude Code: videoclaw i2i -i reference.jpg -p "转换为九宫格角色图" -o character_grid.png |
| 41 | ``` |