Claude-code-customes visualize

Convert documents to infographic images (PNG/JPG/PDF) for easy sharing

install
source · Clone the upstream repo
git clone https://github.com/sc30gsw/claude-code-customes
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sc30gsw/claude-code-customes "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/visualize" ~/.claude/skills/sc30gsw-claude-code-customes-visualize && rm -rf "$T"
manifest: .claude/skills/visualize/SKILL.md
source content

Visualize: Document to Infographic Converter

Transform documents into visually appealing infographic images for sharing on chat applications like Slack, Teams, or Discord.

Usage

/visualize <input-file> [options]

Arguments

  • input-file
    : Path to the document (required)
  • Supported formats:
    .md
    ,
    .txt
    ,
    .pdf

Options

OptionShortDescriptionDefault
--output
-o
Output file path
{input}-infographic.png
--format
-f
Output format (png/jpg/pdf)
png
--theme
-t
Visual theme
business
--size
-s
Image size preset
chat
--max-points
-m
Maximum key points
6
--lang
-l
Output language (ja/en)
ja
--style
Output style (summary/visual/detailed)
summary
--audience
-a
Target audience
team
--diagram
-d
Include Mermaid diagrams
false
--visual-type
-vt
Visual format (diagram/cards/comic/auto)
auto
--panels
-p
Panel count for comic (2-6)
3

Themes

ThemeDescriptionBest For
business
Professional blue tonesWork presentations
modern
Vibrant gradientsMarketing materials
tech
Dark accents, monospaceTechnical documentation
minimal
White space, simpleClean summaries
dark
Dark backgroundScreen-friendly

Size Presets

PresetDimensionsBest For
chat
1200x630pxSlack, Teams, Discord
slide
1920x1080pxPresentations
a4
2480x3508pxPrint (A4 portrait)
square
1080x1080pxSocial media

Output Styles

StyleDescriptionUnderstanding Level
summary
Single page, conciseSurface (what exists)
visual
Diagram + contextDeep (why & how)
detailed
Multi-section with TOCComprehensive

Visual Types (visual style only)

TypeBest For
diagram
Flows, processes, API, data structures
cards
Feature lists, comparisons
comic
User journeys, tutorials, before/after
auto
Auto-select based on content

Examples

# Basic usage
/visualize ./docs/report.pdf

# Theme and size
/visualize ./notes.md --theme modern --size slide

# Visual style with diagram
/visualize ./architecture.md --style visual --visual-type diagram

# Comic format (4 panels)
/visualize ./tutorial.md --style visual --visual-type comic --panels 4

# Executive summary
/visualize ./quarterly-report.pdf --audience executive --style summary

# Technical with diagrams
/visualize ./api-spec.md --audience technical --diagram --style detailed

Processing Workflow

  1. Read and Analyze: Parse document structure
  2. Extract Key Points: Based on target audience
  3. Generate Diagrams: If
    --diagram
    enabled (Mermaid)
  4. Select Icons: Lucide SVG icons for categories
  5. Generate HTML: Based on style template
  6. Render with Playwright: Capture as image
  7. Output and Report: Save file and report results

Audience Adaptation

Executive

  • Business impact, ROI, strategic implications
  • Non-technical language, decision-focused

Team

  • Actionable items, responsibilities, timelines
  • Balanced technical/business terms

Technical

  • Implementation details, architecture, APIs
  • Technical terminology, code references