# Send Runware Image & Video 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": "runware",
    "name": "Runware Image & Video generation",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/26medias/runware",
    "canonicalUrl": "https://clawhub.ai/26medias/runware",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/runware",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=runware",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/image.py",
      "scripts/video.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "runware",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T07:38:32.705Z",
      "expiresAt": "2026-05-15T07:38:32.705Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=runware",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=runware",
        "contentDisposition": "attachment; filename=\"runware-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "runware"
      },
      "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/runware"
    },
    "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/runware",
    "downloadUrl": "https://openagent3.xyz/downloads/runware",
    "agentUrl": "https://openagent3.xyz/skills/runware/agent",
    "manifestUrl": "https://openagent3.xyz/skills/runware/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/runware/agent.md"
  }
}
```
## Documentation

### Runware

Image and video generation via Runware's unified API. Access FLUX, Stable Diffusion XL, Kling AI, and more.

### Setup

Set RUNWARE_API_KEY environment variable, or pass --api-key to scripts.

Get API key: https://runware.ai

### Text-to-Image

python3 scripts/image.py gen "a cyberpunk city at sunset, neon lights, rain" --count 2 -o ./images

Options:

--model: Model ID (default: runware:101@1 / FLUX.1 Dev)
--width/--height: Dimensions (default: 1024x1024)
--steps: Inference steps (default: 25)
--cfg: CFG scale (default: 7.5)
--count/-n: Number of images
--negative: Negative prompt
--seed: Reproducible seed
--lora: LoRA model ID
--format: png/jpg/webp

### Image-to-Image

Transform an existing image:

python3 scripts/image.py img2img ./photo.jpg "watercolor painting style" --strength 0.7

--strength: How much to transform (0=keep original, 1=ignore original)

### Upscale

python3 scripts/image.py upscale ./small.png --factor 4 -o ./large.png

### List Models

python3 scripts/image.py models

### Text-to-Video

python3 scripts/video.py gen "a cat playing with yarn, cute, high quality" --duration 5 -o ./cat.mp4

Options:

--model: Model ID (default: klingai:5@3 / Kling AI 1.6 Pro)
--duration: Length in seconds
--width/--height: Resolution (default: 1920x1080)
--negative: Negative prompt
--format: mp4/webm/mov
--max-wait: Polling timeout (default: 600s)

### Image-to-Video

Animate an image or interpolate between frames:

# Single image (becomes first frame)
python3 scripts/video.py img2vid ./start.png --prompt "zoom out slowly" -o ./animated.mp4

# Two images (first and last frame)
python3 scripts/video.py img2vid ./start.png ./end.png --duration 5

### List Video Models

python3 scripts/video.py models

### Image

ModelIDFLUX.1 Devrunware:101@1FLUX.1 Schnell (fast)runware:100@1FLUX.1 Kontextrunware:106@1Stable Diffusion XLcivitai:101055@128080RealVisXLcivitai:139562@297320

### Video

ModelIDKling AI 1.6 Proklingai:5@3Kling AI 1.5 Proklingai:3@2Runway Gen-3runwayml:1@1

Browse all: https://runware.ai/models

### Notes

Video generation is async; scripts poll until complete
Costs vary by model — check https://runware.ai/pricing
FLUX models are excellent for quality; Schnell is faster
For best video results, use descriptive prompts with motion words
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: 26medias
- 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-08T07:38:32.705Z
- Expires at: 2026-05-15T07:38:32.705Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/runware)
- [Send to Agent page](https://openagent3.xyz/skills/runware/agent)
- [JSON manifest](https://openagent3.xyz/skills/runware/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/runware/agent.md)
- [Download page](https://openagent3.xyz/downloads/runware)