OpenClaw · Skill
Renderful Generation
Use this skill with the Renderful OpenClaw plugin tools:
Coding Agents & IDEs
v0.1.0
VirusTotal: Suspicious
Install
Start with the primary install command. Alternate entrypoints are included below for ClawHub and OpenClaw CLI users.
Primary command
clawhub install luv005/renderful-generationClawHub installer
npx clawhub@latest install luv005/renderful-generationOpenClaw CLI
openclaw skills install luv005/renderful-generationDirect OpenClaw install
openclaw install luv005/renderful-generationWhat this skill does
Use this skill with the Renderful OpenClaw plugin tools:
Why it matters
The quote-first workflow prevents surprise charges by surfacing costs and validating inputs before any generation is submitted.
Typical use cases
- Generate an image from a text prompt using a discovered model
- Check generation cost before committing to a render job
- Poll an in-progress video render until it finishes
- Deposit funds when a generation fails due to insufficient balance
- Register an agent to obtain a Renderful API key programmatically
Source instructions
Use this skill with the Renderful OpenClaw plugin tools:
renderful_list_modelsrenderful_quoterenderful_generaterenderful_get_generationrenderful_register_agentrenderful_get_balancerenderful_set_webhook
Recommended Flow
- Run
renderful_register_agentif no API key is available. - Run
renderful_list_modelsto pick a validtypeandmodel. - Run
renderful_quotebeforerenderful_generate. - Run
renderful_generateonce inputs are validated. - Poll with
renderful_get_generationuntil terminal status.
x402 and Insufficient Funds
- If generation returns
status=402, surfacepayment_requirements. - If
needs_funds=true, surfacedeposit_addressesandshortfall. - Retry generation after funding or after providing valid
x_payment.
Notes
- Prefer read-only calls (
list_models,quote,get_generation,get_balance) until explicit user approval for side effects. - Keep responses deterministic and structured so planners can chain tool calls safely.