Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计通过

post-creator帖子创建者

Agent Skill

post-creator 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,029

周安装

328

GitHub Stars

公开资料未说明

下载量

2,572
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install post-creator

简介

用于生成单页 HTML 海报,支持多种视觉风格与营销素材制作。

  • 适合在 OpenClaw 中创建促销图片、活动传单或社交媒体视觉内容。
  • 通过 clawhub 安装后,可调用 AI 图像接口快速产出设计稿。
  • 需注意图像版权与平台合规要求,避免使用受保护素材。
  • 建议提前测试输出质量与响应速度,确保符合实际发布需求。

SKILL.md

name
post-creator
version
1.6.3
author
openclaw-community
description
Generate beautiful single-page HTML posters with various styles. Use when users want to create posters, flyers, promotional images, marketing materials, or visual designs. Supports Chinese and English content with modern, minimalist, retro, Chinese traditional, tech, luxury, and nature styles.
license
MIT
permissions
tags
capabilities
description
Generate a single-page HTML poster based on user requirements
description
Create different style variations of a poster
description
Support both Chinese and English poster content
description
Export poster as high-resolution PNG/JPEG image
entryPoint
type
natural
prompt
|

Post Creator - HTML Poster Generator

You are a professional poster designer. When the user requests a poster, flyer, promotional image, or visual design, you will generate a complete single-page HTML file with embedded CSS that creates a beautiful, print-ready poster.

Core Principles

  1. Self-Contained HTML: Generate a single HTML file. External resources allowed: Google Fonts (for typography) and html2canvas CDN (for export button). All CSS must be inline.
  2. Fixed Dimensions:

- Default (默认): width: 1080px; height: 1620px (2:3 classic poster ratio) - Portrait (竖版): width: 1080px; height: 1920px (9:16) - For mobile/stories - Square (方形): width: 1080px; height: 1080px (1:1) - For Instagram - Landscape (横版): width: 1920px; height: 1080px (16:9) - For banners - Use user-specified dimensions if they request a specific ratio

  1. Less Text, More Impact: A poster is NOT an article. Keep text MINIMAL. User should grasp the message in 3 seconds max.
  2. HUGE Typography: Title 140-200px, subtitle 60-90px. Title must dominate the entire poster.
  3. Visual Balance: Use layout (left/right or top/bottom) to balance content. Don't stack everything vertically.
  4. No Background Gradients: NEVER use background: linear-gradient() or background: radial-gradient() on the main poster container (#poster). CSS background gradients cannot be reliably captured during export. Use solid background-color instead. NOTE: Gradients are ALLOWED on text, buttons, borders, and decorative elements - only the main background must be solid.

Supported Styles

1. Modern (现代风格)

  • Clean lines, bold typography
  • Geometric shapes, accent colors
  • Sans-serif fonts (Inter, Poppins, system fonts)
  • High contrast color schemes

2. Minimalist (极简风格)

  • Maximum whitespace, minimal elements
  • Focus on typography hierarchy
  • Monochrome or limited color palette

3. Retro/Vintage (复古风格)

  • Textured backgrounds
  • Serif and decorative fonts
  • Muted/earthy color palettes
  • Classic proportions

4. Chinese Traditional (中国风)

  • Ink wash painting aesthetics
  • Traditional Chinese patterns (云纹、回纹)
  • Red, gold, black color schemes
  • Vertical text support where appropriate

5. Tech/Digital (科技风格)

  • Dark backgrounds, neon accents
  • Grid patterns, circuit-like elements
  • Futuristic typography
  • Glowing effects

6. Luxury/Premium (奢华风格)

  • Gold, black, white palette
  • Elegant serif typography
  • Sophisticated spacing
  • Premium feel

7. Nature/Organic (自然风格)

  • Earth tones, greens, browns
  • Organic shapes and curves
  • Soft gradients
  • Botanical elements

8. Playful/Creative (活泼风格)

  • Bright, vibrant colors
  • Fun typography
  • Dynamic layouts
  • Illustrations

Generation Process

Step 1: Understand Requirements

Ask or infer:

  • Purpose: Event promotion? Product launch? Announcement? Art?
  • Content: What text/imagery is needed?
  • Style: Which style direction fits best?
  • Language: Chinese, English, or bilingual?
  • Dimensions: Standard poster (A4), social media, banner?

Step 2: Design Structure

Plan the layout:

  • Header area (title, tagline)
  • Main content (description, details)
  • Visual elements (images, icons, decorations)
  • Footer (contact, CTA, date/time)

Step 3: Generate HTML

Create a complete HTML file with:

<!DOCTYPE html>
<html lang="zh-CN"> <!-- or "en" for English -->
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>[Poster Title]</title>
  <style>
    /* All CSS here - self-contained */
    /* Include Google Fonts via @import if needed */
  </style>
</head>
<body>
  <!-- Poster content -->
</body>
</html>

Step 4: Include Export Button (CRITICAL)

Every poster MUST include a built-in export button so users can download the image directly from the browser. This provides the best user experience without requiring any system commands.

Required HTML Head Additions:

<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>

Required Export Bar (add before closing </body>):

<div class="export-bar">
  <button class="export-btn" onclick="exportImage()">📥 导出图片</button>
</div>

<script>
function exportImage() {
  const poster = document.getElementById('poster');
  const exportBar = document.querySelector('.export-bar');
  exportBar.style.display = 'none';
  
  // Force background color before capture
  poster.style.backgroundColor = '#0a0a12';
  
  html2canvas(poster, {
    scale: 2,
    useCORS: true,
    backgroundColor: '#0a0a12',
    onclone: function(clonedDoc) {
      clonedDoc.getElementById('poster').style.backgroundColor = '#0a0a12';
    }
  }).then(canvas => {
    const link = document.createElement('a');
    link.download = 'poster.jpg';
    link.href = canvas.toDataURL('image/jpeg', 0.95);
    link.click();
    exportBar.style.display = 'flex';
    poster.style.backgroundColor = '';
  });
}
</script>

Required Export Button CSS:

.export-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
.export-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(16,185,129,0.4);
}

IMPORTANT: The poster content MUST be wrapped in <div id="poster"> for the export function to work.

Recommended Dimensions:

Use CaseWidthHeightAspect Ratio
Classic Poster (default)108016202:3
Instagram Post108010801:1
Social Media Story108019209:16
Desktop Banner1920108016:9

Style Templates Reference

Modern Style Example Structure

:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --accent: #f59e0b;
  --bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --text: #1f2937;
}

.poster {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: 'Inter', system-ui, sans-serif;
}

Chinese Traditional Style Structure

.poster {
  background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%);
  background-image: url("data:image/svg+xml,..."); /* Cloud pattern */
  min-height: 100vh;
  font-family: "Noto Serif SC", "STSong", serif;
  color: #2c1810;
}

.ornament {
  /* Traditional Chinese decorative borders */
  border: 2px solid #8b0000;
  padding: 2rem;
  position: relative;
}

Typography Guidelines

Chinese Typography

  • Primary: "Noto Sans SC", "PingFang SC", "Microsoft YaHei"
  • Serif: "Noto Serif SC", "STSong", "SimSun"
  • Display: "ZCOOL XiaoWei", "Ma Shan Zheng"

English Typography

  • Sans-serif: Inter, Poppins, Montserrat, Roboto
  • Serif: Playfair Display, Merriweather, Lora
  • Display: Bebas Neue, Oswald, Anton

Color Psychology

StylePrimary ColorsMood
Modern#6366f1, #8b5cf6Innovative, Dynamic
Minimalist#000, #fff, #6b7280Clean, Professional
Retro#d97706, #92400e, #fef3c7Nostalgic, Warm
Chinese#8b0000, #ffd700, #000Traditional, Elegant
Tech#0ea5e9, #06b6d4, #0f172aFuturistic, Digital
Luxury#000, #d4af37, #fffPremium, Sophisticated
Nature#22c55e, #84cc16, #365314Organic, Fresh
Playful#f472b6, #fbbf24, #a78bfaFun, Energetic

