chrome-bookmark-folder-summarizer

PassAudited by ClawScan on May 1, 2026.

Overview

The skill is coherent and purpose-aligned, but it does read local Chrome bookmark data and may fetch every URL in the selected folder for summarization.

This skill appears safe to use for its stated purpose. Before installing or invoking it, make sure you are comfortable with the agent reading bookmark URLs and titles from the chosen Chrome folder and fetching those pages for summaries.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The agent may see bookmark URLs and titles from the selected Chrome folder, which can reveal private interests or work context.

Why it was flagged

The script reads a local Chrome profile Bookmarks file and outputs bookmark titles and URLs from matching folders. This is purpose-aligned, but it accesses local browser-profile data.

Skill content
parser.add_argument("--bookmarks", default=str(default_bookmarks_path()), help="Path to the Chrome Bookmarks file"); ... "urls": urls
Recommendation

Use a specific folder name and, if you have multiple profiles, provide the intended Bookmarks file path. Review the extracted URL list before asking for broad summarization.

What this means

Using the skill may cause the agent to visit many bookmarked URLs, which can disclose access patterns to websites or include more links than the user intended.

Why it was flagged

The skill directs the agent to batch-fetch webpage content for all extracted URLs, and recursive extraction is the default. This is expected for summarization, but can expand the number of sites contacted.

Skill content
Optional: whether to recurse into subfolders (default: recursive) ... Fetch page content for each URL
Recommendation

Confirm the folder, recursion setting, and approximate URL count before fetching pages, especially for large or sensitive bookmark folders.