Skreenshot

ReviewAudited by ClawScan on May 1, 2026.

Overview

This looks like a coherent screenshot-management skill, but using its workflows can move or rename local screenshots, store OCR text, and optionally automate or upload screenshots if the user enables those features.

Before installing or using it, be aware that the main risks are normal for this kind of tool: it can bulk move or rename screenshot files, create a searchable text index of screenshot contents, and optionally set up recurring cleanup or cloud sharing. Use dry-run mode first, keep backups of important screenshots, avoid cloud upload for sensitive captures, and review any missing or separately downloaded helper script before running it.

Findings (5)

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

Screenshots may be renamed or moved from their original locations, which could break references or make files harder to find.

Why it was flagged

The archive script moves screenshot files from the Desktop into dated archive folders when run; this is purpose-aligned but modifies local user files by default unless `--dry-run` is used.

Skill content
shutil.move(filepath, dest_path)
Recommendation

Use `--dry-run` first, confirm the source and destination folders, and back up important screenshots before bulk operations.

What this means

Sensitive text that was only visible inside images can become searchable plain text on disk.

Why it was flagged

The OCR indexing workflow persists extracted text from screenshots into a local index file; screenshots can contain receipts, account details, error messages, or other private text.

Skill content
textsnip -i "$f" >> ~/Pictures/Screenshots/ocr-index.txt
Recommendation

Store the OCR index in a protected location, exclude sensitive screenshots, and delete or regenerate the index when it is no longer needed.

What this means

If enabled, screenshots may be uploaded to a cloud service and accessible through generated links.

Why it was flagged

The CleanShot X workflow documents optional external cloud upload and shareable links for screenshots, which can move screenshot data outside the local machine.

Skill content
Auto-upload to cloud (optional, generates shareable links)
Recommendation

Only enable auto-upload for screenshots you are comfortable sharing, review the cloud provider and link permissions, and avoid it for sensitive captures.

What this means

After setup, screenshots may be moved automatically without a fresh confirmation each time.

Why it was flagged

The reference suggests an optional cron job that would run the archive script weekly; it is disclosed and user-installed, but it creates ongoing file-moving automation.

Skill content
0 9 * * 0 cd ~/Documents/Skreenshot && python scripts/archive_old_screenshots.py --days 30
Recommendation

Install persistent automation only if desired, document it, and remove the cron/Hazel rule if you no longer want automatic cleanup.

What this means

A user may look for or run an unreviewed script to complete the documented OCR workflow.

Why it was flagged

SKILL.md references an OCR search helper that is not included in the provided file manifest, so any separately obtained replacement would be outside the reviewed artifacts.

Skill content
### `scripts/ocr_search.py`
Search all screenshots by text content.
Recommendation

Use only included files unless you separately review any missing helper script before running it.