save-web-page

Save web pages as standalone HTML files using the monolith CLI.

48|8|Updated Oct 17, 2025
One-click install
npx skills add https://github.com/maragudk/skills --skill save-web-page
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: save-web-page
Source: https://github.com/maragudk/skills/tree/main/save-web-page
Command: npx skills add https://github.com/maragudk/skills --skill save-web-page

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires monolith.

What problem does it solve?

This Skill enables saving web pages for offline use using the monolith CLI, allowing you to preserve content for later reference.

Core Features & Use Cases

  • Offline capture: Use monolith --isolate to save a page as a standalone HTML file.
  • Default destination: Save to the ~/AI/web/ directory by default unless instructed otherwise.

Quick Start

Save the page at the provided URL to a named HTML file, e.g., monolith --isolate -o example.html https://example.com

Frequently Asked Questions about save-web-page

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I save a web page for offline use?

Save a web page for offline use by running monolith --isolate -o <filename>.html <url>. The Skill uses the monolith CLI to isolate and embed all page resources into a standalone HTML file, saved to ~/AI/web/ by default unless you specify a different directory.

Can I archive web pages like tutorials and articles to read offline?

Yes. Monolith captures entire pages as self-contained HTML files, preserving tutorials, articles, and reference material for offline access. This is useful for building personal archives of content you need to reference later without internet access.

What does the --isolate flag do in monolith?

The --isolate flag embeds all external resources—images, stylesheets, scripts—directly into the HTML file as data URIs, creating a single portable file that renders without network requests. This ensures archived pages display correctly offline.

Where do saved web pages get stored by default?

Saved pages are stored in the ~/AI/web/ directory by default. You can override this location by specifying a different path when running the monolith command.

Can I customize the filename when saving a web page?

Yes. Use the -o flag followed by your desired filename to customize the saved HTML file name. For example, monolith --isolate -o my-article.html https://example.com saves the page as my-article.html.

What other options does monolith offer for saving pages?

Run monolith -h to view all available command-line options. Beyond --isolate and -o, monolith supports additional flags for controlling how pages are captured and processed.