# Send ClawVideo Generation to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "claw-video-generator",
    "name": "ClawVideo Generation",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/benhuebner01/claw-video-generator",
    "canonicalUrl": "https://clawhub.ai/benhuebner01/claw-video-generator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/claw-video-generator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-video-generator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "ADVANCED.md",
      "scripts/example-advanced.json",
      "scripts/example-config.json",
      "scripts/generate_video.py",
      "scripts/test-video.json",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "claw-video-generator",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T16:09:50.425Z",
      "expiresAt": "2026-05-08T16:09:50.425Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-video-generator",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-video-generator",
        "contentDisposition": "attachment; filename=\"claw-video-generator-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "claw-video-generator"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/claw-video-generator"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/claw-video-generator",
    "downloadUrl": "https://openagent3.xyz/downloads/claw-video-generator",
    "agentUrl": "https://openagent3.xyz/skills/claw-video-generator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claw-video-generator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claw-video-generator/agent.md"
  }
}
```
## Documentation

### JSON2Video Pinterest Skill

Generate vertical videos (1080x1920) optimized for Pinterest using the JSON2Video API.

### Prerequisites

JSON2Video API Key: Sign up at https://json2video.com/get-api-key/
Set Environment Variable:
export JSON2VIDEO_API_KEY="your_api_key_here"

### Quick Start

Create a video using a JSON configuration file:

python3 scripts/generate_video.py --config my-video.json --wait

### Configuration Format

The video is defined as an array of scenes. Each scene contains:

PropertyTypeDescriptionimageobjectImage configuration (AI-generated or URL)voiceobjectVoice configuration (generated TTS or URL)text_overlaystringOptional text displayed on scenesubtitlesbooleanEnable/disable subtitleszoom_effectbooleanAdd Ken Burns zoom effectdurationnumberOverride scene duration (seconds)

### Image Configuration

AI-Generated Image:

{
  "image": {
    "source": "ai",
    "ai_provider": "flux-schnell",
    "ai_prompt": "A minimalist workspace with laptop..."
  }
}

Available AI Providers:

flux-pro - Highest quality, realistic images
flux-schnell - Fast generation, good quality
freepik-classic - Digital artwork style

URL-Based Image:

{
  "image": {
    "source": "https://example.com/image.jpg"
  }
}

### Voice Configuration

AI-Generated Voice (TTS):

{
  "voice": {
    "source": "generated",
    "text": "Your voiceover text here",
    "voice_id": "en-US-EmmaMultilingualNeural",
    "model": "azure"
  }
}

Provided Audio File:

{
  "voice": {
    "source": "https://example.com/voiceover.mp3"
  }
}

Note on Scene Duration: The voiceover determines scene length automatically. Each scene's duration matches its audio length. For provided audio files, ensure they match your intended scene timing.

### Complete Example

{
  "resolution": "instagram-story",
  "quality": "high",
  "cache": true,
  "scenes": [
    {
      "image": {
        "source": "ai",
        "ai_provider": "flux-schnell",
        "ai_prompt": "Affiliate marketing workspace with laptop and coffee"
      },
      "voice": {
        "source": "generated",
        "text": "Here's how to make money with affiliate marketing",
        "voice_id": "en-US-Neural2-F"
      },
      "text_overlay": "Affiliate Marketing 101",
      "subtitles": true,
      "zoom_effect": true
    }
  ]
}

### Advanced: Split Long Voiceover into Scenes

For long scripts, split into multiple scenes with shorter voice segments:

{
  "scenes": [
    {
      "image": { "source": "ai", "ai_prompt": "Hook image" },
      "voice": { "source": "generated", "text": "Attention-grabbing hook..." },
      "zoom_effect": true
    },
    {
      "image": { "source": "ai", "ai_prompt": "Step 1 image" },
      "voice": { "source": "generated", "text": "Step one is to..." },
      "zoom_effect": true
    },
    {
      "image": { "source": "ai", "ai_prompt": "CTA image" },
      "voice": { "source": "generated", "text": "Click the link in bio..." },
      "zoom_effect": false
    }
  ]
}

### Command Reference

Create video from config:

python3 scripts/generate_video.py --config video.json --wait

Create without waiting:

python3 scripts/generate_video.py --config video.json --no-wait

Check status of existing project:

python3 scripts/generate_video.py --project-id YOUR_PROJECT_ID

### Resolution Options

ResolutionDimensionsUse Caseinstagram-story1080x1920Pinterest/Reels/Stories (recommended)instagram-feed1080x1080Square postsfull-hd1920x1080Landscape YouTubehd1280x720Standard HDcustomAnyCustom dimensions

### Azure (Default - FREE, no credits consumed)

Voice format: en-US-EmmaMultilingualNeural

Common Azure voices:

en-US-EmmaMultilingualNeural - Female, natural (recommended)
en-US-GuyNeural - Male, professional
en-US-JennyNeural - Female, friendly
en-GB-SoniaNeural - British female
en-GB-RyanNeural - British male

See Microsoft Azure Speech Voices for full list.

### ElevenLabs (Premium - consumes credits)

Voice names: Natural names like Bella, Antoni, Nova, Shimmer

Available voices: Daniel, Serena, Antoni, Bella, Nova, Shimmer, and more.

See ElevenLabs Voice Library for full list.

### Security

API Key is NEVER stored in skill files
API key must be set as environment variable JSON2VIDEO_API_KEY
Script validates key exists before any API calls

### Example Files

scripts/example-config.json - Basic example with one scene
scripts/example-advanced.json - Multi-scene affiliate marketing video

### Advanced Usage

See ADVANCED.md for:

Multi-scene video architecture patterns
Image source strategies (AI vs URL vs hybrid)
Voiceover patterns and best practices
Subtitle styling options
Pinterest-specific content tips
Batch processing workflows
Credit consumption optimization

### Troubleshooting

Error: "JSON2VIDEO_API_KEY environment variable not set"
→ Run: export JSON2VIDEO_API_KEY="your_key"

Error: "Render failed"
→ Check: Image URLs are publicly accessible
→ Check: AI prompts don't violate content policies
→ Check: Audio files are valid MP3/WAV

Video takes too long
→ Enable cache: true in config
→ Use flux-schnell instead of flux-pro for faster generation
→ Pre-generate AI images and use URLs instead

### Python API Usage

For programmatic use in other scripts:

from scripts.generate_video import create_pinterest_video

scenes = [
    {
        "image": {"source": "ai", "ai_prompt": "..."},
        "voice": {"source": "generated", "text": "..."},
        "subtitles": True,
        "zoom_effect": True
    }
]

video_url = create_pinterest_video(scenes, wait=True)
print(f"Video ready: {video_url}")
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: benhuebner01
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T16:09:50.425Z
- Expires at: 2026-05-08T16:09:50.425Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/claw-video-generator)
- [Send to Agent page](https://openagent3.xyz/skills/claw-video-generator/agent)
- [JSON manifest](https://openagent3.xyz/skills/claw-video-generator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/claw-video-generator/agent.md)
- [Download page](https://openagent3.xyz/downloads/claw-video-generator)