browser-session-curator
PassAudited by ClawScan on May 1, 2026.
Overview
This is a coherent local helper for organizing user-provided browser-session data, with only minor notes around local file writing and package version consistency.
This skill appears safe for local, user-directed organization of tab data. Before installing, verify the version mismatch, avoid feeding more private tab data than needed, and use a clear output filename so the helper script does not overwrite something important.
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.
If the script is used with an existing output filename, it may overwrite that file with the generated session digest.
The helper script performs user-directed local file input and output, which matches the skill purpose but can create or overwrite the named output file.
ap.add_argument("tabs_json", help="JSON list with title,url")
ap.add_argument("--out", default="session_digest.json")
...
tabs = json.load(open(args.tabs_json, "r", encoding="utf-8"))
...
json.dump(digest, open(args.out, "w", encoding="utf-8"), ensure_ascii=False, indent=2)Use a new or disposable output path, review the generated digest, and keep any later bookmark/tab changes user-confirmed.
A user may have slight uncertainty about which package version they are installing or reviewing.
The registry metadata lists version 1.0.0 while SKILL.md frontmatter lists version 1.1.0, creating a minor package-version consistency issue. The included files are otherwise present and auditable.
Version: 1.0.0
Confirm the published package version matches the intended SKILL.md version before relying on changelogs or audit records.
