
from obsidian-master-kit11
Semantic vault organizer for Obsidian (pt-BR): scans note embeddings, detects duplicate/conceptually-similar notes, finds clusters missing MOCs, and proposes no
Performs a semantic scan of an Obsidian vault using note embeddings and HDBSCAN clustering. It detects conceptually duplicate notes, large clusters lacking a Map of Content (MOC), and frontmatter 'area' mismatches versus folder location. The skill produces a human-readable migration_plan and non-destructive suggestions; it never moves or deletes files without explicit human approval.
obsidian-master scan so embeddings and vectors are availablescripts/ that emit stable JSON outputsobsidian-migrate for applying approved changesBest used with agents that can run local Python scripts and present human-readable reports (Claude Code, Copilot-style assistants, or local Python-enabled agents).
Obsidian vault semantic organizer with 6 sub-command scripts: cluster (HDBSCAN), duplicates (cosine similarity), moc-audit (missing MOCs), area-mismatch, propose (migration plan), and a CLI orchestrator. SKILL.md is well-written with clear triggers, hard guarantees (zero silent writes, human verdicts required), and CLI reference. 4 of 6 scripts fail at import due to missing 'core' module — they depend on the parent obsidian-master-kit repo's internal package. Only cluster.py and propose.py (which don't import core at top-level) succeed as standalone imports. No security concerns; dry-run is default across all commands.
core (internal project module — requires full obsidian-master-kit repo)Well-architected skill with strong safety guarantees (dry-run default, human verdict gates, no silent writes). The main usability barrier is the tight coupling to the obsidian-master-kit ecosystem — scripts can't run without the core package. SKILL.md is thorough and the code is clean, if narrowly scoped to pt-BR Obsidian power users.