skills$openclaw/reve-ai
dpaluy1.0k

by dpaluy

reve-ai – OpenClaw Skill

reve-ai is an OpenClaw Skills integration for coding workflows. 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.

1.0k stars2.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namereve-ai
descriptionGenerate, 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. OpenClaw Skills integration.
ownerdpaluy
repositorydpaluy/reve-ai
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @dpaluy/reve-ai
last updatedFeb 7, 2026

Maintainer

dpaluy

dpaluy

Maintains reve-ai in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
scripts
reve.ts
7.2 KB
_meta.json
461 B
AGENTS.md
1.3 KB
SKILL.md
2.4 KB
SKILL.md

name: reve-ai description: 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.

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

Commands

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)
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

- Bun runtime - `REVE_API_KEY` or `REVE_AI_API_KEY` environment variable set

FAQ

How do I install reve-ai?

Run openclaw add @dpaluy/reve-ai in your terminal. This installs reve-ai into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/dpaluy/reve-ai. Review commits and README documentation before installing.