Cross-platform URL collection & knowledge management with agent-first auto-registration. Use when users say "save/bookmark/collect/remember this", need to organize links into categories, share curated collections, or build a structured knowledge base from web resources. Supports collaborative shared categories, full-text search, and magic-link delivery to users.
Coding
Url Bookmarker
Try itSave, categorize, search, and export web bookmarks. Use when user wants to bookmark a URL, organize links into folders/tags, find a saved link, or export boo...
What it does
Save, categorize, search, and export web bookmarks. Use when user wants to bookmark a URL, organize links into folders/tags, find a saved link, or export bookmarks. Commands: add url title -t tags -f folder, list filter, search query, tag url tags, remove url, export format.
The skill document
URL Bookmarker
Save, categorize, search, and export web bookmarks with tag and folder organization. Uses local JSON storage.
Commands
Add a bookmark
bookmark add [title] [-t tags] [-f folder]
url(required): The web address to savetitle(optional): Custom title, defaults to URL hostname-t tags: Comma-separated tags (e.g.-t crypto,research)-f folder: Folder name (e.g.-f DeFi)
List bookmarks
bookmark list [filter]
- No filter: shows all bookmarks
-t tag: filter by tag-f folder: filter by folder-a: show all tags and folders
Search bookmarks
bookmark search
Full-text search across URLs, titles, and tags.
Tag a bookmark
bookmark tag
Add tags to an existing bookmark. Use -t to replace all tags.
Remove a bookmark
bookmark remove
Export bookmarks
bookmark export [format]
Formats: json (default), html (browser-importable), csv
Storage
Bookmarks stored in assets/bookmarks.json:
{
"urls": [{ "url": "...", "title": "...", "tags": [], "folder": null, "added": "ISO date" }],
"tags": ["tag1", "tag2"],
"folders": ["folder1"]
}
Script Usage
Run via Python (from skill directory):
$env:PYTHONIOENCODING="utf-8"; uv run python scripts/bookmark_manager.py [args]
Examples:
uv run python scripts/bookmark_manager.py add https://example.com "Example Site" -t research -f DevTools
uv run python scripts/bookmark_manager.py list -t crypto
uv run python scripts/bookmark_manager.py search "uniswap"
uv run python scripts/bookmark_manager.py export html
Related skills
Bookmark & Desktop Dock AI Assistant. Use with the Command Compass Windows app to turn prompts, skill files, local files, folders, app shortcuts, web links,...
Create and manage short URLs with custom aliases and tracking. Use when user needs to shorten long URLs, create memorable custom links, track click statistic...
Summarize any web page by URL or by pasting text. Returns a concise structured summary with key points, entities, and action items. Use when the user wants a quick digest of an article, documentation page, or any web content without reading the full source.
AI收藏夹与桌面Dock助手。配合指令罗盘 Windows 客户端使用,把提示词、技能文件、本地文件、文件夹、软件快捷方式、网页链接和浏览器收藏夹整理成可搜索、可复制、可打开的指令卡。适合需要 AI 收藏夹、Prompt 管理、桌面 Dock、文件管理器、快捷启动器、链接管理和本地资源整理的用户。
Read Later Pro - Save, organize, and read web articles offline. Extract clean article content from any URL, save as Markdown/PDF/EPUB, manage reading lists,...