{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skill-veo3-video-gen",
    "name": "Skill Veo3 Video Gen",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Zero2Ai-hub/skill-veo3-video-gen",
    "canonicalUrl": "https://clawhub.ai/Zero2Ai-hub/skill-veo3-video-gen",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/skill-veo3-video-gen",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-veo3-video-gen",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/generate_video.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/skill-veo3-video-gen"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/skill-veo3-video-gen",
    "agentPageUrl": "https://openagent3.xyz/skills/skill-veo3-video-gen/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-veo3-video-gen/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-veo3-video-gen/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Veo 3 Video Generation (Gemini API)",
        "body": "Use the bundled script to generate an MP4 from a text prompt."
      },
      {
        "title": "Generate (text → video)",
        "body": "uv run {baseDir}/scripts/generate_video.py \\\n  --prompt \"A close up of ...\" \\\n  --filename \"out.mp4\" \\\n  --model \"veo-3.1-generate-preview\" \\\n  --aspect-ratio \"9:16\" \\\n  --poll-seconds 10"
      },
      {
        "title": "Generate a longer video by stitching segments",
        "body": "Veo commonly outputs ~8s clips per request. Use --segments to generate multiple clips and concatenate them with ffmpeg.\n\nImportant: This skill sends one prompt per segment (one Veo request per segment). Use --base-style to keep style consistent across segments.\n\nuv run {baseDir}/scripts/generate_video.py \\\n  --prompt \"Same scene, consistent style...\" \\\n  --filename \"out-24s.mp4\" \\\n  --model \"veo-3.1-generate-preview\" \\\n  --aspect-ratio \"9:16\" \\\n  --segments 3 \\\n  --segment-style continuation\n\nOptions:\n\n--base-style \"...\": prepended to every segment prompt (recommended).\n--segment-prompt \"...\" (repeatable): provide one prompt per segment (overrides --prompt).\n--segment-style continuation (default): appends continuity instructions per segment (only when using --prompt).\n--segment-style same: uses the exact same prompt for each segment (only when using --prompt).\n--use-last-frame: for segment >=2, extract previous segment last frame and pass it as lastFrame for continuity.\n--emit-segment-media: print MEDIA: for each segment as it finishes (useful for progress).\n--keep-segments: keep intermediate *.segXX.mp4 files.\n--reference-image path.jpg (repeatable): guide generation with product/style references."
      },
      {
        "title": "Requirements",
        "body": "GEMINI_API_KEY env var (or --api-key).\nffmpeg on PATH when using --segments > 1."
      },
      {
        "title": "Troubleshooting",
        "body": "429/RESOURCE_EXHAUSTED: API key has no quota/billing for video.\n503/UNAVAILABLE: model overloaded; retry later."
      },
      {
        "title": "Rate Limits & Fallback",
        "body": "Veo 3.1 has per-minute quota — on 429, wait 60s and retry\nFallback to Runway Gen4 Turbo when rate-limited (use skill-runway-video-gen)\nKey location: GEMINI_API_KEY env var (second key in openclaw.json)"
      },
      {
        "title": "Rate Limits & Fallback",
        "body": "Veo 3.1 has per-minute quota — on 429, wait 60s and retry\nFallback to Runway Gen4 Turbo when rate-limited (use skill-runway-video-gen)\nKey location: GEMINI_API_KEY env var"
      }
    ],
    "body": "Veo 3 Video Generation (Gemini API)\n\nUse the bundled script to generate an MP4 from a text prompt.\n\nGenerate (text → video)\nuv run {baseDir}/scripts/generate_video.py \\\n  --prompt \"A close up of ...\" \\\n  --filename \"out.mp4\" \\\n  --model \"veo-3.1-generate-preview\" \\\n  --aspect-ratio \"9:16\" \\\n  --poll-seconds 10\n\nGenerate a longer video by stitching segments\n\nVeo commonly outputs ~8s clips per request. Use --segments to generate multiple clips and concatenate them with ffmpeg.\n\nImportant: This skill sends one prompt per segment (one Veo request per segment). Use --base-style to keep style consistent across segments.\n\nuv run {baseDir}/scripts/generate_video.py \\\n  --prompt \"Same scene, consistent style...\" \\\n  --filename \"out-24s.mp4\" \\\n  --model \"veo-3.1-generate-preview\" \\\n  --aspect-ratio \"9:16\" \\\n  --segments 3 \\\n  --segment-style continuation\n\n\nOptions:\n\n--base-style \"...\": prepended to every segment prompt (recommended).\n--segment-prompt \"...\" (repeatable): provide one prompt per segment (overrides --prompt).\n--segment-style continuation (default): appends continuity instructions per segment (only when using --prompt).\n--segment-style same: uses the exact same prompt for each segment (only when using --prompt).\n--use-last-frame: for segment >=2, extract previous segment last frame and pass it as lastFrame for continuity.\n--emit-segment-media: print MEDIA: for each segment as it finishes (useful for progress).\n--keep-segments: keep intermediate *.segXX.mp4 files.\n--reference-image path.jpg (repeatable): guide generation with product/style references.\nRequirements\nGEMINI_API_KEY env var (or --api-key).\nffmpeg on PATH when using --segments > 1.\nTroubleshooting\n429/RESOURCE_EXHAUSTED: API key has no quota/billing for video.\n503/UNAVAILABLE: model overloaded; retry later.\nRate Limits & Fallback\nVeo 3.1 has per-minute quota — on 429, wait 60s and retry\nFallback to Runway Gen4 Turbo when rate-limited (use skill-runway-video-gen)\nKey location: GEMINI_API_KEY env var (second key in openclaw.json)\nRate Limits & Fallback\nVeo 3.1 has per-minute quota — on 429, wait 60s and retry\nFallback to Runway Gen4 Turbo when rate-limited (use skill-runway-video-gen)\nKey location: GEMINI_API_KEY env var"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Zero2Ai-hub/skill-veo3-video-gen",
    "publisherUrl": "https://clawhub.ai/Zero2Ai-hub/skill-veo3-video-gen",
    "owner": "Zero2Ai-hub",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/skill-veo3-video-gen",
    "downloadUrl": "https://openagent3.xyz/downloads/skill-veo3-video-gen",
    "agentUrl": "https://openagent3.xyz/skills/skill-veo3-video-gen/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-veo3-video-gen/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-veo3-video-gen/agent.md"
  }
}