← Back to Skills Marketplace
bingze00000

Ai Video Gen Pro

by bingze00000 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
146
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ai-video-gen-pro
Description
Generate AI videos with Google Veo, Seedance, Wan, Grok and 40+ models via inference.sh CLI. Models: Veo 3.1, Veo 3, Seedance 1.5 Pro, Wan 2.5, Grok Imagine...
README (SKILL.md)

\r \r

AI Video Generation\r

\r Generate videos with 40+ AI models via inference.sh CLI.\r \r AI Video Generation\r \r

Quick Start\r

\r

Requires inference.sh CLI (infsh). Install instructions\r \r

infsh login\r
\r
# Generate a video with Veo\r
infsh app run google/veo-3-1-fast --input '{"prompt": "drone shot flying over a forest"}'\r
```\r
\r
\r
## Available Models\r
\r
### Text-to-Video\r
\r
| Model | App ID | Best For |\r
|-------|--------|----------|\r
| Veo 3.1 Fast | `google/veo-3-1-fast` | Fast, with optional audio |\r
| Veo 3.1 | `google/veo-3-1` | Best quality, frame interpolation |\r
| Veo 3 | `google/veo-3` | High quality with audio |\r
| Veo 3 Fast | `google/veo-3-fast` | Fast with audio |\r
| Veo 2 | `google/veo-2` | Realistic videos |\r
| **P-Video** | `pruna/p-video` | Fast, economical, with audio support |\r
| **WAN-T2V** | `pruna/wan-t2v` | Economical 480p/720p |\r
| Grok Video | `xai/grok-imagine-video` | xAI, configurable duration |\r
| Seedance 1.5 Pro | `bytedance/seedance-1-5-pro` | With first-frame control |\r
| Seedance 1.0 Pro | `bytedance/seedance-1-0-pro` | Up to 1080p |\r
\r
### Image-to-Video\r
\r
| Model | App ID | Best For |\r
|-------|--------|----------|\r
| Wan 2.5 | `falai/wan-2-5` | Animate any image |\r
| Wan 2.5 I2V | `falai/wan-2-5-i2v` | High quality i2v |\r
| **WAN-I2V** | `pruna/wan-i2v` | Economical 480p/720p |\r
| **P-Video** | `pruna/p-video` | Fast i2v with audio |\r
| Seedance Lite | `bytedance/seedance-1-0-lite` | Lightweight 720p |\r
\r
### Avatar / Lipsync\r
\r
| Model | App ID | Best For |\r
|-------|--------|----------|\r
| OmniHuman 1.5 | `bytedance/omnihuman-1-5` | Multi-character |\r
| OmniHuman 1.0 | `bytedance/omnihuman-1-0` | Single character |\r
| Fabric 1.0 | `falai/fabric-1-0` | Image talks with lipsync |\r
| PixVerse Lipsync | `falai/pixverse-lipsync` | Realistic lipsync |\r
\r
### Utilities\r
\r
| Tool | App ID | Description |\r
|------|--------|-------------|\r
| HunyuanVideo Foley | `infsh/hunyuanvideo-foley` | Add sound effects to video |\r
| Topaz Upscaler | `falai/topaz-video-upscaler` | Upscale video quality |\r
| Media Merger | `infsh/media-merger` | Merge videos with transitions |\r
\r
## Browse All Video Apps\r
\r
```bash\r
infsh app list --category video\r
```\r
\r
## Examples\r
\r
### Text-to-Video with Veo\r
\r
```bash\r
infsh app run google/veo-3-1-fast --input '{\r
  "prompt": "A timelapse of a flower blooming in a garden"\r
}'\r
```\r
\r
### Grok Video\r
\r
```bash\r
infsh app run xai/grok-imagine-video --input '{\r
  "prompt": "Waves crashing on a beach at sunset",\r
  "duration": 5\r
}'\r
```\r
\r
### Image-to-Video with Wan 2.5\r
\r
```bash\r
infsh app run falai/wan-2-5 --input '{\r
  "image_url": "https://your-image.jpg"\r
}'\r
```\r
\r
### AI Avatar / Talking Head\r
\r
```bash\r
infsh app run bytedance/omnihuman-1-5 --input '{\r
  "image_url": "https://portrait.jpg",\r
  "audio_url": "https://speech.mp3"\r
}'\r
```\r
\r
### Fabric Lipsync\r
\r
```bash\r
infsh app run falai/fabric-1-0 --input '{\r
  "image_url": "https://face.jpg",\r
  "audio_url": "https://audio.mp3"\r
}'\r
```\r
\r
### PixVerse Lipsync\r
\r
```bash\r
infsh app run falai/pixverse-lipsync --input '{\r
  "image_url": "https://portrait.jpg",\r
  "audio_url": "https://speech.mp3"\r
}'\r
```\r
\r
### Video Upscaling\r
\r
```bash\r
infsh app run falai/topaz-video-upscaler --input '{"video_url": "https://..."}'\r
```\r
\r
### Add Sound Effects (Foley)\r
\r
```bash\r
infsh app run infsh/hunyuanvideo-foley --input '{\r
  "video_url": "https://silent-video.mp4",\r
  "prompt": "footsteps on gravel, birds chirping"\r
}'\r
```\r
\r
### Merge Videos\r
\r
```bash\r
infsh app run infsh/media-merger --input '{\r
  "videos": ["https://clip1.mp4", "https://clip2.mp4"],\r
  "transition": "fade"\r
}'\r
```\r
\r
## Related Skills\r
\r
```bash\r
# Full platform skill (all 150+ apps)\r
npx skills add inference-sh/skills@infsh-cli\r
\r
# Pruna P-Video (fast & economical)\r
npx skills add inference-sh/skills@p-video\r
\r
# Google Veo specific\r
npx skills add inference-sh/skills@google-veo\r
\r
# AI avatars & lipsync\r
npx skills add inference-sh/skills@ai-avatar-video\r
\r
# Text-to-speech (for video narration)\r
npx skills add inference-sh/skills@text-to-speech\r
\r
# Image generation (for image-to-video)\r
npx skills add inference-sh/skills@ai-image-generation\r
\r
# Twitter (post videos)\r
npx skills add inference-sh/skills@twitter-automation\r
```\r
\r
Browse all apps: `infsh app list`\r
\r
## Documentation\r
\r
- [Running Apps](https://inference.sh/docs/apps/running) - How to run apps via CLI\r
- [Streaming Results](https://inference.sh/docs/api/sdk/streaming) - Real-time progress updates\r
- [Content Pipeline Example](https://inference.sh/docs/examples/content-pipeline) - Building media workflows\r
\r
Usage Guidance
This skill is an instructions-only wrapper around the inference.sh (infsh) CLI — it doesn't contain code or request secrets itself. Before using: verify you trust inference.sh (the installation link is an external raw GitHub URL), understand that 'infsh login' will create credentials with that service, and review their privacy/terms and any billing. The meta.json's 'requests' dependency and the listed pricing are extraneous for an instruction-only skill — treat them as informational but not required. When supplying image/audio URLs, avoid exposing private/local files via public URLs. If you don't trust inference.sh, don't run the install/login steps.
Capability Analysis
Type: OpenClaw Skill Name: ai-video-gen-pro Version: 1.0.0 The skill bundle provides a legitimate interface for AI video generation using the inference.sh CLI. It follows security best practices by restricting the agent's shell access to the specific 'infsh' command via the 'allowed-tools' configuration in SKILL.md. There are no signs of data exfiltration, malicious execution, or harmful prompt injection.
Capability Assessment
Purpose & Capability
The name/description advertise running 40+ models via the inference.sh CLI and the SKILL.md only instructs use of that CLI — that is coherent. Minor mismatch: _meta.json lists a Python requirement ('requests') and pricing info which are unnecessary for an instruction-only skill.
Instruction Scope
SKILL.md confines the agent to running infsh commands, listing apps, and providing input URLs for images/audio. It does not instruct reading unrelated host files or env vars. It does require the user to run 'infsh login', which is expected for a CLI that needs authentication.
Install Mechanism
There is no install spec and no code shipped with the skill (lowest risk). The README points to an external raw GitHub URL for infsh install docs — expected for an instruction-only wrapper, but installing that external CLI is an additional trust step the user must accept.
Credentials
The skill itself requests no env vars or credentials, which is proportional. However, using 'infsh login' implies providing credentials to the inference.sh service; the skill does not declare or manage those. Also note the meta.json 'requests' requirement is unnecessary and unexplained.
Persistence & Privilege
The skill is not force-installed (always: false) and uses the platform default allowing autonomous invocation. That is normal and not excessive here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ai-video-gen-pro
  3. After installation, invoke the skill by name or use /ai-video-gen-pro
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of AI Video Generation skill. - Generate AI videos with 40+ models (Veo, Seedance, Wan, Grok, and more) via inference.sh CLI. - Supports text-to-video, image-to-video, lipsync, avatar animation, upscaling, and foley sound. - Includes usage instructions, model/app IDs, and examples for each capability. - Suitable for creating social videos, marketing, explainers, product demos, and AI avatars. - Lists related skills for advanced workflows.
Metadata
Slug ai-video-gen-pro
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Ai Video Gen Pro?

Generate AI videos with Google Veo, Seedance, Wan, Grok and 40+ models via inference.sh CLI. Models: Veo 3.1, Veo 3, Seedance 1.5 Pro, Wan 2.5, Grok Imagine... It is an AI Agent Skill for Claude Code / OpenClaw, with 146 downloads so far.

How do I install Ai Video Gen Pro?

Run "/install ai-video-gen-pro" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Ai Video Gen Pro free?

Yes, Ai Video Gen Pro is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Ai Video Gen Pro support?

Ai Video Gen Pro is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Ai Video Gen Pro?

It is built and maintained by bingze00000 (@bingze00000); the current version is v1.0.0.

💬 Comments