Obsidian Organizer

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: obsidian-organizer Version: 1.0.0 The skill bundle is benign. The `SKILL.md` provides clear instructions and guardrails for the agent, explicitly stating the purpose of organizing Obsidian vaults and requiring dry-runs before applying changes. The `scripts/obsidian_audit.py` script performs file auditing and renaming using safe `pathlib.Path` operations, without any network calls, data exfiltration, or attempts at persistence. It also correctly ignores OpenClaw's internal agent files (`MEMORY.md`, `SOUL.md`, etc.), preventing accidental modification of agent state.

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

If approved, the skill can rename notes in the selected vault, which may affect links, references, or personal organization workflows.

Why it was flagged

The helper script has an explicit apply mode that mutates local Markdown filenames. This is disclosed and purpose-aligned, but it is still a local file-changing capability users should review before approving.

Skill content
ap.add_argument("--apply", action="store_true", help="Apply safe renames") ... p.rename(new_path)
Recommendation

Back up the vault, run the dry-run first, inspect the proposed rename plan, and only approve `--apply` for the intended vault path.