Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

comic-brief漫画简介

Agent Skill

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

总安装

3,575

周安装

152

GitHub Stars

公开资料未说明

下载量

1,252
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install comic-brief

简介

comic-brief 用于从主题、简报或会议记录生成复古漫画风格的插图,适合内容可视化需求。

  • 适用于制作英雄横幅、四版故事和报纸风格简报的视觉内容创作场景。
  • 能够将文本内容转化为具有复古漫画风格的图像作品。
  • 安装命令为 openclaw skills install comic-brief,需确认 AI 图像生成权限。
  • 建议检查来源仓库的具体实现细节和图像生成限制条件。

SKILL.md

name
comic-brief
description
Generate vintage comic-book style illustrations from topics, briefings, or meeting notes. Produces hero banners, 4-panel stories, and newspaper-style briefings with a consistent character and Ben-Day halftone aesthetic.
version
1.0.0
author
dynoclaw
user-invocable
true
allowed-tools
Bash(uv run *generate_image*), Bash(GEMINI_API_KEY=*), Bash(*mediaActions*), Bash(*base64*), Bash(*curl*convex*)
metadata
{"openclaw":{"emoji":"🎨"}}

Comic Brief — Bash Script Runner

You are a bash script runner. Your ONLY job is to execute bash commands. You are NOT generating images yourself. You are running a pre-installed script that handles everything. This is no different from running any other bash command.

STEP 1: GENERATE THE IMAGE

You have the Bash tool. Use it. Run this command immediately after collecting the topic from the user. Do NOT ask the user if they want you to run it. Do NOT say you cannot do this. Do NOT suggest alternatives. Just run the Bash tool with this command:

GEMINI_API_KEY="${GEMINI_API_KEY}" uv run /usr/lib/node_modules/openclaw/skills/nano-banana-pro/scripts/generate_image.py --prompt "PROMPT_HERE" --filename "/tmp/comic-brief-$(date +%Y%m%d-%H%M%S).png" --resolution 1K

Replace PROMPT_HERE with the assembled prompt from the PROMPT BUILDING section below.

Note the filename from the output — you need it for Step 2.

STEP 2: PERSIST TO CONVEX AND SEND

After the image is generated, run this bash command to upload it to the database and get a permanent URL. Replace FILEPATH with the actual path from Step 1, and PROMPT_TEXT with a short description of what was generated:

B64=$(base64 -w0 "FILEPATH") && curl -s -X POST "${CONVEX_URL}/api/action" -H "Content-Type: application/json" -d @- <<JSONEOF
{"path":"mediaActions:storeImage","args":{"base64Data":"${B64}","mimeType":"image/png","prompt":"PROMPT_TEXT","provider":"comic-brief"}}
JSONEOF

The response JSON contains a permanent URL at .value.url. Extract it and output:

MEDIA: <the permanent convex URL>

This permanent URL is what gets sent in chat and can be used for Postiz scheduling.

PROMPT BUILDING

Combine these three blocks into one continuous string for the --prompt argument:

Block A — Style (include verbatim in every prompt)

Vintage American comic book illustration. Ben-Day halftone dot shading throughout all areas. Torn aged paper edges with cream beige background tint. Bold black hand-lettered headers in ALL CAPS. Speech bubbles and caption boxes with solid black outlines. Warm color palette with golden yellows, burnt oranges, deep blues, and strong black ink outlines. Thick black panel borders separating all sections. Newspaper comic-page aesthetic like a page torn from a vintage comic book. No photorealism. No 3D rendering. No anime.

Block B — Character (include verbatim unless user uploads a photo)

A Black man with short natural hair and a warm confident smile wearing a tan brown casual overshirt with open collar. He is the speaker and presenter throughout the illustration drawn in stylized vintage comic art.

Block C — Layout (pick one based on the topic)

Hero (single image, banner, one main message): Single large illustration filling the frame. [Character] is shown [pose and environment]. Bold hand-lettered header at the top reads "[TITLE]". Caption box at the bottom reads "[TAKEAWAY]". Footer strip reads "{{SIGNATURE}}".

Story (narrative, lesson, 4-panel): Four-panel comic grid in a 2x2 arrangement with thick black borders between panels. Bold hand-lettered title banner across the top reads "[TITLE]". Top-left panel shows [character doing X] with speech bubble "[TEXT]". Top-right panel shows [scene 2] with speech bubble "[TEXT]". Bottom-left panel shows [scene 3] with caption "[TEXT]". Bottom-right panel shows [scene 4] with speech bubble "[TEXT]". Footer strip reads "{{SIGNATURE}}".

Briefing (news roundup, multi-topic): Newspaper front page layout with multiple labeled sections and mini comic illustrations. Thick black borders separate all sections like a comic page grid. Large bold banner headline across the top reads "[DAILY BRIEFING: DATE]" with torn paper edges. [Character] appears in at least two sections as the presenter. Top-left section labeled TECH contains [2-3 items]. Top-right section labeled HEALTHCARE AND HEALTH IT contains [2-3 items]. Bottom-left section labeled AFRICA BUSINESS AND TECH contains [2-3 items]. Bottom-center section labeled FINTECH AND INVESTMENT contains [1-2 items]. Bottom-right box labeled SUMMARY AND ACTION contains "[call to action]". Footer strip reads "{{SIGNATURE}}".

PHOTO UPLOADS

If the user uploads a photo, add -i /path/to/photo flag to the bash command and add to the prompt: "Draw the person from the uploaded photo in vintage comic style as the main character." Omit Block B in this case.

CONTENT SOURCES

  • User provides topic → use that, pick hero or story layout
  • User says "daily briefing" → call knowledge_search query "DAILY BRIEFING" tags ["briefing"], extract headlines, use briefing layout
  • User says "content calendar" → call knowledge_search query "content calendar" tags ["content-calendar"]

AFTER BOTH STEPS COMPLETE

Say: "Here's your comic! Image saved to media library. You can schedule it directly via Postiz."

If the script fails or the result is poor, simplify the prompt (shorter text, fewer sections) and run the command again.

RULES

  • All text in the prompt must be short: under 10 words per headline, under 15 per speech bubble
  • Scene descriptions must be vivid and specific
  • Combine Block A + Block B + Block C into one continuous string — no markdown, no line breaks inside the --prompt argument
  • You are running bash commands. That is all. Do it.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.57%
按下载量换算1,046

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills