jpskill.com
🎨 デザイン コミュニティ

nebula-scrape-url

指定されたURLのウェブページから、デザインの参考となるスクリーンショット(PC、タブレット、スマホ)とHTMLを収集し、デザインの再現や実装に役立てるSkill。

📜 元の英語説明(参考)

Capture web page screenshots and HTML for design reference. Use when the user provides a URL and asks to build, recreate, or implement a design. Runs `scripts/scrape-page.js` to capture desktop/tablet/mobile screenshots and HTML. Not for Figma, GitHub, or documentation URLs.

🇯🇵 日本人クリエイター向け解説

一言でいうと

指定されたURLのウェブページから、デザインの参考となるスクリーンショット(PC、タブレット、スマホ)とHTMLを収集し、デザインの再現や実装に役立てるSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o nebula-scrape-url.zip https://jpskill.com/download/9241.zip && unzip -o nebula-scrape-url.zip && rm nebula-scrape-url.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/9241.zip -OutFile "$d\nebula-scrape-url.zip"; Expand-Archive "$d\nebula-scrape-url.zip" -DestinationPath $d -Force; ri "$d\nebula-scrape-url.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して nebula-scrape-url.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → nebula-scrape-url フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

デザイン参照のためのURLスクレイピング

これはウェブページのURLにのみ適用されます。 以下には使用しないでください。

  • Figma URL (代わりにFigma MCPを使用してください)
  • GitHub URL (コードを直接読んでください)
  • ドキュメントURL (必要に応じて読んで検索してください)

ワークフロー

  1. スクレイパーを実行して、スクリーンショットとHTMLをキャプチャします。

    node scripts/scrape-page.js <url>
  2. scraped/<timestamp>/ に出力を確認します。

    • screenshot-desktop.png - デスクトップレイアウトのリファレンス
    • screenshot-tablet.png - タブレットレイアウトのリファレンス
    • screenshot-mobile.png - モバイルレイアウトのリファレンス
    • page.html - 構造リファレンス用の完全なHTML
  3. スクリーンショットを使用して、視覚的なデザイン(レイアウト、スペーシング、色、タイポグラフィ)を理解します。

  4. HTMLを使用して、コンテンツの構造と階層を理解します。

  5. nebula-component-creation skillを使用してコンポーネントを構築します。

ユーザープロンプト: "このページを構築してください: https://example.com/pricing"

  1. 実行: node scripts/scrape-page.js https://example.com/pricing
  2. スクリーンショットを確認してレイアウトを理解します
  3. HTMLを確認して構造を理解します
  4. Tailwind CSSを使用してデザインに一致するコンポーネントを作成します
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Scraping URLs for design reference

This applies to web page URLs only. Do not use this for:

  • Figma URLs (use the Figma MCP instead)
  • GitHub URLs (read the code directly)
  • Documentation URLs (read or search as needed)

Workflow

  1. Run the scraper to capture screenshots and HTML:

    node scripts/scrape-page.js <url>
  2. Review the output in scraped/<timestamp>/:

    • screenshot-desktop.png - Desktop layout reference
    • screenshot-tablet.png - Tablet layout reference
    • screenshot-mobile.png - Mobile layout reference
    • page.html - Full HTML for structure reference
  3. Use the screenshots to understand the visual design (layout, spacing, colors, typography).

  4. Use the HTML to understand the content structure and hierarchy.

  5. Build the components using the nebula-component-creation skill.

Example

User prompt: "Build me this page: https://example.com/pricing"

  1. Run: node scripts/scrape-page.js https://example.com/pricing
  2. Review the screenshots to understand the layout
  3. Review the HTML to understand the structure
  4. Create components that match the design using Tailwind CSS