Clipboard Manager

ReviewAudited by ClawScan on May 1, 2026.

Overview

The skill appears to do what it says, but it saves clipboard contents locally, which can include passwords or other private text.

This looks like a straightforward local clipboard-history tool with no network behavior shown. Before installing, remember that clipboard managers can capture very sensitive content, including passwords or tokens; clear the history when needed and avoid running monitoring while copying secrets.

Findings (1)

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

Sensitive text copied to the clipboard may remain in local history and could later be shown in search or history results.

Why it was flagged

The script stores copied clipboard text in a persistent local JSON history file. This is purpose-aligned for a clipboard manager, but clipboard data can include passwords, tokens, private messages, or other sensitive text.

Skill content
DATA_FILE = os.path.expanduser("~/.clipboard_history.json") ... "content": content[:500] ... save_history(data)
Recommendation

Use only if you are comfortable with local clipboard history being saved. Clear the history after sensitive work, avoid copying secrets while monitoring is active, and consider adding exclusions, stronger file permissions, or encryption if handling confidential data.