topic-bookmarks-reorganizer

topic-bookmarks-reorganizer is a skill for Claude Code, Codex from YangsonHung/awesome-agent-skills. It costs 31 tokens per session (546 once invoked), scanned A, original, MIT.

A tool for reorganizing one topic folder from a browser bookmarks export into a cleaner Netscape HTML file that browsers can import.

In plain words
What is it for?
Use it to select a topic folder from an exported bookmarks file, regroup its links, remove duplicates, keep only that topic, and create a new HTML file for import.
Why use it?
It removes duplicate URLs and groups links and subfolders more clearly while preserving an importable browser-bookmark format.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to select a topic folder from an exported bookmarks file, regroup its links, remove duplicates, keep only that topic, and create a new HTML file for import.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yangsonhung/awesome-agent-skills/topic-bookmarks-reorganizer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add YangsonHung/awesome-agent-skills --skill topic-bookmarks-reorganizer
Clone the repo
git clone --depth 1 https://github.com/YangsonHung/awesome-agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for topic-bookmarks-reorganizer

README.md
[![agentmods](https://agentmods.dev/badge/skills/yangsonhung/awesome-agent-skills/topic-bookmarks-reorganizer/github.svg)](https://agentmods.dev/skills/yangsonhung/awesome-agent-skills/topic-bookmarks-reorganizer)
Your own site
<a href="https://agentmods.dev/skills/yangsonhung/awesome-agent-skills/topic-bookmarks-reorganizer"><img src="https://agentmods.dev/badge/skills/yangsonhung/awesome-agent-skills/topic-bookmarks-reorganizer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for topic-bookmarks-reorganizer

Your own site · 80×15
<a href="https://agentmods.dev/skills/yangsonhung/awesome-agent-skills/topic-bookmarks-reorganizer"><img src="https://agentmods.dev/badge/skills/yangsonhung/awesome-agent-skills/topic-bookmarks-reorganizer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 546 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.00546
Opus 5 $0.00015 $0.00273
Sonnet 5 $0.00006 $0.00109
Haiku 4.5 $0.00003 $0.00055

Measured 12d ago against content hash 672d26a7b344, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

topic-bookmarks-reorganizer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/reorganize_topic_bookmarks.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/en/topic-bookmarks-reorganizer/SKILL.md · 76 lines

How it starts

The opening of the file, as written. The whole thing — 76 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Topic Bookmarks Reorganizer

Overview

Reorganize one user-specified topic folder from a browser bookmarks export into a cleaner importable Netscape HTML file. The workflow analyzes the source export, extracts the target topic directory, regroups links and subfolders, removes duplicate URLs, and keeps the output browser-importable.

When to Use

Use this skill when the user asks for one or more of these tasks:

  • Analyze one bookmarks export file and find a user-specified topic folder
  • Re-classify links and subfolders under that topic
  • Remove duplicate links by URL
  • Output a new HTML file that can be imported into a browser
  • Keep only the target topic folder in the output

Do not use

Do not use this skill when:

  • The input is not a bookmarks export HTML file
  • The user only wants manual writing help with no file processing
  • The user asks for unrelated JSON/PDF/Docx transformations

Instructions

  1. Ask for required input:
  • Export file path
  • Target topic folder name
  • Output file path
  1. Run the script in report mode first:
python3 scripts/reorganize_topic_bookmarks.py \
  --input /path/to/bookmarks.html \
  --output /tmp/topic-preview.html \
  --topic-folder "<topic-folder-name>" \
  --mode auto \
  --lang en \
  --report /tmp/topic-report.json \
  --print-report
  1. Confirm final options with user only if needed:
  • --mode auto for automatic strategy selection
  • --mode generic for generic strategy
  • --no-dedupe-url to keep duplicate URLs
  1. Generate final output:
python3 scripts/reorganize_topic_bookmarks.py \
  --input /path/to/bookmarks.html \
  --output /path/to/topic-bookmarks-reorganized.html \
  --topic-folder "<topic-folder-name>" \
  --mode auto \
  --lang en
  1. Validate and report:
  • Confirm output file exists
  • Report input links, output links, and removed duplicate count
  • Confirm output contains exactly one top-level folder: the target topic

Output Expectations

  • Output format is Netscape bookmarks HTML and is browser-importable
  • Output contains only the target topic folder
  • Links keep original <A ...> attributes (for example add-date/icon)
  • Folder structure is reorganized into high-level categories

Read the full file on GitHub · 76 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 76 lines · 31 tokens per session scan A 672d26a7b344

Subscribe to this mod's changes

topic-bookmarks-reorganizer is a skill published in the GitHub repository YangsonHung/awesome-agent-skills (18 stars, last pushed 1mo ago), licensed MIT. It adds 31 tokens to every session and 546 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ai-search-browser-use

Use this skill when a task needs AI-assisted web research via a real browser. Uses Chrome CDP (Chrome DevTools Protocol) as the primary automation method, with browser-use as fallback. Supports Gemini + Qwen queries with consolidated answers and citations.

JWCodeWrote/Agent_Skills_Plugin · 55 tokens

add-tavily-tool

Add Tavily Search and Extract as keyless remote MCP tools for selected NanoClaw agent groups. Use when installing Tavily web search or URL extraction without an API key.

nanocoai/nanoclaw · 41 tokens

agent-browser

Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks.

nanocoai/nanoclaw · 51 tokens

browser-cdp

Use this skill when you need to control a Chrome browser via CDP (Chrome DevTools Protocol) to reuse existing login sessions. Covers: launching Chrome in debug mode, opening URLs, waiting for page load, evaluating JavaScript, taking snapshots, and extracting auth tokens. Trigger phrases: browser automation, CDP…

zenstory-ai/oh-story-claudecode · 94 tokens

broken-link-checker

Scans a website to find broken links (404s, 500s). Crawls internal pages, identifies broken outbound links, and reports source pages for easy fixing. Use this when the user asks to "check for broken links", "find 404s", "audit my links", or "is my site healthy".

nowork-studio/notfair-plugin · 70 tokens

social-fetch

When you or another skill needs to fetch the content of a social media post by URL — tweet, X thread, LinkedIn post, Instagram post, TikTok video, Bluesky post, Reddit thread, Mastodon status, Threads post, Hacker News thread. Returns normalized structured data (author, postedat, text, engagement counts, media URLs…

coreyhaines31/makerskills · 205 tokens