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本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
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
$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. 下の青いボタンを押して
nebula-scrape-url.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
nebula-scrape-urlフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
デザイン参照のためのURLスクレイピング
これはウェブページのURLにのみ適用されます。 以下には使用しないでください。
- Figma URL (代わりにFigma MCPを使用してください)
- GitHub URL (コードを直接読んでください)
- ドキュメントURL (必要に応じて読んで検索してください)
ワークフロー
-
スクレイパーを実行して、スクリーンショットとHTMLをキャプチャします。
node scripts/scrape-page.js <url> -
scraped/<timestamp>/に出力を確認します。screenshot-desktop.png- デスクトップレイアウトのリファレンスscreenshot-tablet.png- タブレットレイアウトのリファレンスscreenshot-mobile.png- モバイルレイアウトのリファレンスpage.html- 構造リファレンス用の完全なHTML
-
スクリーンショットを使用して、視覚的なデザイン(レイアウト、スペーシング、色、タイポグラフィ)を理解します。
-
HTMLを使用して、コンテンツの構造と階層を理解します。
-
nebula-component-creationskillを使用してコンポーネントを構築します。
例
ユーザープロンプト: "このページを構築してください: https://example.com/pricing"
- 実行:
node scripts/scrape-page.js https://example.com/pricing - スクリーンショットを確認してレイアウトを理解します
- HTMLを確認して構造を理解します
- 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
-
Run the scraper to capture screenshots and HTML:
node scripts/scrape-page.js <url> -
Review the output in
scraped/<timestamp>/:screenshot-desktop.png- Desktop layout referencescreenshot-tablet.png- Tablet layout referencescreenshot-mobile.png- Mobile layout referencepage.html- Full HTML for structure reference
-
Use the screenshots to understand the visual design (layout, spacing, colors, typography).
-
Use the HTML to understand the content structure and hierarchy.
-
Build the components using the
nebula-component-creationskill.
Example
User prompt: "Build me this page: https://example.com/pricing"
- Run:
node scripts/scrape-page.js https://example.com/pricing - Review the screenshots to understand the layout
- Review the HTML to understand the structure
- Create components that match the design using Tailwind CSS