Agent skill · Backend & API

renderful-ai

Generate images and videos via renderful.ai API (FLUX, Kling, Sora, WAN, etc.) with crypto payments. Use when the user wants to create AI images, videos, or needs a crypto-friendly generation service.

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
npx skills add majiayu000/claude-skill-registry --skill renderful-ai --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: Bash(curl)Web(fetch)
Path: skills/ai-llm/renderful-ai/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Renderful AI Generate AI images and videos using the renderful.ai API. Pay with crypto (Base/Polygon/Solana). ## API Base URL ``` https://api.renderful.ai/v1 ``` ## Authentication Get API key from https://renderful.ai/dashboard ```bash # Set as environment variable export RENDERFUL_API_KEY="rf_your_api_key" ``` ## Quick Start ### Generate an Image ```bash curl -X POST https://api.renderful.ai/v1/generate \ -H "Authorization: Bearer $RENDERFUL_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "flux-dev", "prompt": "a cat astronaut floating in space, cinematic lighting", "width": 1024, "height": 1024, "steps": 28 }' ``` ### Generate a Video ```bash curl -X POST https://api.renderful.ai/v1/generate \ -H "Authorization: Bearer $RENDERFUL_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "kling-1.6", "prompt": "a serene mountain landscape at sunset, camera slowly panning", "duration": 5, "width": 1280, "height": 720 }' ``` ## Available Models ### Image Models | Model | Description | Best For | |-------|-------------|----------| | `flux-dev` | FLUX.1 Dev | General purpose, high quality | | `flux-schnell` | FLUX.1 Schnell | Fast generation | | `flux-pro` | FL

What's inside
Steps it walks through
  1. API Base URL
  2. Authentication
  3. Quick Start
  4. Generate an Image
  5. Generate a Video
  6. Available Models
  7. Image Models
  8. Video Models
  9. Image Generation Options
  10. Video Generation Options
  11. Check Generation Status
  12. Response Format
  13. Pricing
  14. x402 Integration
Ships with 1 file
  • metadata.json
Commands it runs
Set as environment variable
export RENDERFUL_API_KEY="rf_your_api_key"
curl -X POST https://api.renderful.ai/v1/generate \
curl https://api.renderful.ai/v1/status/{task_id} \
Agent can pay directly without human approval
export RENDERFUL_X402_WALLET="your_agent_wallet"
export RENDERFUL_PREFER_X402="true"
More from claude-skill-registry
All skills →
About this skill
What does the renderful-ai skill do?

Generate images and videos via renderful.ai API (FLUX, Kling, Sora, WAN, etc.) with crypto payments. Use when the user wants to create AI images, videos, or needs a crypto-friendly generation service.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill renderful-ai --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going