โ† All skills
Tencent SkillHub ยท Developer Tools

Clawhub Renderkit Skill

Render structured data as beautiful hosted web pages, and create hosted forms for data collection, using the RenderKit API. Use this for visual pages, survey...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Render structured data as beautiful hosted web pages, and create hosted forms for data collection, using the RenderKit API. Use this for visual pages, survey...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.4.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

RenderKit Skill

Render structured data as beautiful hosted web pages, and create hosted forms for data collection.

Setup

Sign up at https://renderkit.live to get your API key Set your environment variable: export RENDERKIT_API_KEY="your-api-key"

Usage

All commands use curl to hit the RenderKit API. Pick the right endpoint: Read-only pages (results, summaries, comparisons, itineraries) โ†’ POST /v1/render Data collection (forms, surveys, RSVPs, signups, feedback) โ†’ POST /v1/forms

Create a page

curl -s -X POST https://renderkit.live/v1/render \ -H "Authorization: Bearer $RENDERKIT_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "template": "freeform", "context": "brief description of what this content is", "data": { "title": "Page Title", "content": "your data here โ€” markdown, structured objects, anything" } }' Returns url, slug, and render_id. Templates: freeform (AI picks layout) or travel_itinerary.

Update a page

curl -s -X PATCH https://renderkit.live/v1/render/{render_id} \ -H "Authorization: Bearer $RENDERKIT_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "strategy": "merge", "context": "updated description", "data": { "content": "new or additional data" } }' Strategies: merge (add sections) or replace (full rewrite). The URL stays the same.

Check page status

curl -s https://renderkit.live/v1/render/{render_id}/status \ -H "Authorization: Bearer $RENDERKIT_API_KEY"

Create a form

curl -s -X POST https://renderkit.live/v1/forms \ -H "Authorization: Bearer $RENDERKIT_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "title": "Event RSVP", "prompt": "Create an RSVP form for a dinner party. Ask for name, email, dietary restrictions, and plus-one.", "multi_response": true, "expires_in": 604800 }' Returns a url to share with respondents. You can also provide explicit fields instead of a prompt.

Get form responses

curl -s https://renderkit.live/v1/forms/{form_id}/responses \ -H "Authorization: Bearer $RENDERKIT_API_KEY"

Close a form

curl -s -X DELETE https://renderkit.live/v1/forms/{form_id} \ -H "Authorization: Bearer $RENDERKIT_API_KEY"

Notes

Never use /v1/render to fake a form โ€” it produces a static page that cannot collect responses Include URLs inline in your data โ€” they are automatically enriched with images, ratings, and metadata Optionally pass a theme: "theme": { "mode": "dark", "palette": ["#color1", "#color2"] } Updates (PATCH) are free and don't count toward your quota If you rendered a page in this conversation, prefer PATCH over POST for follow-up changes Full API docs: https://renderkit.live/docs.md

Examples

# Create a travel itinerary page curl -s -X POST https://renderkit.live/v1/render \ -H "Authorization: Bearer $RENDERKIT_API_KEY" \ -H "Content-Type: application/json" \ -d '{"template":"travel_itinerary","context":"3-day Paris trip","data":{"title":"Paris Weekend","content":"Day 1: Louvre, lunch at Loulou, Seine walk. Day 2: Montmartre, Sacrรฉ-Cล“ur."}}' # Create a feedback survey curl -s -X POST https://renderkit.live/v1/forms \ -H "Authorization: Bearer $RENDERKIT_API_KEY" \ -H "Content-Type: application/json" \ -d '{"title":"Team Feedback","prompt":"Create a short feedback form with rating (1-5) and open comments","multi_response":true}' # Check for new form submissions curl -s https://renderkit.live/v1/forms/{form_id}/status \ -H "Authorization: Bearer $RENDERKIT_API_KEY"

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc