Obsidian Cleaner
ReviewAudited by ClawScan on May 10, 2026.
Overview
This skill is local-only and mostly purpose-aligned, but its code can move Obsidian `.md` notes and `.txt` files even though the documentation describes cleaning images and attachments.
Use `--dry-run` before any real cleanup and review the file list carefully. Do not run it on a vault root that contains important `.md` notes unless the extension list is fixed or you explicitly want those files moved.
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.
Running the cleaner could relocate root-level notes or text files into the Attachments folder, disrupting vault organization or breaking expected links.
The moving logic includes `.txt` and `.md` files, while SKILL.md describes cleaning loose images/attachments and lists a narrower set of attachment-like extensions. In Obsidian, `.md` files are often actual notes, so this can move user notes unexpectedly.
SUPPORTED_EXTENSIONS = {'.png', '.jpg', '.jpeg', '.gif', '.webp', '.pdf', '.docx', '.doc', '.txt', '.md'}Remove `.md` and likely `.txt` from the default moved extensions, or require an explicit dry-run confirmation that clearly lists every file before moving.
