{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/reve-ai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reve-ai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "AGENTS.md",
      "SKILL.md",
      "scripts/reve.ts"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/reve-ai",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Reve AI Image Generation",
        "body": "Generate, edit, and remix images using Reve's AI API."
      },
      {
        "title": "Prerequisites",
        "body": "Bun runtime\nREVE_API_KEY or REVE_AI_API_KEY environment variable set"
      },
      {
        "title": "Quick Usage",
        "body": "# Generate image from prompt\nbun scripts/reve.ts create \"A beautiful sunset over mountains\" -o sunset.png\n\n# With aspect ratio\nbun scripts/reve.ts create \"A cat in space\" -o cat.png --aspect 16:9\n\n# Edit existing image\nbun scripts/reve.ts edit \"Add dramatic clouds\" -i photo.png -o edited.png\n\n# Remix multiple images\nbun scripts/reve.ts remix \"Person from <img>0</img> in scene from <img>1</img>\" -i person.png -i background.png -o remix.png"
      },
      {
        "title": "create",
        "body": "Generate a new image from a text prompt.\n\nOptions:\n\n-o, --output FILE — Output file path (default: output.png)\n--aspect RATIO — Aspect ratio: 16:9, 9:16, 3:2, 2:3, 4:3, 3:4, 1:1 (default: 3:2)\n--version VER — Model version (default: latest)"
      },
      {
        "title": "edit",
        "body": "Modify an existing image using text instructions.\n\nOptions:\n\n-i, --input FILE — Input image to edit (required)\n-o, --output FILE — Output file path (default: output.png)\n--version VER — Model version: latest, latest-fast, reve-edit@20250915, reve-edit-fast@20251030"
      },
      {
        "title": "remix",
        "body": "Combine text prompts with reference images. Use <img>N</img> in prompt to reference images by index (0-based).\n\nOptions:\n\n-i, --input FILE — Reference images (can specify multiple, up to 6)\n-o, --output FILE — Output file path (default: output.png)\n--aspect RATIO — Aspect ratio (same options as create)\n--version VER — Model version: latest, latest-fast, reve-remix@20250915, reve-remix-fast@20251030"
      },
      {
        "title": "Constraints",
        "body": "Max prompt length: 2560 characters\nMax reference images for remix: 6\nValid aspect ratios: 16:9, 9:16, 3:2, 2:3, 4:3, 3:4, 1:1"
      },
      {
        "title": "Response",
        "body": "The script outputs JSON with generation details:\n\n{\n  \"output\": \"path/to/output.png\",\n  \"version\": \"reve-create@20250915\",\n  \"credits_used\": 18,\n  \"credits_remaining\": 982\n}"
      },
      {
        "title": "Errors",
        "body": "401 — Invalid API key\n402 — Insufficient credits\n429 — Rate limited (includes retry_after)\n422 — Invalid input (prompt too long, bad aspect ratio)"
      }
    ],
    "body": "Reve AI Image Generation\n\nGenerate, edit, and remix images using Reve's AI API.\n\nPrerequisites\nBun runtime\nREVE_API_KEY or REVE_AI_API_KEY environment variable set\nQuick Usage\n# Generate image from prompt\nbun scripts/reve.ts create \"A beautiful sunset over mountains\" -o sunset.png\n\n# With aspect ratio\nbun scripts/reve.ts create \"A cat in space\" -o cat.png --aspect 16:9\n\n# Edit existing image\nbun scripts/reve.ts edit \"Add dramatic clouds\" -i photo.png -o edited.png\n\n# Remix multiple images\nbun scripts/reve.ts remix \"Person from <img>0</img> in scene from <img>1</img>\" -i person.png -i background.png -o remix.png\n\nCommands\ncreate\n\nGenerate a new image from a text prompt.\n\nOptions:\n\n-o, --output FILE — Output file path (default: output.png)\n--aspect RATIO — Aspect ratio: 16:9, 9:16, 3:2, 2:3, 4:3, 3:4, 1:1 (default: 3:2)\n--version VER — Model version (default: latest)\nedit\n\nModify an existing image using text instructions.\n\nOptions:\n\n-i, --input FILE — Input image to edit (required)\n-o, --output FILE — Output file path (default: output.png)\n--version VER — Model version: latest, latest-fast, reve-edit@20250915, reve-edit-fast@20251030\nremix\n\nCombine text prompts with reference images. Use <img>N</img> in prompt to reference images by index (0-based).\n\nOptions:\n\n-i, --input FILE — Reference images (can specify multiple, up to 6)\n-o, --output FILE — Output file path (default: output.png)\n--aspect RATIO — Aspect ratio (same options as create)\n--version VER — Model version: latest, latest-fast, reve-remix@20250915, reve-remix-fast@20251030\nConstraints\nMax prompt length: 2560 characters\nMax reference images for remix: 6\nValid aspect ratios: 16:9, 9:16, 3:2, 2:3, 4:3, 3:4, 1:1\nResponse\n\nThe script outputs JSON with generation details:\n\n{\n  \"output\": \"path/to/output.png\",\n  \"version\": \"reve-create@20250915\",\n  \"credits_used\": 18,\n  \"credits_remaining\": 982\n}\n\nErrors\n401 — Invalid API key\n402 — Insufficient credits\n429 — Rate limited (includes retry_after)\n422 — Invalid input (prompt too long, bad aspect ratio)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dpaluy/reve-ai",
    "publisherUrl": "https://clawhub.ai/dpaluy/reve-ai",
    "owner": "dpaluy",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}