/ 디렉터리 / 플레이그라운드 / Visual Explainer
● 커뮤니티 nicobailon ⚡ 바로 사용

Visual Explainer

제작: nicobailon · nicobailon/visual-explainer

Skill that turns plans, diffs, audits, and tables into rich HTML pages or slide decks.

Visual Explainer is a Claude Code skill that renders structured outputs — code review summaries, planning audits, diff explanations, project recaps — as polished HTML pages or HTML slide decks. Instead of a wall of text, you get a shareable artifact.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

visual-explainer-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "visual-explainer-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/nicobailon/visual-explainer",
        "~/.claude/skills/visual-explainer"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "visual-explainer-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/nicobailon/visual-explainer",
        "~/.claude/skills/visual-explainer"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "visual-explainer-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/nicobailon/visual-explainer",
        "~/.claude/skills/visual-explainer"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "visual-explainer-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/nicobailon/visual-explainer",
        "~/.claude/skills/visual-explainer"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "visual-explainer-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/nicobailon/visual-explainer",
        "~/.claude/skills/visual-explainer"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "visual-explainer-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/nicobailon/visual-explainer",
          "~/.claude/skills/visual-explainer"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add visual-explainer-skill -- git clone https://github.com/nicobailon/visual-explainer ~/.claude/skills/visual-explainer

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: Visual Explainer

Generate a stakeholder-friendly recap of a code review

👤 Tech leads briefing non-engineers ⏱ ~15 min intermediate

언제 쓸까: After a big PR you want a one-page recap a PM can read.

사전 조건
  • Server/skill installed and authenticated — See repo README
흐름
  1. Load the diff
    Read PR #481's diff + reviews. Use the visual-explainer skill to produce a stakeholder recap.✓ 복사됨
    → A self-contained HTML file with the recap
  2. Share
    Add a slide-deck version too — 5 slides max.✓ 복사됨
    → Second HTML file in deck mode

결과: Two artifacts you can paste into a Slack thread.

함정
  • Don't paste full diffs — Don't paste full diffs — the skill expects pre-summarized inputs. Run a summarization pass first.

비용 및 제한

운영 비용

API 쿼터
See provider docs for rate limits
호출당 토큰
Varies by tool
금액
See repo README for pricing details
Cache tool results and avoid repeated identical calls.

보안

권한, 시크릿, 파급범위

자격 증명 저장: Use environment variables; never commit secrets
데이터 외부 송신: Tool calls go to the provider's API as documented

문제 해결

자주 발생하는 오류와 해결

HTML doesn't render properly

The skill outputs self-contained HTML. Open in a browser, not a markdown previewer.

확인: Right-click → Open in browser
skill doesn't activate

Ensure it's installed at ~/.claude/skills/visual-explainer/ with SKILL.md intact.

확인: Run `ls ~/.claude/skills` and check SKILL.md frontmatter

대안

Visual Explainer 다른 것과 비교

대안언제 쓰나단점/장점
zarazhangrui/frontend-slidesYou want pure slide decksSlides only; no page mode

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기