# Send Video Intelligence 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": "video-intel",
    "name": "Video Intelligence",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/nogara/video-intel",
    "canonicalUrl": "https://clawhub.ai/nogara/video-intel",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/video-intel",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=video-intel",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "scripts/video-intel.sh",
      "scripts/parse-vtt.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "video-intel",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:16:04.410Z",
      "expiresAt": "2026-05-06T12:16:04.410Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=video-intel",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=video-intel",
        "contentDisposition": "attachment; filename=\"video-intel-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "video-intel"
      },
      "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/video-intel"
    },
    "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/video-intel",
    "downloadUrl": "https://openagent3.xyz/downloads/video-intel",
    "agentUrl": "https://openagent3.xyz/skills/video-intel/agent",
    "manifestUrl": "https://openagent3.xyz/skills/video-intel/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/video-intel/agent.md"
  }
}
```
## Documentation

### video-intel

Downloads videos and extracts transcripts using yt-dlp (captions) with OpenAI Whisper fallback.

### Required Dependencies

DependencyPurposeRequired?yt-dlpFetch captions and download audio/video✅ Alwayspython3Parse VTT/SRT caption files✅ AlwayscurlCall OpenAI Whisper API✅ For Whisper fallbackffmpegExtract audio from TikTok/Instagram/X⚠️ Non-YouTube onlyOPENAI_API_KEYAuthenticate with OpenAI Whisper API⚠️ Only if captions unavailable

Install binaries:

# yt-dlp
curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o ~/bin/yt-dlp && chmod +x ~/bin/yt-dlp

# ffmpeg (Debian/Ubuntu)
sudo apt install ffmpeg

### ⚠️ Privacy Notice — OpenAI Audio Upload

When captions are unavailable (common for TikTok, Instagram, X), the script downloads the audio and uploads it to OpenAI's transcription API (https://api.openai.com/v1/audio/transcriptions). This means:

Audio content leaves your machine and is sent to OpenAI
Requires OPENAI_API_KEY to be set
If you don't want external transmission: don't set OPENAI_API_KEY, or use a local transcription model

YouTube videos almost always have captions and will not trigger an upload.

### Script

~/.openclaw/skills/video-intel/scripts/video-intel.sh

### Get transcript

~/.openclaw/skills/video-intel/scripts/video-intel.sh transcript <url>

YouTube: uses built-in captions/auto-subs (fast, no audio download or external upload)
TikTok/Instagram/X: downloads audio → uploads to OpenAI Whisper for transcription
Preferred language: --lang pt for Portuguese

### Get video info

~/.openclaw/skills/video-intel/scripts/video-intel.sh info <url>

### List available caption tracks

~/.openclaw/skills/video-intel/scripts/video-intel.sh captions <url>

### Download video

~/.openclaw/skills/video-intel/scripts/video-intel.sh download <url> [--format audio|720p|best]

### After getting transcript

Summary: Summarize in 3-5 bullet points
Key quotes: Extract most notable quotes
Full summary: Write a paragraph summary with context
Translation: Translate to the user's language if different

### Notes

YouTube auto-captions are usually available even without ffmpeg
TikTok/Instagram/X require ffmpeg for audio extraction
Large videos (>25MB audio) may hit OpenAI's file size limit — use --format audio to get a smaller mp3
Output cached in /tmp/video-intel/ by default
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nogara
- Version: 1.0.1
## 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-04-29T12:16:04.410Z
- Expires at: 2026-05-06T12:16:04.410Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/video-intel)
- [Send to Agent page](https://openagent3.xyz/skills/video-intel/agent)
- [JSON manifest](https://openagent3.xyz/skills/video-intel/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/video-intel/agent.md)
- [Download page](https://openagent3.xyz/downloads/video-intel)