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.mdsource 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
: Path to the document (required)input-file- Supported formats:
,.md
,.txt.pdf
Options
| Option | Short | Description | Default |
|---|---|---|---|
| | Output file path | |
| | Output format (png/jpg/pdf) | |
| | Visual theme | |
| | Image size preset | |
| | Maximum key points | |
| | Output language (ja/en) | |
| Output style (summary/visual/detailed) | | |
| | Target audience | |
| | Include Mermaid diagrams | |
| | Visual format (diagram/cards/comic/auto) | |
| | Panel count for comic (2-6) | |
Themes
| Theme | Description | Best For |
|---|---|---|
| Professional blue tones | Work presentations |
| Vibrant gradients | Marketing materials |
| Dark accents, monospace | Technical documentation |
| White space, simple | Clean summaries |
| Dark background | Screen-friendly |
Size Presets
| Preset | Dimensions | Best For |
|---|---|---|
| 1200x630px | Slack, Teams, Discord |
| 1920x1080px | Presentations |
| 2480x3508px | Print (A4 portrait) |
| 1080x1080px | Social media |
Output Styles
| Style | Description | Understanding Level |
|---|---|---|
| Single page, concise | Surface (what exists) |
| Diagram + context | Deep (why & how) |
| Multi-section with TOC | Comprehensive |
Visual Types (visual style only)
| Type | Best For |
|---|---|
| Flows, processes, API, data structures |
| Feature lists, comparisons |
| User journeys, tutorials, before/after |
| 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
- Read and Analyze: Parse document structure
- Extract Key Points: Based on target audience
- Generate Diagrams: If
enabled (Mermaid)--diagram - Select Icons: Lucide SVG icons for categories
- Generate HTML: Based on style template
- Render with Playwright: Capture as image
- 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