/ Verzeichnis / Playground / Visual Explainer
● Community nicobailon ⚡ Sofort

Visual Explainer

von 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.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

visual-explainer-skill.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/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
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.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 nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "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
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: Visual Explainer

Generate a stakeholder-friendly recap of a code review

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

Wann einsetzen: After a big PR you want a one-page recap a PM can read.

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

Ergebnis: Two artifacts you can paste into a Slack thread.

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

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
See provider docs for rate limits
Tokens pro Aufruf
Varies by tool
Kosten in €
See repo README for pricing details
Tipp
Cache tool results and avoid repeated identical calls.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: Use environment variables; never commit secrets
Datenabfluss: Tool calls go to the provider's API as documented

Fehlerbehebung

Häufige Fehler und Lösungen

HTML doesn't render properly

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

Prüfen: Right-click → Open in browser
skill doesn't activate

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

Prüfen: Run `ls ~/.claude/skills` and check SKILL.md frontmatter

Alternativen

Visual Explainer vs. andere

AlternativeWann stattdessenKompromiss
zarazhangrui/frontend-slidesYou want pure slide decksSlides only; no page mode

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen