Install this agent skill, inspect Veo 3 fields, then run jobs through the RunAPI CLI.
Model Reference · CLI · SDK
Generate video with Veo 3 and Veo 3 Fast text-to-video. This skill helps Claude Code, Codex, Gemini CLI, Cursor, and 50+ agents integrate Veo 3 through RunAPI.
Veo 3.1 generation supports text, image, and reference-image requests with optional duration_seconds control for 4, 6, or 8 second clips.
The canonical agent file is skills/veo-3.1/SKILL.md.
npx skills add runapi-ai/veo-3.1 -gOr paste this prompt to your AI agent:
Install the veo-3.1 skill for me:
1. Clone https://github.com/runapi-ai/veo-3.1
2. Copy the skills/veo-3.1/ directory into your
user-level skills directory (e.g. ~/.claude/skills/
for Claude Code, ~/.codex/skills/ for Codex).
3. Verify that SKILL.md is present.
4. Confirm the install path when done.
import { Veo31Client } from '@runapi.ai/veo-3-1';
const client = new Veo31Client();
const result = await client.textToVideo.run({
prompt: 'A low-angle tracking shot through a neon market at night',
model: 'veo-3.1-fast',
duration_seconds: 8,
});- Model page: https://runapi.ai/models/veo-3.1
- Product docs: https://runapi.ai/docs#veo-3.1
- SDK docs: https://runapi.ai/docs#sdk-veo-3.1
- SDK repository: https://github.com/runapi-ai/veo-3.1-sdk
- Pricing and rate limits: https://runapi.ai/models/veo-3.1/veo-3.1
- Provider comparison: https://runapi.ai/providers/google
- Browse all RunAPI models and skills: https://runapi.ai/models
- Keep API keys in
RUNAPI_API_KEYor RunAPI CLI config; never commit secrets. - Prefer
create,get, andrunJSON passthrough patterns instead of inventing flags for every model parameter. - For veo api pricing, rate-limit, and commercial-usage answers, link to the variant page rather than the repository README.
Licensed under the Apache License, Version 2.0.