An advanced AI generation skill that leverages Agnes AI's models to create, edit, and synthesize high-resolution images and videos seamlessly.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install agnes-image-video
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install agnes-image-video using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Agnes Image and Video Generation Skill is a highly capable integration designed for Openclaw Skills to connect seamlessly with the Agnes AI multimodal API. It empowers AI agents to generate high-quality visual assets using the Agnes-Image-2.0-Flash and Agnes-Video-V2.0 models. Offering unlimited free access to text, image, and video generation endpoints without requiring registration hurdles like credit cards, this skill serves as a cost-effective powerhouse for developers and automated workflows.
With full OpenAI API compatibility, this skill handles advanced generation tasks. It supports classic text-to-image conversion, intelligent image-to-image transformations, multi-image composition, and highly configurable text-to-video or image-to-video rendering. Integrating this within your library of Openclaw Skills unlocks incredible creative capabilities for your AI coding agents and automated workflows.
/v1/images/generations). It passes the selected model, prompt text, target resolution, and tags (such as img2img for reference-based editing) to instantly receive a structured JSON response containing the generated image URL./v1/videos. Since rendering is asynchronous, the skill receives a task_id and enters an automated polling loop./v1/videos/{task_id} status endpoint at regular intervals (e.g., every 5 seconds). Once the status transition goes from queued or in_progress to completed, it extracts and returns the finalized MP4 URL.Visit the Agnes API Platform to sign up and retrieve your free API key.
Set your retrieved API key as an environment variable so your Openclaw Skills workspace can access it securely:
export AGNES_API_KEY="your-api-key-here"
Ensure you have httpx installed in your Python environment:
pip install httpx
You can use the built-in script included in the skill to run generations directly:
# Generate an Image
python scripts/generate.py --mode image --prompt "A cute golden retriever puppy smiling on a sunny lawn" --size 1024x1024
# Generate a Video
python scripts/generate.py --mode video --prompt "A cat walking on the beach at sunset" --height 768 --width 1152 --num_frames 121 --frame_rate 24
| Parameter | Type | Required | Description |
|---|---|---|---|
model |
string | Yes | Must be "agnes-image-2.0-flash" |
prompt |
string | Yes | Text description for generation |
size |
string | No | Output resolution: "1024x1024" (default), "1024x768", "768x1024" |
tags |
array | No | Set to ["img2img"] for image-to-image modifications |
extra_body.image |
array | Yes (for img2img) | List of input image URLs to process or compose |
| Parameter | Type | Required | Description |
|---|---|---|---|
model |
string | Yes | Must be "agnes-video-v2.0" |
prompt |
string | Yes | Text representation of the video scene |
num_frames |
integer | No | Total frames. Must satisfy 8n+1 and be <= 441 |
frame_rate |
number | No | Target FPS (1 to 60, recommended: 24) |
To ensure API compliance, num_frames must follow the 8n + 1 schema. Common valid values include:
Video Duration Calculation: Duration (seconds) = num_frames / frame_rate (e.g., 121 frames / 24 FPS = ~5.04 seconds).
extra_body.image to direct the model to combine visual elements from separate references into a unified output.queued, in_progress, completed, failed) and robustly reports rendering progress.Loading
An automated multi-language license compliance scanner powered by Trivy that identifies high-risk dependencies and exports reports in various formats.

An automated utility to sort supply chain document packages, extract images, run OCR, verify dimension tolerance consistency, and generate comprehensive quality review reports.

Herdsman Skill is an integration package that exposes local LLMs, TTS, ASR, OCR, and image generation capabilities to external agent platforms.

An end-to-end RAG platform workbench for Windows to automate Docker verification, admin bootstrapping, knowledge base CRUD, and parsing lifecycles.

An intelligent, context-aware Douyin short video script optimizer that adapts to brand identity, extracts guidelines from brief images, and enforces platform compliance.

An advanced Gaokao admission helper skill designed to fetch historical score lines, calculate admission probabilities, and search for universities and majors.








































