بنقرة واحدة
manage-bookmarks
// Organize bookmarks — find duplicates, categorize by topic, create a clean folder structure, and clean up unused bookmarks. Use when the user asks to organize, clean up, sort, or manage their bookmarks.
// Organize bookmarks — find duplicates, categorize by topic, create a clean folder structure, and clean up unused bookmarks. Use when the user asks to organize, clean up, sort, or manage their bookmarks.
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..."
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.
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.
| name | manage-bookmarks |
| description | Organize bookmarks — find duplicates, categorize by topic, create a clean folder structure, and clean up unused bookmarks. Use when the user asks to organize, clean up, sort, or manage their bookmarks. |
| metadata | {"display-name":"Manage Bookmarks","enabled":"true","version":"1.0"} |
Analyze the user's bookmark collection, propose a clean top-level folder structure (max 5 folders), execute with confirmation, and deliver a markdown summary of everything that changed.
Activate when the user asks to organize bookmarks, find duplicates, create bookmark folders, clean up old bookmarks, or restructure their bookmark library.
Retrieve bookmarks using get_bookmarks to get the full bookmark tree.
Analyze the collection thoroughly:
localhost, empty titles)Present the analysis to the user. Use short one-word slug categories:
## Bookmark Analysis
**Total:** 342 bookmarks, 12 folders
**Duplicates:** 8
### Proposed Folders (top-level)
- dev — 94 bookmarks (GitHub, Stack Overflow, docs)
- work — 67 bookmarks (Notion, Slack, Jira, company domains)
- news — 45 bookmarks (HN, Reddit, RSS feeds)
- shop — 28 bookmarks (Amazon, product pages)
- misc — 108 bookmarks (everything else)
### Duplicates to Remove
- github.com/user/repo × 3 (keep: "User/Repo - GitHub")
- notion.so/page × 2 (keep: "Project Notes")
Folder naming rules:
dev, work, news, shop, ref, social, miscOnce the user confirms:
| Step | Tool | Detail |
|---|---|---|
| Create folders | create_bookmark | Create each top-level folder from the approved plan |
| Move bookmarks | move_bookmark | Move each bookmark into its assigned folder |
| Remove duplicates | remove_bookmark | Remove confirmed duplicates, keeping the one with the better title |
Order matters: Create all folders first, then move bookmarks, then remove duplicates.
After all operations complete, present a clean markdown summary:
## Bookmark Cleanup Complete
**Before:** 342 bookmarks, 12 folders
**After:** 334 bookmarks, 5 folders
### Created Folders
- dev (94 bookmarks)
- work (67 bookmarks)
- news (45 bookmarks)
- shop (28 bookmarks)
- misc (108 bookmarks)
### Duplicates Removed (8)
- github.com/user/repo — removed 2 copies
- notion.so/page — removed 1 copy
### Moved
- 287 bookmarks reorganized into new folders
- 47 bookmarks already in correct location
| Category | Tools Used |
|---|---|
| Read | get_bookmarks |
| Create | create_bookmark |
| Move | move_bookmark |
| Delete | remove_bookmark |