chrome-bookmark-folder-summarizer

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: chrome-bookmark-folder-summarizer Version: 1.0.1 The skill is designed to extract and summarize URLs from a user-specified Chrome bookmark folder. The Python script `scripts/extract_chrome_bookmarks.py` correctly identifies standard bookmark paths across macOS, Windows, and Linux, parses the JSON data, and outputs the results to stdout for the agent to process. There is no evidence of data exfiltration to unauthorized endpoints, obfuscation, or malicious instructions in `SKILL.md`.

Findings (0)

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.