โ† All skills
Tencent SkillHub ยท Developer Tools

Reve AI Image Generation

Generate, edit, and remix images using the Reve AI API. Use when creating images from text prompts, editing existing images with instructions, or combining/remixing multiple reference images. Requires REVE_API_KEY or REVE_AI_API_KEY environment variable.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Generate, edit, and remix images using the Reve AI API. Use when creating images from text prompts, editing existing images with instructions, or combining/remixing multiple reference images. Requires REVE_API_KEY or REVE_AI_API_KEY environment variable.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
AGENTS.md, SKILL.md, scripts/reve.ts

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

Reve AI Image Generation

Generate, edit, and remix images using Reve's AI API.

Prerequisites

Bun runtime REVE_API_KEY or REVE_AI_API_KEY environment variable set

Quick Usage

# Generate image from prompt bun scripts/reve.ts create "A beautiful sunset over mountains" -o sunset.png # With aspect ratio bun scripts/reve.ts create "A cat in space" -o cat.png --aspect 16:9 # Edit existing image bun scripts/reve.ts edit "Add dramatic clouds" -i photo.png -o edited.png # Remix multiple images bun scripts/reve.ts remix "Person from <img>0</img> in scene from <img>1</img>" -i person.png -i background.png -o remix.png

create

Generate a new image from a text prompt. Options: -o, --output FILE โ€” Output file path (default: output.png) --aspect RATIO โ€” Aspect ratio: 16:9, 9:16, 3:2, 2:3, 4:3, 3:4, 1:1 (default: 3:2) --version VER โ€” Model version (default: latest)

edit

Modify an existing image using text instructions. Options: -i, --input FILE โ€” Input image to edit (required) -o, --output FILE โ€” Output file path (default: output.png) --version VER โ€” Model version: latest, latest-fast, reve-edit@20250915, reve-edit-fast@20251030

remix

Combine text prompts with reference images. Use <img>N</img> in prompt to reference images by index (0-based). Options: -i, --input FILE โ€” Reference images (can specify multiple, up to 6) -o, --output FILE โ€” Output file path (default: output.png) --aspect RATIO โ€” Aspect ratio (same options as create) --version VER โ€” Model version: latest, latest-fast, reve-remix@20250915, reve-remix-fast@20251030

Constraints

Max prompt length: 2560 characters Max reference images for remix: 6 Valid aspect ratios: 16:9, 9:16, 3:2, 2:3, 4:3, 3:4, 1:1

Response

The script outputs JSON with generation details: { "output": "path/to/output.png", "version": "reve-create@20250915", "credits_used": 18, "credits_remaining": 982 }

Errors

401 โ€” Invalid API key 402 โ€” Insufficient credits 429 โ€” Rate limited (includes retry_after) 422 โ€” Invalid input (prompt too long, bad aspect ratio)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • AGENTS.md Docs
  • scripts/reve.ts Scripts