Detect duplicate bookmarks, check for dead links, and organize
Scanned 6/7/2026
Install via CLI
openskills install modbender/skill-library-mcp---
name: browser-bookmarks
description: Detect duplicate bookmarks, check for dead links, and organize
bookmark exports.
---
# Browser Bookmarks
Analyze and clean up browser bookmark exports.
## Capabilities
- **Duplicate Detection**: Find duplicate URLs across folders
- **Dead Link Check**: HTTP HEAD requests to detect broken links
- **Organization**: Categorize and suggest folder restructuring
- **Export Parsing**: Chrome/Firefox HTML and JSON bookmark formats
## Instructions
1. **Parse bookmarks**: Extract URLs, titles, folders from HTML/JSON export
```bash
# Extract URLs from Chrome HTML export
grep -oP 'HREF="\K[^"]+' bookmarks.html | sort > urls.txt
wc -l urls.txt # total bookmarks
```
2. **Find duplicates**:
```bash
sort urls.txt | uniq -d # duplicate URLs
sort urls.txt | uniq -c | sort -rn | head -20 # most duplicated
```
3. **Check dead links** (batch with rate limiting):
```bash
while read url; do
code=$(curl -s -o /dev/null -w "%{http_code}" -m 5 -L "$url" 2>/dev/null)
[ "$code" != "200" ] && echo "$code $url"
sleep 0.5 # rate limit
done < urls.txt
```
4. **Report format**:
```
📚 Bookmark Analysis — <filename>
Total: 342 | Duplicates: 18 | Dead: 7
## Duplicates
| URL | Count | Folders |
|-----|-------|---------|
## Dead Links (non-200)
| URL | Status | Title |
|-----|--------|-------|
```
## Edge Cases
- **Large exports (>5000 bookmarks)**: Sample dead link checks; full duplicate scan is fine
- **Paywalled sites**: May return 403 — flag as "possibly paywalled" not "dead"
- **Redirects**: Follow redirects (`curl -L`); flag permanent redirects (301) for URL updates
## Security
- Bookmark files may contain private/internal URLs — don't share results publicly
- Rate-limit external requests to avoid IP blocks
## Requirements
- Exported bookmarks file (Chrome: `chrome://bookmarks` → Export, Firefox: Library → Export)
- `curl`, `grep`, `sort` (standard Unix tools)
- No API keys needed
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.
Digital Audio Workstation usage, music composition, interactive music systems, and game audio implementation for immersive soundscapes.
Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.
Run a single Terminal-Bench problem through Paperclip in a bounded, human-in-the-loop improvement cycle until the smoke passes, the board rejects the next fix, the iteration budget is exhausted, or a real blocker is named. Each iteration runs a bounded smoke against an isolated Paperclip App worktree, captures artifacts, diagnoses the exact stop point with `/diagnose-why-work-stopped`, requests board confirmation before any product fix, then reruns against the same worktree. Use whenever an i...