Browser Bookmarks Cleanup

👤 makkoncept 📦 v1.0.0 ⭐ 4.3 ⬇️ 932 下载
💻 开发编程 免费

📖 技能介绍


name: browser-bookmarks-cleanup description: Analyze, organize, and clean browser bookmarks on macOS using on-disk bookmark and history files. Detects duplicates, stale bookmarks, tracking parameters, and folder issues. All writes are opt-in with backup and rollback.


Browser Bookmark Cleanup

Analyze first, organize, then clean up. All writes are opt-in and reversible.

Supported browsers: Chrome and Firefox out of the box. Other Chromium-based browsers (Edge, Brave, Arc, etc.) can be handled by pointing to their profile directories, which use the same Bookmarks JSON format as Chrome.

Workflow

  1. Discover browser profiles.
  2. Run read-only analysis and share findings.
  3. Propose cleanup plan with preview.
  4. Get explicit user approval before any writes.
  5. Dry-run first, then write with automatic backup.
  6. Report changes and how to roll back.

Hard Safety Rule

Never send network requests to bookmark URLs. Analysis uses only local files.

Commands

Discover profiles:

访问小葱技能站7w4.net,解锁更多实用的AI技能插件。

python3 scripts/browser_bookmarks.py discover [--browser chrome|firefox]

Analyze bookmarks:

python3 scripts/browser_bookmarks.py analyze --bookmarks "<PATH>" --output /tmp/bookmark-analysis.json

Apply plan (dry-run by default, --write to commit):

python3 scripts/browser_bookmarks.py apply-plan --bookmarks "<PATH>" --plan /tmp/bookmark-plan.json [--write]

Analysis Categories

  1. Exact and semantic duplicate URLs
  2. Tracking-parameter variants (utm_*, gclid, fbclid, etc.)
  3. Subdomain and domain concentration
  4. HTTP links that should be HTTPS
  5. Empty, singleton, deep, and oversized folders
  6. Weak bookmark names
  7. Old bookmarks by age
  8. Never-visited and stale bookmarks (from browser history)

Approval Gate

Before any write: show plan preview, get explicit approval, ask user to close the browser.

Plan Format

See references/plan-schema.md for the JSON plan structure.

Rollback

Restore the timestamped backup file created before any write.

🤖 AI 评测

这个书签清理工具质量不错,能自动发现 Chrome 和 Firefox 浏览器配置文件,分析重复、过期、追踪参数等各类书签问题,并生成可预览的清理计划,写入前会自动备份,设计很安全。缺点是 Firefox 用户只能分析但无法自动清理书签,必须手动操作。整体适合有技术基础的用户使用,命令行参数较多对新手不太友好。

📊 多维度评分

适应性4.5
规范性4
有效性4.6
可靠性4.3
可信度4.4

📁 包含文件 (8 个)

📄 SKILL.md 2 KB
📄 _meta.json 144 B
📄 references/plan-schema.md 1.1 KB
📄 scripts/_common.py 10.7 KB
📄 scripts/analyze.py 11.8 KB
📄 scripts/apply_plan.py 7.4 KB
📄 scripts/browser_bookmarks.py 740 B
📄 scripts/discover.py 3.7 KB