技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.4.0
统计:⭐ 2 · 678 · 0 current installs · 0 all-time installs
⭐ 2
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:antoinedc/renderkit
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's requirements and runtime instructions are coherent with its stated purpose (rendering hosted pages and forms via the RenderKit API); it only needs curl and a single API key, and it contains no install step or local code.
目的
Name and description match the declared requirements: the skill only needs curl and RENDERKIT_API_KEY and its SKILL.md exclusively describes HTTP calls to https://renderkit.live endpoints for rendering pages and creating forms.
说明范围
Instructions are narrowly scoped to issuing curl requests to renderkit.live and using the RENDERKIT_API_KEY. They do allow sending arbitrary content to the remote API (expected for this use) — this means the agent could transmit sensitive data if asked to render it, so users should avoid sending secrets or PII to the service.
安装机制
No install spec and no code files (instruction-only); nothing is written to disk and no third-party packages are fetched, which minimizes install-time risk.
证书
Only a single API credential (RENDERKIT_API_KEY) is required and declared as the primary credential. That is proportional for a hosted-API integration and matches the runtime instructions.
持久
The skill does not request always:true and uses normal autonomous invocation defaults. It does not request system config paths or other skills' credentials and has no install steps that would give it persistent system presence.
综合结论
This skill is internally consistent, but before installing: 1) verify renderkit.live is a trusted provider and review its privacy/data-retention policy because anything you send (including user content) will be stored/served by that service; 2) avoid sending secrets or highly sensitive PII to the RenderKit API; 3) use a limited-scope API key if the service supports it and rotate/revoke keys if you stop using the skill; 4) note minor docs incon…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Clawhub Renderkit Skill」。简介:Render structured data as beautiful hosted web pages, and create hosted forms f…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/antoinedc/renderkit/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: renderkit
version: "1.4.0"
description: Render structured data as beautiful hosted web pages, and create hosted forms for data collection, using the RenderKit API. Use this for visual pages, surveys, RSVPs, feedback forms, or any structured data.
metadata:
openclaw:
requires:
env:
- RENDERKIT_API_KEY
bins:
- curl
primaryEnv: RENDERKIT_API_KEY
homepage: https://renderkit.live
---
# RenderKit Skill
Render structured data as beautiful hosted web pages, and create hosted forms for data collection.
## Setup
1. Sign up at [https://renderkit.live](https://renderkit.live) to get your API key
2. Set your environment variable:
```bash
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
```bash
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
```bash
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
```bash
curl -s https://renderkit.live/v1/render/{render_id}/status
-H "Authorization: Bearer $RENDERKIT_API_KEY"
```
### Create a form
```bash
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
```bash
curl -s https://renderkit.live/v1/forms/{form_id}/responses
-H "Authorization: Bearer $RENDERKIT_API_KEY"
```
### Close a form
```bash
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](https://renderkit.live/docs.md)
## Examples
```bash
# 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"
```