← 返回 Skills 市场
zmy1006-sudo

Blackboard

作者 mingyuan · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ✓ 安全检测通过
68
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install blackboard
功能描述
根据关键词生成深色海报风格插图(竖版 9:16),类似"保姆级教程"封面图风格。 特点:深灰/黑色背景、白色细边框、大字居中中文、高对比度配色(青柠绿+珊瑚红)、 **手写马克笔字体风格**(厚笔触、不规则边缘、真实马克笔质感)、 顶部品牌区、中部标题区、底部标签语,悬挂于白色砖墙。 触发场景:用户说"生成一张海...
使用说明 (SKILL.md)

黑板海报生成器

工作流

  1. 理解用户意图 → 提取主题、品牌、色调关键词
  2. 构建结构化提示词(深色海报 + 马克笔字体)
  3. 调用 image_synthesize 生成图片
  4. 发给用户图片 + 提示词文本

构图结构(五段式)

+------------------------------------------+
|  [品牌区]   [图标]   [品牌名]           |  ← 顶部灰/白色条
+------------------------------------------+
|                                          |
|           [大字主标题 - 白马克笔]         |  ← 中部主标题
|       [副标题词1 - 青柠绿马克笔]          |
|       [副标题词2 - 珊瑚红马克笔]          |
|           [补充词 - 青柠绿马克笔]          |
|                                          |
+------------------------------------------+
|          [底部标签语 - 白马克笔]          |  ← 底部说明
+------------------------------------------+

核心提示词模板

[VERTICAL 9:16 POSTER - DARK BACKGROUND]
Portrait orientation, 9:16 aspect ratio.

