with one click
read-later
// Bookmark the current page to a "📚 Read Later" folder and save a PDF copy for offline reading. Use when the user wants to save a page for later, bookmark it for reading, or keep an offline copy.
// Bookmark the current page to a "📚 Read Later" folder and save a PDF copy for offline reading. Use when the user wants to save a page for later, bookmark it for reading, or keep an offline copy.
Search for a product across multiple retailers in parallel, save pricing data to disk, and produce an HTML report with the best deals and direct product links. Use when the user asks to compare prices, find the best deal, or check prices across stores.
Research a topic across multiple sources using parallel tabs, save raw content and findings to files, then produce an HTML report and PDF. Use when the user asks to research, investigate, or gather information on a topic.
Extract structured data from web pages — tables, lists, product info, pricing — into clean CSV, JSON, or markdown tables. Parallelizes across hidden tabs for multi-source extraction and saves results to disk incrementally. Use when the user asks to scrape, extract, or pull data from a page.
Find alternative products to something the user is looking at or considering. Searches across retailers and review sites, compares options, and delivers a ranked HTML report with ratings, pricing, and direct links. Use when the user asks for alternatives, similar products, or "something like this but..."
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.
Intelligently fill web forms using provided data — handles text fields, dropdowns, checkboxes, radio buttons, and multi-step forms. Use when the user asks to fill out, complete, or submit a form.
| name | read-later |
| description | Bookmark the current page to a "📚 Read Later" folder and save a PDF copy for offline reading. Use when the user wants to save a page for later, bookmark it for reading, or keep an offline copy. |
| metadata | {"display-name":"Read Later","enabled":"true","version":"1.0"} |
Quick-save the current page: bookmark it into a dedicated "📚 Read Later" folder and download a PDF copy for offline reading.
Activate when the user asks to save a page for later, read it later, bookmark something to come back to, or keep an offline copy of an article.
| Step | Tool | Detail |
|---|---|---|
| Get current page | get_active_page | Identify the page URL and title |
| Check for folder | get_bookmarks | Look for an existing folder named "📚 Read Later" in the bookmark bar |
| Create folder (if needed) | create_bookmark | If the folder doesn't exist, create "📚 Read Later" in the bookmark bar |
| Add bookmark | create_bookmark | Save the current page URL and title into the "📚 Read Later" folder |
| Save PDF | save_pdf | Download the full page as a PDF to the working directory |
| Notify user | — | Tell the user the page has been saved with the bookmark location and PDF file path |
Saved to 📚 Read Later
Title: <page title>
URL: <page url>
PDF: <download path>
| Category | Tools Used |
|---|---|
| Page info | get_active_page |
| Bookmarks | get_bookmarks, create_bookmark |
| Export | save_pdf |