Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

infographicinfographic 搜索

Agent Skill

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

总安装

309

周安装

13

GitHub Stars

18

下载量

108
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jincai/openclaw-skills --skill infographic

简介

infographic 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 它支持基于关键词、任务场景或来源线索进行信息搜索与过滤,适用于研究类 Agent 工作流。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Infographic Skill

Create professional, mobile-friendly infographic images from structured content using HTML + Playwright screenshot.

When to Use

  • User shares an article/tweet and asks for an infographic or visual summary
  • User wants a shareable image for WeChat groups, Telegram, Twitter, etc.
  • User asks for a "knowledge card", "one-pager", or "visual breakdown"

Workflow

Article/Content → Extract Key Points → Design HTML → Screenshot (3x) → Deliver PNG

Step 1: Extract & Structure Content

Analyze the source material and identify:

  • Title (bilingual if applicable: Chinese primary, English subtitle)
  • Core thesis (1-2 sentence summary for callout box)
  • Main sections (3-7 sections, each with title + 1-3 bullet points)
  • Key insight or takeaway (for the dark bottom section)
  • Source attribution (author, platform, URL)

Keep text concise — infographics are scannable, not readable. If a section needs more than 3 short lines, split it.

Step 2: Design the HTML

Create a single self-contained HTML file (no external dependencies). Read {baseDir}/references/design-system.md for the full color palette, typography, and component library.

Page setup:

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  width: 750px;
  background: #faf6f0;
  font-family: -apple-system, 'PingFang SC', 'Noto Sans SC', sans-serif;
  padding: 44px 40px;
}
</style>
</head>

Key rules:

  • Width: always 750px (renders to 2250px at 3x — optimal for mobile)
  • No fixed height — content determines length, no wasted whitespace
  • Minimum font size: 12px (renders to 36px physical pixels at 3x)
  • Background: #faf6f0 (cream) or #fff — never transparent
  • All CSS inline in <style> — no external files, no Google Fonts CDN
  • Chinese font stack: -apple-system, 'PingFang SC', 'Noto Sans SC', sans-serif

Layout pattern (adapt to content):

  1. Header: badge + title + subtitle + divider
  2. Callout box: core thesis in yellow box with gold left border
  3. Content cards: numbered sections with colored accent circles
  4. Takeaway box: dark background, key conclusions
  5. Footer: source attribution + brand

Use the design system reference for exact colors, spacing, and component HTML.

Step 3: Screenshot with Playwright

Use the bundled screenshot script:

node {baseDir}/scripts/screenshot.js /tmp/infographic.html /path/to/output.png 3 750

Arguments: <input.html> <output.png> [scaleFactor=3] [viewportWidth=750]

The script automatically finds Playwright in the npx cache or global install.

If the script fails, use this inline approach:

NODE_PATH=$(find ~/.npm/_npx -name "index.mjs" -path "*/playwright/*" -exec dirname {} \; -exec dirname {} \; 2>/dev/null | head -1) \
node -e "
const pw = require('playwright');
(async () => {
  const browser = await pw.chromium.launch();
  const ctx = await browser.newContext({ viewport: { width: 750, height: 600 }, deviceScaleFactor: 3 });
  const page = await ctx.newPage();
  await page.goto('file:///tmp/infographic.html', { waitUntil: 'networkidle' });
  await page.locator('body').screenshot({ path: 'OUTPUT.png', type: 'png' });
  await browser.close();
})();
"

Never use npx playwright screenshot CLI — it doesn't support deviceScaleFactor and produces blurry 1x images.

Step 4: Deliver

Telegram delivery (lossless):

OpenClaw's message send routes .png files through Telegram's sendPhoto API, which compresses images to max 2048px on the longest side. To deliver the original high-res image, use sendDocument directly:

bash {baseDir}/scripts/send_telegram.sh /path/to/output.png "Caption text"

Or with the message tool if the platform doesn't compress (Discord, etc.), just send normally.

Other platforms: Most platforms preserve document uploads. Use the message tool with filePath for non-Telegram delivery.

Design Principles

  1. Scannable, not readable — if someone has to zoom in to read, there's too much text
  2. Visual hierarchy — title → callout → numbered cards → takeaway. Eyes should flow top-to-bottom naturally
  3. Consistent color coding — each section gets one accent color from the palette, don't mix randomly
  4. Mobile-first — 750px width at 3x = 2250px physical. Looks crisp on any phone
  5. Self-contained — single HTML file, no external resources, works offline

Customization

  • For English-only content: same layout, adjust font stack to include serif options
  • For data-heavy content: use the 2×2 grid pattern or horizontal bar charts in CSS
  • For comparison content: use side-by-side dark cards in the takeaway section
  • For longer articles (7+ sections): consider splitting into 2 images or using a more compact card style

Requirements

  • Node.js (any recent version)
  • Playwright with Chromium (npx playwright install chromium)
  • For Telegram lossless delivery: curl + bot token in ~/.openclaw/openclaw.json

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.9%
按下载量换算37

Claude

27.35%
按下载量换算30

Cursor

21.07%
按下载量换算23

Gemini CLI

10.19%
按下载量换算11

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills