ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

infographic

Generate high-density infographics with structured layout and style choices and bundled generation tooling. Use when the user asks to create an infographic, a visual summary, or a dense single-page information graphic.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/632657122/infographic
Or

Infographic Generation (infographic)

Reference Images (Important)

If you use reference images (image-to-image / series reference / consistency refs):

  • Reference images must be public URLs.
  • HTTPS is strongly recommended.
  • http:// may work but is insecure and can be blocked by some networks.
  • Local file paths and data: URLs are not supported by the WeryAI gateway.

This skill turns complex source material into a single high-density infographic.

Maintain the layout and style mapping when the bundled generation runtime updates, and re-check recent runtime behavior if a newer version changes prompt handling.

Script:

  • scripts/scaffold.ts
  • scripts/build-prompt.ts
  • scripts/build-batch.ts

Safety & Scope

  • Network: This skill calls the WeryAI gateway over HTTPS (https://api.weryai.com).
  • Auth: Uses IMAGE_GEN_API_KEY. The key is never printed. It may be persisted only when you explicitly run npm run setup -- --persist-api-key.
  • Reference images: Must be public URLs (https:// recommended). http:// may work but is insecure. Local file paths and data: URLs are rejected.
  • No arbitrary shell: The generation runtime does not execute arbitrary shell commands.
  • Files written: Output images and optional local config under .image-skills/infographic/ (project) and/or ~/.image-skills/infographic/ (home).

Use Cases

  • high-density information graphics
  • visual summaries
  • data relationship graphics
  • process posters
  • content that needs to be explained in one image

Not a good fit for:

  • a single article cover image
  • multi-card RedNote content
  • a sequential comic narrative

Core Dimensions

  1. layout: the information structure
  2. style: the visual language

See:

  • references/analysis-framework.md
  • references/structured-content-template.md
  • references/layouts-and-styles.md
  • references/prompt-template.md

Commands

ScriptPurpose
scripts/scaffold.tsInitialize analysis.md, structured-content.md, and prompts
scripts/build-batch.tsGenerate batch.json from prompt variants
scripts/build-prompt.tsBuild final prompt from structured-content.md
npm run generateGenerate the infographic
./scripts/vendor/compression-runtime/scripts/main.tsCompress output for delivery

Workflow

Step 1: Initialize Working Files

Create the working directory and starter files:

${BUN_X} {baseDir}/scripts/scaffold.ts \
  --output-dir infographic/topic-slug \
  --topic "Topic name" \
  --lang en

This creates:

  • analysis.md
  • structured-content.md
  • prompts/infographic.md

Step 2: Understand the Source

Extract:

Metadata

Author@632657122
Stars3788
Views0
Updated2026-04-04
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-632657122-infographic": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.