/ ディレクトリ / プレイグラウンド / HTML Anything
● コミュニティ clockless-org ⚡ 即起動

HTML Anything

作者 clockless-org · clockless-org/html-anything

Convert any file (logs, PDFs, transcripts, code) into a beautiful, shareable HTML page.

Drop a file — log dump, PDF, WhatsApp chat export, code, transcript — and get back a self-contained, polished HTML page across 16 design themes. Great for sharing intermediate work without paying for Notion-style hosting.

なぜ使うのか

主な機能

ライブデモ

実際の動作

html-anything-skill.replay ▶ 準備完了
0/0

インストール

クライアントを選択

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

Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。

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

Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

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

Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。

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

Claude Desktop と同じ形式。Windsurf を再起動して反映。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "html-anything-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/clockless-org/html-anything",
        "~/.claude/skills/html-anything"
      ]
    }
  ]
}

Continue はマップではなくサーバーオブジェクトの配列を使用。

~/.config/zed/settings.json
{
  "context_servers": {
    "html-anything-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/clockless-org/html-anything",
          "~/.claude/skills/html-anything"
        ]
      }
    }
  }
}

context_servers に追加。保存時に Zed がホットリロード。

claude mcp add html-anything-skill -- git clone https://github.com/clockless-org/html-anything ~/.claude/skills/html-anything

ワンライナー。claude mcp list で確認、claude mcp remove で削除。

ユースケース

実用的な使い方: HTML Anything

Turn an incident log into a shareable HTML report

👤 On-call engineers writing postmortems ⏱ ~15 min intermediate

使うタイミング: You have raw logs + a timeline draft and want a shareable artifact, not a wall of text.

前提条件
  • Server/skill installed and authenticated — See repo README
フロー
  1. Bundle
    Use html-anything to turn /incidents/2026-05-21/*.log + timeline.md into a single HTML report. Use the 'serious' theme.✓ コピーしました
    → One incident.html
  2. Share
    Email the file path to me.✓ コピーしました
    → Self-contained HTML, no broken images when forwarded

結果: A polished postmortem artifact in one shot.

注意点
  • Some 'magazine' themes embed large fonts that bloat the file. Use 'minimal' for email attachments. — Some 'magazine' themes embed large fonts that bloat the file. Use 'minimal' for email attachments.

コストと制限

運用コスト

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 too large

Switch theme to 'minimal' (no embedded fonts). Inline images become base64 — strip them for size.

確認: ls -lh report.html
code blocks don't highlight

Some themes default to no-highlight. Pass --code-highlight on.

確認: Inspect HTML for highlight classes

代替案

HTML Anything 他との比較

代替案代わりに使う場面トレードオフ
zarazhangrui/frontend-slidesYou want slide decksSlides only

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る