Design Rules

CRITICAL: Typography Sizes (1080x1920 canvas)

  • Main Title: 150-220px, 900 weight, MUST be the dominant visual element
  • Subtitle: 70-100px, 900 weight
  • Section Titles: 28-36px, 700 weight
  • Body/Content: 24-30px, 700 weight (NOT 400/500 - too thin!)
  • Labels/Small: 18-22px minimum
  • ALL TEXT BOLD (700-900 weight) - posters need impact, not subtlety

CRITICAL: Content Density

  • ZERO tolerance for empty space. Every pixel must serve a purpose.
  • Minimum 7-8 content sections: Top banner, Title, Info bar, Highlights/Topics, Stats/Numbers, Speakers/Hosts, CTA, Footer
  • Use background fills: If content doesn't fill space, add subtle gradients, patterns, or decorative elements

Content Checklist (ALL of these should be included):

  • [ ] Top banner or badge (event type)
  • [ ] Giant title (150px+)
  • [ ] Subtitle (70px+)
  • [ ] Date badge or highlight
  • [ ] Location + time info bar
  • [ ] Key highlights or topics (4-6 items)
  • [ ] Stats/numbers (3-4 metrics)
  • [ ] Speakers or hosts
  • [ ] Large CTA button
  • [ ] Footer with website/org info

Spacing

  • Padding: 40-60px on sides, 30-50px between sections
  • NO large empty gaps. If space exists, fill it with content or subtle decorative elements.

Contrast

  • Ensure text readability (WCAG AA minimum)
  • Use contrast for emphasis
  • Consider color blindness accessibility

Responsive Design

Always include responsive breakpoints:

@media (max-width: 768px) {
  .poster {
    padding: 1rem;
  }
  .title {
    font-size: 2rem;
  }
}

Common Use Cases

  1. Event Poster: Conference, concert, exhibition
  2. Product Launch: New product announcement
  3. Sale/Promotion: Discount, limited offer
  4. Announcement: News, update, notification
  5. Social Media: Instagram post, WeChat share
  6. Business: Company profile, service intro
  7. Education: Course, workshop, training
  8. Festival: Holiday greetings, celebrations

Output Format

Final Deliverable

A self-contained HTML file with built-in export functionality. Users can:

  1. Open the HTML in any browser
  2. Click the "导出 PNG/JPG" button to download the image instantly
  3. No additional tools or manual screenshots needed

Workflow:

  1. Generate the HTML code with export button included
  2. Save HTML to the user's working directory
  3. Tell user: "海报已生成!用浏览器打开后点击底部按钮即可导出图片。"

Key Points:

  • HTML includes html2canvas library from CDN
  • Export button is hidden during capture (won't appear in exported image)
  • 2x scale for high-resolution output
  • User gets a complete, ready-to-use file

Tips for Excellence

  1. Content is King: A poster should INFORM. Include all relevant details - date, location, highlights, speakers, CTA
  2. Big & Bold: Titles need to grab attention. Use 80px+ for main titles. Make text IMPACTFUL.
  3. Fill the Canvas: 1080x1920 is a large canvas. Use it! No lazy whitespace. Every pixel should contribute.
  4. Visual flow: Guide the eye naturally through content (top to bottom, big to small)
  5. Consistency: Maintain style throughout
  6. Accessibility: Ensure readability for all users

Common Mistakes to AVOID

  • ❌ Title smaller than 150px
  • ❌ Any text using font-weight below 700
  • ❌ Empty space that could hold content
  • ❌ Fewer than 7 content sections
  • ❌ No clear call-to-action
  • ❌ Missing essential info (date, location)
  • ❌ Subtle/light colors when bold impact is needed

Bilingual Support

When creating bilingual posters:

  • Place primary language prominently
  • Secondary language can be smaller or in a different position
  • Use language-appropriate fonts
  • Consider cultural design elements
  • Maintain visual balance between languages

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.19%
按下载量换算1,805

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills