gumroad-product-images
Generate professional product cover images (600x600) and preview/showcase images (1280x720) for Gumroad digital products. Use when creating, updating, or batch-generating Gumroad product images including covers, previews, and thumbnails. Generates HTML templates with modern dark-theme designs, then screenshots them to PNG using Edge headless. Supports custom color themes, badges, content lists, and CTA buttons. No external API or AI image generation needed.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/careytian-ai/gumroad-product-imagesGumroad Product Images
Generate professional Gumroad product images from HTML templates using Edge headless screenshots.
Image Types
| Type | Size | Use |
|---|---|---|
| Cover | 600x600 | Gumroad thumbnail, Discover, profile page |
| Preview | 1280x720 | Product page showcase image |
Workflow
1. Gather Product Info
Collect from user:
- Product name
- Subtitle / value proposition
- Category tags (3-5 short labels with emoji)
- "What's inside" list (5-6 items)
- Color theme preference (or auto-select from assets/themes.json)
2. Generate HTML
Use templates in assets/ as base. Key rules:
- All emoji must use HTML entities (e.g.
⚡not ⚡) to prevent encoding corruption on Windows - Never include prices or "free" on images — prices may change
- Set
html { background: <darkest-color>; }to prevent white edges on screenshot - Use
100vw/100vhfor body dimensions, not fixed pixels - Font:
'Segoe UI', system-ui, sans-serif
Cover (600x600)
Layout: centered card with badge, icon/number, title, subtitle, tags.
Preview (1280x720)
Layout: left side (badge + icon + title + subtitle + tags) | right side (content list card + CTA button).
CTA button text: "Get Instant Access →" (never mention price/free).
3. Serve & Screenshot
Start a local HTTP server if not running:
cd <product-images-dir>; npx http-server -p 8765 --cors -c-1
Screenshot with Edge headless:
# Cover (600x600)
& "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --headless --screenshot="cover.png" --window-size=600,600 --force-device-scale-factor=1 "<url>/cover.html"
# Preview (1280x720)
& "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --headless --screenshot="preview.png" --window-size=1280,720 --force-device-scale-factor=1 "<url>/preview.html"
4. Batch Processing
For multiple products, loop:
$products = @("product-a","product-b","product-c")
foreach($name in $products) {
$types = @(@{file="cover";w=600;h=600}, @{file="preview";w=1280;h=720})
foreach($t in $types) {
$png = "F:\path\$name\$($t.file).png"
& "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --headless --screenshot="$png" --window-size="$($t.w),$($t.h)" --force-device-scale-factor=1 "http://127.0.0.1:8765/$name/$($t.file).html"
}
Write-Host "Done: $name"
}
5. Verify
After screenshot, check:
- No white edges (right/bottom)
- No emoji garbled text (use HTML entities only)
- No prices or "free" text on images
- File size > 50KB (not blank)
Color Themes
See assets/themes.json for predefined themes. Each theme has:
bg: gradient stops for body backgroundhtml_bg: solid color for html elementaccent: primary accent color for badges/CTAsaccent2: secondary accent for gradientsdot: color for list dotshighlight: color for headings/titles
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-careytian-ai-gumroad-product-images": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
smart-chatbot-builder
智能聊天机器人构建器,快速创建客服/销售/内部助手聊天机器人,支持知识库、多轮对话、API 集成。
content-batch-processor
批量内容处理工具,支持文本格式化、摘要生成、关键词提取、多语言翻译等批量操作。
automation-workflow-builder
自动化工作流构建器,设计并执行跨平台自动化流程,支持触发器、条件判断、多步骤操作。
zh-search-pro
中文搜索增强工具,整合百度、必应、微信、知乎等中文搜索引擎,支持高级搜索语法和时间过滤。
web-data-extractor
网页数据采集器,支持 CSS 选择器/XPath 提取、批量抓取、自动分页、数据导出(CSV/JSON/Markdown)。