visualize

作者 careerhackeralex已验证

Turn any idea into a beautiful HTML visualization — with one prompt. A Claude Code skill.

115
Stars
27
Forks
JavaScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/careerhackeralex/visualize

快速入门

使用 visualize 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

⚡ Visualize

Turn any idea into a beautiful HTML visualization — with one prompt.

A Claude Code plugin that creates stunning, self-contained HTML visualizations from natural language. Slide decks, dashboards, infographics, flowcharts, timelines, and more — all as single HTML files you can open anywhere.

HTML is not a "website." It's a visualization tool. Code is cheap. Everyone should feel empowered to visualize anything.

What It Does

Describe what you want to visualize → get a production-quality HTML file.

You: "Create a pitch deck for my AI startup"
→ pitch-deck.html (interactive slides, dark/light themes, keyboard nav, export to PNG/PDF)

You: "Visualize this CSV data as a dashboard"
→ sales-dashboard.html (KPI cards, Chart.js graphs, responsive grid)

You: "Make an infographic about remote work trends"
→ remote-work-infographic.html (big stats, scroll animations, print-ready)

Supported Visualization Types

TypeDescription
🎯 Slide DeckPresentations with keyboard nav, transitions, speaker notes
📊 DashboardKPI cards, charts, metrics — Chart.js powered
📈 InfographicScrollable visual storytelling with animations
🔀 FlowchartProcess diagrams, decision trees, architecture diagrams
📅 TimelineChronological events, roadmaps, milestones
⚖️ ComparisonSide-by-side features, pros/cons matrices
📉 Data VizBar, line, pie, radar charts from raw data
📄 One-PagerLanding pages, summaries, briefs
🧠 Mind MapConcept relationships, brainstorming visuals
📋 KanbanStatus boards, categorized item tracking

Why This Over Gamma / Canva / PowerPoint?

Gamma/CanvaPowerPointVisualize
Cost$10-40/mo$100+ licenseFree
OutputProprietary.pptxStandard HTML
CustomizationTemplate-limitedManualInfinite
InteractivityLimitedNoneFull HTML/CSS/JS
AI-nativeBolted-onCopilot add-onCore workflow
OfflineNoYesYes
Version controlNoBarelyYes (it's text)
File sizeN/A10MB+~20KB

Features

Every visualization includes:

  • 🌙 Dark / Light / Auto themes — toggle via hamburger menu, persisted to localStorage
  • 📥 Download as PNG — 2x retina quality via html-to-image
  • 🖨️ Print / Save PDF — optimized @media print styles
  • 📱 Responsive — works on desktop, tablet, and mobile
  • ⌨️ Keyboard navigation — arrow keys for slide decks
  • 🎨 Beautiful defaults — professional typography, HSL color system, 8px spacing grid
  • 📦 Single file — everything inline, zero dependencies beyond optional CDN libraries
  • Accessible — semantic HTML, WCAG AA contrast

CDN Libraries (optional, used when beneficial)

  • Chart.js — beautiful charts with zero config
  • D3.js — complex custom data visualizations
  • Mermaid — diagrams from text definitions
  • Three.js — 3D visualizations
  • Leaflet — interactive maps
  • Reveal.js — full-featured slide engine

Installation

Claude Code Plugin (recommended)

# Step 1: Add the marketplace (one-time)
claude plugin marketplace add careerhackeralex/visualize

# Step 2: Install the plugin
claude plugin install visualize@careerhackeralex

To update later:

claude plugin update visualize@careerhackeralex

Manual Installation

# Clone the repo
git clone https://github.com/careerhackeralex/visualize.git

# Claude Code auto-discovers plugins with .claude-plugin/plugin.json
# Just open Claude Code in the cloned directory, or add it as a plugin dir:
claude plugin install --plugin-dir /path/to/visualize

Usage

Once installed, just ask Claude Code to visualize anything:

"Create a presentation about our Q4 results"
"Visualize this data as a dashboard: [paste CSV/JSON]"
"Make an infographic summarizing this article: [paste URL]"
"Show me a flowchart of our deployment process"
"Create a timeline of AI milestones"

The skill triggers automatically on visualization-related requests.

Examples

See the examples/ directory for sample outputs.

Project Structure

visualize/
├── .claude-plugin/
│   └── plugin.json             # Plugin manifest
├── skills/
│   └── visualize/
│       ├── SKILL.md            # Core skill instructions
│       └── references/         # Design system, skeleton, patterns
├── examples/                   # 15 sample HTML outputs
├── eval/                       # Quality assurance & eval loop
├── research/                   # Design research notes
├── CLAUDE.md                   # Claude Code context file
├── README.md                   # This file
└── LICENSE                     # MIT

How It Works

  1. You describe what you want to visualize
  2. Claude Code reads the skill instructions (design system, patterns, best practices)
  3. It generates a single .html file with inline CSS/JS
  4. Open in any browser — done

The skill encodes professional design knowledge (typography scales, color theory, spacing rhythm, animation best practices) so every output looks polished without manual design work.

Contributing

We use a systematic evaluation loop to improve quality:

  1. Generate — run test cases from eval/stress-tests.md
  2. Evaluate — score outputs using the 8-dimension rubric
  3. Fix the skill — update SKILL.md or references (not individual outputs)
  4. Re-evaluate — verify the fix works across test cases
  5. Ship when overall score ≥ 9.0 with no dimension below 8

See eval/LOOP.md for the full methodology.

Quality Bar

We aim to produce visualizations that people would:

  • Screenshot and share on social media
  • Use in a real meeting without embarrassment
  • Prefer over Gamma/Canva output
  • Ask "how did you make this?"

The bar is not "good for AI-generated." The bar is "good, period."

License

MIT — use it however you want.

Credits

Built by Career Hacker Alex (커리어해커 알렉스)

기술로 선한영향력을 만들고 싶습니다 — Create positive impact through technology.

常见问题

What is visualize?

visualize is an open-source ide extensions skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by careerhackeralex. Turn any idea into a beautiful HTML visualization — with one prompt. A Claude Code skill. It has 115 GitHub stars.

Is visualize safe to use?

Yes. visualize passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install visualize?

Clone the repository with "git clone https://github.com/careerhackeralex/visualize" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is visualize written in?

visualize is primarily written in JavaScript. It is open-source under careerhackeralex on GitHub, so you can review or fork the full source.

Are there alternatives to visualize?

Yes. SkillsLLM lists many other IDE Extensions skills you can browse and compare side by side. Open the IDE Extensions category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh visualize against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

claudian

by YishenTu

An Obsidian plugin that embeds Claude Code/Codex as an AI collaborator in your vault

14,921972TypeScript
IDE 扩展
查看详情

OpenMythos

by kyegomez

A theoretical reconstruction of the Claude Mythos architecture, built from first principles using the available research literature.

14,8003,292Python
IDE 扩展
查看详情

cursor-hooks

by cursor

5

通过 Hooks 自动化 Cursor Agent 事件相关行为。

12,500890TypeScript
IDE 扩展claude-codeai-tools
查看详情

arscontexta

by agenticnotetaking

Claude Code plugin that generates individualized knowledge systems from conversation. You describe how you think and work, have a conversation and get a complete second brain as markdown files you own.

3,479220Shell
IDE 扩展
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情