website-analysis
Installation
SKILL.md
This skill crawls an entire website once and produces both the structural map and the full content extraction in a single pass. Every page visit yields structure (links, nav, redirects, issues) AND content (text, images, metadata, assets).
The user provides: the root URL of the site to analyze, and optionally the output format (TypeScript, JSON, Markdown).
Why a Single Pass
Running structure discovery and content extraction separately means visiting every page twice. Since the crawler already navigates each page, waits for load, scrolls for lazy content, and snapshots the DOM — it should extract everything in that same visit.
OLD (two passes):
website-structure → visits every page → extracts links only
content-extraction → visits every page AGAIN → extracts content
NEW (single pass):
website-analysis → visits every page ONCE → extracts links + content together