Media.io Vidu Video Generator

v1.0.1

Generate high-quality AI videos from text or images with smooth transitions using Media.io Vidu Video Generator via OpenAPI.

0· 166·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for wondershare-boop/mediaio-vidu-video-generator.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Media.io Vidu Video Generator" (wondershare-boop/mediaio-vidu-video-generator) from ClawHub.
Skill page: https://clawhub.ai/wondershare-boop/mediaio-vidu-video-generator
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install mediaio-vidu-video-generator

ClawHub CLI

Package manager switcher

npx clawhub@latest install mediaio-vidu-video-generator
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description claim text-to-video/image-to-video via Media.io; the skill requires a single API_KEY and provides API definitions that target openapi.media.io endpoints. Required artifacts and the single API_KEY are proportional to the stated purpose.
Instruction Scope
SKILL.md instructs the agent to call Media.io endpoints via Skill.invoke and to poll task results. It does not instruct reading arbitrary host files, other env vars, or sending data to external endpoints outside openapi.media.io.
Install Mechanism
There is no install spec (instruction-only with a small Python helper). This is low-risk. One minor note: the bundled Python code uses the 'requests' library but no dependency/install metadata is declared; the runtime must already provide requests or installation will be required.
Credentials
Only API_KEY is required (declared in SKILL.md and _meta.json) and is used as X-API-KEY for calls to Media.io. No unrelated secrets or config paths are requested.
Persistence & Privilege
always:false and default invocation behavior. The skill does not modify other skills or system-wide config and does not request permanent presence or elevated privileges.
Assessment
This skill appears coherent and only needs your Media.io API key to call openapi.media.io. Before installing: (1) ensure you trust Media.io and are OK sending the prompts/images you provide (they will be sent to Media.io); avoid using highly sensitive data. (2) Use an API key with minimal privileges and rotate it if you later remove the skill. (3) Confirm your runtime has the Python 'requests' library or add it to your environment. (4) If you want to limit autonomous activity, consider disabling autonomous invocation or restricting which agent workflows can call this skill. (5) Optionally review the included c_api_doc_detail.json to confirm only expected Media.io endpoints are present.

Like a lobster shell, security has layers — review code before you run it.

latestvk97fpwjmxsb1nbzdz03ghrpzq58379v4
166downloads
0stars
2versions
Updated 1mo ago
v1.0.1
MIT-0
---
name: mediaio-vidu-video-generator
description: Generate AI videos using Vidu via Media.io OpenAPI. Supports text-to-video and image-to-video with high-quality motion, smooth transitions.
requires:
  env:
    - API_KEY
metadata:
  mediaio:
    emoji: ""
    priority: "P1"
    core_goal_keywords:
      - text-to-video
      - image-to-video
    trigger_keywords:
      - Vidu
      - Vidu AI
      - Vidu video generator
  publisher: Community Maintainer
  source: https://platform.media.io/docs/
---

# Vidu AI Video Generator

## Overview
This skill focuses on a single model family and calls Media.io OpenAPI via `Skill.invoke(api_name, params, api_key)`.
It includes only common APIs (`Credits`, `Task Result`) plus model-specific APIs for this skill.

## Core Trigger Keywords
Vidu, Vidu AI, Vidu video generator

## Core Goal Keywords
text-to-video, image-to-video

## Environment Variable
- `API_KEY` (required): Media.io OpenAPI key used as `X-API-KEY`.

## Quick Start
```python
import os
from scripts.skill_router import Skill

skill = Skill('scripts/c_api_doc_detail.json')
api_key = os.getenv('API_KEY', '')
result = skill.invoke('Credits', {}, api_key=api_key)
print(result)
```

## Available APIs
- `Credits` (`user-credits`)
- `Task Result` (`generation-result`)
- `Vidu Q2` (`i2v-vidu-q2`)
- `Vidu Q3` (`i2v-vidu-q3`)
- `Vidu Q3 (Text To Video)` (`t2v-vidu-q3`)

## Notes
- Use exact `api_name` from `scripts/c_api_doc_detail.json` when invoking.
- Generation APIs return `task_id`; poll with `Task Result`.

Comments

Loading comments...