{
  "schemaVersion": "1.0",
  "item": {
    "slug": "renderkit",
    "name": "Clawhub Renderkit Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/antoinedc/renderkit",
    "canonicalUrl": "https://clawhub.ai/antoinedc/renderkit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/renderkit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=renderkit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/renderkit"
    },
    "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/renderkit",
    "agentPageUrl": "https://openagent3.xyz/skills/renderkit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/renderkit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/renderkit/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": "RenderKit Skill",
        "body": "Render structured data as beautiful hosted web pages, and create hosted forms for data collection."
      },
      {
        "title": "Setup",
        "body": "Sign up at https://renderkit.live to get your API key\nSet your environment variable:\n\nexport RENDERKIT_API_KEY=\"your-api-key\""
      },
      {
        "title": "Usage",
        "body": "All commands use curl to hit the RenderKit API. Pick the right endpoint:\n\nRead-only pages (results, summaries, comparisons, itineraries) → POST /v1/render\nData collection (forms, surveys, RSVPs, signups, feedback) → POST /v1/forms"
      },
      {
        "title": "Create a page",
        "body": "curl -s -X POST https://renderkit.live/v1/render \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"template\": \"freeform\",\n    \"context\": \"brief description of what this content is\",\n    \"data\": {\n      \"title\": \"Page Title\",\n      \"content\": \"your data here — markdown, structured objects, anything\"\n    }\n  }'\n\nReturns url, slug, and render_id. Templates: freeform (AI picks layout) or travel_itinerary."
      },
      {
        "title": "Update a page",
        "body": "curl -s -X PATCH https://renderkit.live/v1/render/{render_id} \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"strategy\": \"merge\",\n    \"context\": \"updated description\",\n    \"data\": { \"content\": \"new or additional data\" }\n  }'\n\nStrategies: merge (add sections) or replace (full rewrite). The URL stays the same."
      },
      {
        "title": "Check page status",
        "body": "curl -s https://renderkit.live/v1/render/{render_id}/status \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\""
      },
      {
        "title": "Create a form",
        "body": "curl -s -X POST https://renderkit.live/v1/forms \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"title\": \"Event RSVP\",\n    \"prompt\": \"Create an RSVP form for a dinner party. Ask for name, email, dietary restrictions, and plus-one.\",\n    \"multi_response\": true,\n    \"expires_in\": 604800\n  }'\n\nReturns a url to share with respondents. You can also provide explicit fields instead of a prompt."
      },
      {
        "title": "Get form responses",
        "body": "curl -s https://renderkit.live/v1/forms/{form_id}/responses \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\""
      },
      {
        "title": "Close a form",
        "body": "curl -s -X DELETE https://renderkit.live/v1/forms/{form_id} \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\""
      },
      {
        "title": "Notes",
        "body": "Never use /v1/render to fake a form — it produces a static page that cannot collect responses\nInclude URLs inline in your data — they are automatically enriched with images, ratings, and metadata\nOptionally pass a theme: \"theme\": { \"mode\": \"dark\", \"palette\": [\"#color1\", \"#color2\"] }\nUpdates (PATCH) are free and don't count toward your quota\nIf you rendered a page in this conversation, prefer PATCH over POST for follow-up changes\nFull API docs: https://renderkit.live/docs.md"
      },
      {
        "title": "Examples",
        "body": "# Create a travel itinerary page\ncurl -s -X POST https://renderkit.live/v1/render \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -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.\"}}'\n\n# Create a feedback survey\ncurl -s -X POST https://renderkit.live/v1/forms \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"title\":\"Team Feedback\",\"prompt\":\"Create a short feedback form with rating (1-5) and open comments\",\"multi_response\":true}'\n\n# Check for new form submissions\ncurl -s https://renderkit.live/v1/forms/{form_id}/status \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\""
      }
    ],
    "body": "RenderKit Skill\n\nRender structured data as beautiful hosted web pages, and create hosted forms for data collection.\n\nSetup\nSign up at https://renderkit.live to get your API key\nSet your environment variable:\nexport RENDERKIT_API_KEY=\"your-api-key\"\n\nUsage\n\nAll commands use curl to hit the RenderKit API. Pick the right endpoint:\n\nRead-only pages (results, summaries, comparisons, itineraries) → POST /v1/render\nData collection (forms, surveys, RSVPs, signups, feedback) → POST /v1/forms\nCreate a page\ncurl -s -X POST https://renderkit.live/v1/render \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"template\": \"freeform\",\n    \"context\": \"brief description of what this content is\",\n    \"data\": {\n      \"title\": \"Page Title\",\n      \"content\": \"your data here — markdown, structured objects, anything\"\n    }\n  }'\n\n\nReturns url, slug, and render_id. Templates: freeform (AI picks layout) or travel_itinerary.\n\nUpdate a page\ncurl -s -X PATCH https://renderkit.live/v1/render/{render_id} \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"strategy\": \"merge\",\n    \"context\": \"updated description\",\n    \"data\": { \"content\": \"new or additional data\" }\n  }'\n\n\nStrategies: merge (add sections) or replace (full rewrite). The URL stays the same.\n\nCheck page status\ncurl -s https://renderkit.live/v1/render/{render_id}/status \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\"\n\nCreate a form\ncurl -s -X POST https://renderkit.live/v1/forms \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"title\": \"Event RSVP\",\n    \"prompt\": \"Create an RSVP form for a dinner party. Ask for name, email, dietary restrictions, and plus-one.\",\n    \"multi_response\": true,\n    \"expires_in\": 604800\n  }'\n\n\nReturns a url to share with respondents. You can also provide explicit fields instead of a prompt.\n\nGet form responses\ncurl -s https://renderkit.live/v1/forms/{form_id}/responses \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\"\n\nClose a form\ncurl -s -X DELETE https://renderkit.live/v1/forms/{form_id} \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\"\n\nNotes\nNever use /v1/render to fake a form — it produces a static page that cannot collect responses\nInclude URLs inline in your data — they are automatically enriched with images, ratings, and metadata\nOptionally pass a theme: \"theme\": { \"mode\": \"dark\", \"palette\": [\"#color1\", \"#color2\"] }\nUpdates (PATCH) are free and don't count toward your quota\nIf you rendered a page in this conversation, prefer PATCH over POST for follow-up changes\nFull API docs: https://renderkit.live/docs.md\nExamples\n# Create a travel itinerary page\ncurl -s -X POST https://renderkit.live/v1/render \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -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.\"}}'\n\n# Create a feedback survey\ncurl -s -X POST https://renderkit.live/v1/forms \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"title\":\"Team Feedback\",\"prompt\":\"Create a short feedback form with rating (1-5) and open comments\",\"multi_response\":true}'\n\n# Check for new form submissions\ncurl -s https://renderkit.live/v1/forms/{form_id}/status \\\n  -H \"Authorization: Bearer $RENDERKIT_API_KEY\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/antoinedc/renderkit",
    "publisherUrl": "https://clawhub.ai/antoinedc/renderkit",
    "owner": "antoinedc",
    "version": "1.4.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/renderkit",
    "downloadUrl": "https://openagent3.xyz/downloads/renderkit",
    "agentUrl": "https://openagent3.xyz/skills/renderkit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/renderkit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/renderkit/agent.md"
  }
}