[BACKGROUND & FRAME]
Dark charcoal grey background (#1a1a1a), thin white border around edges.
Poster hangs on white brick wall, held by [N] small black clips at top.
Two thin strings connecting clips to wall.

[TOP BRAND ZONE - optional]
Top strip area:
- Left: '[品牌英文名]' in bold white sans-serif font
- Center: [品牌图标描述] (small icon/logo)
- Right: '[品牌名]' in bold white sans-serif font

[MAIN HEADLINE ZONE - centered, HANDWRITTEN MARKER STYLE]
Line 1 (large, bold white handwritten marker): '[主标题 - 中文]'
Line 2a (medium, lime green #ADFF2F handwritten marker): '[关键词/亮点1]'
Line 2b (medium, coral red #FF6B6B handwritten marker): '[关键词/亮点2]'
Line 3 (small, lime green handwritten marker): '[补充信息]'

[BOTTOM TAG ZONE]
Bold white handwritten marker text, centered: '[底部标签语]'

[TEXT STYLE - CRITICAL]
All Chinese text rendered in BOLD HANDWRITTEN MARKER STYLE:
- Thick marker strokes, uneven line weight like real marker on dark surface
- Slight imperfections, natural hand-drawn wobble
- Characters appear to be written with a broad-tip white/chalk marker
- NOT clean sans-serif font — must look like actual hand-lettering
- High contrast on dark background, centered alignment
- Minimalist design, no clutter

配色方案

用途 颜色名称 提示词关键词
背景 深炭灰 dark charcoal grey #1a1a1a
主文字 白/马克笔白 bold white marker, chalk white
强调色1 青柠绿 lime green #ADFF2F marker
强调色2 珊瑚红 coral red #FF6B6B marker
品牌区 浅灰 light grey strip

构图变体

变体A:极简大字体(推荐)

无品牌区,整个海报只有主标题,大字马克笔撑满画面,底部一行小字标签语

变体B:双品牌对比

顶部两个品牌LOGO并列,中间大字马克笔,中间关键词分色

变体C:数字+标签

大数字居中(珊瑚红马克笔),单位白马克笔,解释白马克笔小字

变体D:人物+主题

顶部小头像,中部大字白马克笔,底部标签语白马克笔


调用格式

image_synthesize(
  requests=[{
    "prompt": "完整英文提示词(见上方模板组装)",
    "output_file": "/workspace/[英文主题]_poster.png",
    "aspect_ratio": "9:16",
    "resolution": "2K"
  }]
)

输出规则

  • 文件路径:/workspace/[英文主题]_poster.png
  • aspect_ratio 必须为 "9:16"(竖版海报)
  • 生成后用 message tool 发给用户(channel=feishu)
  • 附上完整英文提示词供用户保存复用
  • 中文字由 AI 生成,仅供参考;正式使用建议叠加精准字体文字

参考资源

  • 配色与风格参考:references/style-guide.md
  • 构图模板库:references/layout-templates.md
安全使用建议
This skill appears internally consistent and does what it says: it assembles English prompts for a dark 9:16 poster style, calls the platform image_synthesize tool, writes an image to /workspace, and sends it via the agent's messaging tool. Before installing, confirm you are comfortable with: (1) the agent having access to the platform image_synthesize and message tools (it will send images to the configured channel, here mentioned as Feishu); (2) generated artifacts being written to /workspace (check your platform's retention and visibility policies); and (3) any brand/logo text the skill may generate — you should verify copyright/trademark use and replace AI-generated Chinese text with vetted fonts for production. If any of these platform integrations are untrusted in your environment, restrict or review them before enabling the skill.
功能分析
Type: OpenClaw Skill Name: blackboard Version: 1.0.2 The skill bundle is a legitimate tool designed to generate dark-themed posters using an image synthesis tool. The instructions in SKILL.md and the reference files (layout-templates.md, style-guide.md) are strictly focused on structuring prompts for image generation and do not contain any evidence of data exfiltration, malicious execution, or prompt injection attacks.
能力评估
Purpose & Capability
Name/description (dark 9:16 poster with handwritten marker style) match the actual instructions: build structured prompts and call image_synthesize. No unrelated credentials, binaries, or installs are requested.
Instruction Scope
Runtime instructions are focused on composing prompts and calling image_synthesize, saving output to /workspace and returning it via the 'message' tool (channel=feishu). This is coherent, but the doc assumes platform tools (image_synthesize and message) exist and instructs sending results via a specific channel — confirm you trust the agent's messaging integration and storage of /workspace artifacts. There is a minor internal guidance tension: style-guide advises 'do not put Chinese in prompts' while the skill expects Chinese poster text; this is explainable but worth noting.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk install surface. Nothing is downloaded or written by an installer.
Credentials
The skill requests no environment variables, credentials, or config paths. All declared requirements are proportional to its purpose.
Persistence & Privilege
always:false and no persistent install actions. The skill does not request permanent presence or elevated privileges and does not modify other skills or system configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install blackboard
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /blackboard 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Added "handwritten marker" (马克笔) style as a core visual feature for main text and accents, emphasizing thick, uneven marker strokes and a natural hand-drawn effect. - Updated description, templates, and text style guidance to require bold handwritten marker text (not sans-serif) for all Chinese content. - Adjusted sample compositions and color references to reflect the new marker style. - Clarified prompt templates and output rules to enforce the marker handwriting requirement throughout the poster design process.
v1.0.1
- No visible changes detected in this version. - Version and documentation remain the same as the previous release.
v1.0.0
Blackboard 1.0.0 – Initial Release - Generates dark-themed, vertical 9:16 poster-style illustrations based on keywords, mimicking "tutorial cover" aesthetics. - Features: charcoal/black background, thin white outline, bold central Chinese headlines, high-contrast lime green and coral red accents, brand area on top, tagline on bottom, hanging effect on white brick wall. - Workflow: Understands user intent, extracts keywords, builds structured prompts, synthesizes images, and delivers results with prompt text. - Includes adaptable layout templates (minimal, side-by-side brands, numbered guides, personal branding) and detailed color/style guides. - Provides full English prompt text with each image for user reference and reuse.
元数据
Slug blackboard
版本 1.0.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Blackboard 是什么?

根据关键词生成深色海报风格插图(竖版 9:16),类似"保姆级教程"封面图风格。 特点:深灰/黑色背景、白色细边框、大字居中中文、高对比度配色(青柠绿+珊瑚红)、 **手写马克笔字体风格**(厚笔触、不规则边缘、真实马克笔质感)、 顶部品牌区、中部标题区、底部标签语,悬挂于白色砖墙。 触发场景:用户说"生成一张海... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 68 次。

如何安装 Blackboard?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install blackboard」即可一键安装,无需额外配置。

Blackboard 是免费的吗?

是的,Blackboard 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Blackboard 支持哪些平台?

Blackboard 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Blackboard?

由 mingyuan(@zmy1006-sudo)开发并维护,当前版本 v1.0.2。

💬 留言讨论