From sundial-org-awesome-openclaw-skills-4
Generate, edit, and remix images using Reve AI API via Bun CLI script. Supports text prompts, aspect ratios, existing image edits, and multi-image remixing with <img> references. Requires API key.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Generate, edit, and remix images using Reve's AI API.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Generate, edit, and remix images using Reve's AI API.
REVE_API_KEY or REVE_AI_API_KEY environment variable set# 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
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)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@20251030Combine 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@20251030The script outputs JSON with generation details:
{
"output": "path/to/output.png",
"version": "reve-create@20250915",
"credits_used": 18,
"credits_remaining": 982
}
401 — Invalid API key402 — Insufficient credits429 — Rate limited (includes retry_after)422 — Invalid input (prompt too long, bad aspect ratio)