Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

rendshotrendshot 图像

Agent Skill

rendshot 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,976

周安装

84

GitHub Stars

公开资料未说明

下载量

692
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rendshot(rendshot 图像)
来源仓库:https://github.com/zoohero500/rendshot
安装命令:
openclaw skills install rendshot
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install rendshot

简介

rendshot 用于从 HTML/CSS 生成图像或网站截图,适合 UI 预览和设计验证。

  • 支持模板渲染和自动化图像产出,提升前端开发效率。
  • 使用 openclaw skills install 命令安装,输入代码片段即可生成图片。
  • 使用前应检查浏览器兼容性以确保渲染一致性。
  • 适用于组件库文档、着陆页设计和 A/B 测试素材制作。

SKILL.md

name
rendshot
description
Image generation and screenshot tool using Rendshot. Use when the user asks to generate images from HTML/CSS, take website screenshots, render templates to images, create social media graphics, OG images, or any visual content programmatically. Also triggers on: 'render HTML', 'html to image', 'screenshot this page', 'create a card image', 'generate thumbnail'.

Rendshot — Image Generation & Screenshot

Rendshot renders HTML/CSS to images, takes URL screenshots, and supports AI-powered template generation with platform presets.

Tool Selection

MCP tools available? Use them directly (preferred path):

ToolUse when
generate_imageRender HTML, fill a template, or AI-generate from prompt
screenshot_urlCapture a webpage
list_templatesBrowse community templates by platform/category
get_templateGet variable schema before filling a template
create_templateSave a design for reuse

No MCP tools? Fall back to CLI or API. See references/api-endpoints.md.

Core Workflows

1. AI Prompt to Image (fastest)

generate_image({
  prompt: "Coffee shop promotion card, warm brown tones, large title",
  platform: "xiaohongshu",    // auto-sets 1080x1440 + style guide
  locale: "zh"                // response language
})

Combine with template_id to reference an existing template's visual style:

generate_image({
  prompt: "Same layout but for a bakery",
  template_id: "tpl_abc123",  // style reference
  platform: "instagram_post"
})

2. Template to Image (deterministic)

// Step 1: Find a template
list_templates({ platform: "xiaohongshu", q: "product showcase" })

// Step 2: Check its variables
get_template({ template_id: "tpl_abc123" })
// Returns: title(text), subtitle(text), bg_image(image), accent_color(color)

// Step 3: Render with custom values
generate_image({
  template_id: "tpl_abc123",
  variables: {
    title: "Today's Special",
    subtitle: "Hand-roasted beans",
    bg_image: "https://example.com/beans.jpg",
    accent_color: "#8B4513"
  }
})

3. Raw HTML to Image

generate_image({
  html: "<div style='...'>Hello World</div>",
  width: 1080,
  height: 1080,
  format: "png",
  deviceScale: 2        // 2x for retina
})

4. Screenshot

screenshot_url({
  url: "https://example.com",
  width: 1280,
  height: 800,
  fullPage: true,
  format: "png"
})

5. Save and Reuse

After AI generates a design, save it as a template:

create_template({
  name: "Coffee Promo Card",
  html: "<returned html from AI>",
  variables: [
    { key: "title", type: "text", label: "Title", default: "Special Offer" },
    { key: "bg_image", type: "image", label: "Background", default: "https://..." }
  ],
  platform: "xiaohongshu",
  tags: ["coffee", "promotion"],
  visibility: "private"
})

Platform Presets

PlatformDefault sizeTypical use
xiaohongshu1080x1440Notes, product cards
xiaohongshu_wide1080x810Wide format notes
instagram_post1080x1080Feed posts
instagram_story1080x1920Stories, reels covers
twitter_card1200x628Link preview cards
twitter_post1200x675Image posts
linkedin_post1200x627Professional posts
youtube_thumb1280x720Video thumbnails
wechat_cover900x383Article covers
wechat_thumb200x200Article thumbnails
og_image1200x630Open Graph images
custom1080x1080Any custom size

Variable Types

TypeExampleConstraints
textTitle, subtitlemaxLength
imageBackground, avatarURL format
colorAccent, backgroundHex format
numberFont size, opacitymin, max
selectStyle variantoptions: ["A","B"]

Key Rules

  • html, template_id, and prompt are mutually exclusive (except prompt + template_id for style reference)
  • Always call get_template before using a template to check its variable schema
  • Use deviceScale: 2 for retina/high-DPI output
  • Default format is png; use jpg + quality: 85 for smaller file size
  • AI prompt mode returns HTML + variables; save good results with create_template
  • For detailed tool parameters, see references/mcp-tools.md
  • For API/CLI/SDK usage, see references/api-endpoints.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.75%
按下载量换算656

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills