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

### 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)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dpaluy
- Version: 1.0.2
## 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-08T06:25:51.878Z
- Expires at: 2026-05-15T06:25:51.878Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/reve-ai)
- [Send to Agent page](https://openagent3.xyz/skills/reve-ai/agent)
- [JSON manifest](https://openagent3.xyz/skills/reve-ai/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/reve-ai/agent.md)
- [Download page](https://openagent3.xyz/downloads/reve-ai)