grab_site
Fetch any webpage, download its design assets (images, icons, CSS, fonts, SVG), extract colors and fonts, and return a manifest JSON. Optionally save the page text as markdown.
Instructions
Grab a page for design inspiration: fetch it through the unlock ladder, download its assets (images/icons/css/fonts/svg), extract the color palette and the fonts in use, and return a manifest (with local file paths) as JSON. Use this for a whole page's design/assets at once; for a single known file use fetch_asset. Saves into out_dir when given, otherwise a 'searchts-grab-' folder. Set read=true to also save the page text as page.md. Returns an 'Error: ...' string on failure.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL of the page to grab. | |
| read | No | If true, also save the page text as page.md (default false). | |
| out_dir | No | Directory to save into (optional; defaults to 'searchts-grab-<host>'). |