<< All versions
Skill v1.0.1
currentLLM-judged scan95/100browseros-ai/browseros-agent/save-page
3 files
──Details
PublishedJune 26, 2026 at 08:00 PM
Content Hashsha256:6d51b12a616d0b6f...
Git SHAe886782210d1
Bump Typepatch
──Files
Files (1 file, 1.6 KB)
SKILL.md1.6 KBactive
SKILL.md · 48 lines · 1.6 KB
version: "1.0.1" name: save-page description: Save web pages as PDF files for offline reading, archiving, or sharing. Use when the user asks to save, download, export, or archive a page as PDF. metadata: display-name: Save Page enabled: "true" version: "1.0"
Save Page
When to Use
Activate when the user asks to save a page as PDF, download a page for offline reading, archive a webpage, or export page content to a file.
Steps
- Navigate to the target page using
navigate_pageif not already there. If the user provides multiple URLs, process them one by one.
- Prepare the page for saving:
- Dismiss any popups or overlays that would appear in the PDF
- Scroll to load any lazy-loaded content if the page uses infinite scroll
- Save as PDF using
save_pdfwith a descriptive filename in the working directory:
- Pattern:
{domain}-{title-slug}-{date}.pdf - Example:
nytimes-climate-report-2025-03-11.pdf - Let the user specify a custom path if they prefer
- For multiple pages, process each URL sequentially:
- Navigate to the page
- Save as PDF
- Report progress to the user
- Confirm the save:
`` Saved: [filename].pdf Source: [URL] Location: [file path] ``
Tips
- For articles, the PDF will capture the current page state — make sure content is fully loaded.
- Some pages have print stylesheets that produce better PDFs —
save_pdfuses these automatically. - For documentation sites with multiple pages, offer to save each section as a separate PDF.
- If saving fails, offer the alternative of using
get_page_contentto save as markdown.