Bookmark Organizer
/install bookmark-organizer
Bookmark Organizer Skill (v1.0)
This skill provides a robust, reusable script to turn a standard browser bookmark export file (HTML) into a clean, categorized, and searchable knowledge base in Markdown format.
Core Features
- Parses Standard Bookmark Files: Extracts links, titles, and creation dates.
- Automatic Deduplication: Processes each unique URL only once.
- Customizable Categorization: Uses an external
rules.jsonfile, allowing any user to define their own categories and keywords without editing code. - Dead Link Checking: An optional flag (
--check-links) finds and reports broken or inaccessible links, and excludes them from the final lists. - Time-Sorted Output: All lists are sorted chronologically with the newest bookmarks first.
How to Use
1. (Optional) Customize Rules
To change how links are categorized, edit the rules.json file located in the script's directory.
File: skills/bookmark-organizer/scripts/rules.json
2. Run the Organizer Script
Execute the organize.py script, providing the input HTML path and a desired output directory. Use the optional --check-links flag to perform a network check on all URLs.
Command:
python3 /path/to/organize.py \x3Cinput_file> \x3Coutput_dir> [--check-links]
Example:
# Define paths
SKILL_SCRIPT="/root/.openclaw/workspace-aii/skills/bookmark-organizer/scripts/organize.py"
INPUT_FILE="./bookmarks/import/bookmarks.html"
OUTPUT_DIR="./bookmarks/organized_v1"
# Create output directory
mkdir -p $OUTPUT_DIR
# Run the script (with dead link checking)
python3 $SKILL_SCRIPT $INPUT_FILE $OUTPUT_DIR --check-links
3. Review the Output
The script will generate:
- Markdown files for each category (e.g.,
ai-art.md,games-mods.md). - A
_SUMMARY.mdfile with statistics. - If checked, a
_dead_links_report.mdfile.
Start by inspecting _SUMMARY.md to get an overview.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install bookmark-organizer - 安装完成后,直接呼叫该 Skill 的名称或使用
/bookmark-organizer触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Bookmark Organizer 是什么?
Imports browser bookmarks from HTML and converts them into a deduplicated, categorized, time-sorted Markdown knowledge base with optional dead-link checking. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 364 次。
如何安装 Bookmark Organizer?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install bookmark-organizer」即可一键安装,无需额外配置。
Bookmark Organizer 是免费的吗?
是的,Bookmark Organizer 完全免费(开源免费),可自由下载、安装和使用。
Bookmark Organizer 支持哪些平台?
Bookmark Organizer 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Bookmark Organizer?
由 farhigh233(@farhigh233)开发并维护,当前版本 v1.0.0。