← ClaudeAtlas

vault-lintlisted

Use when /vault-lint is invoked or when Shane wants a weekly vault health check. Scans Concepts/ and the broader vault for contradictions, orphan pages, missing Concept pages, and stale claims.
slogsdon/skills-vault-knowledge · ★ 0 · Code & Development · score 70
Install: claude install-skill slogsdon/skills-vault-knowledge
# Skill: /vault-lint Weekly vault health scan — contradictions, orphans, missing Concept pages, and stale claims — output is a prioritized action list, not a report. **Don't:** auto-fix anything — surface for Shane to decide. Don't use this for targeted note exploration — that's the obsidian skill. ## Steps 1. Run the four scans below using `obsidian` CLI commands via bash 2. Collate results into a prioritized action list 3. Present findings grouped by category with specific file names and fix instructions 4. Do NOT auto-fix anything — surface for Shane to decide ## Scan 1 — Contradictions between Concept pages ```bash obsidian search query='Concepts/' limit=50 ``` For each Concept page found, read it. Compare claims across pages. Flag pairs where one page asserts X and another asserts not-X (or a materially different position on the same topic). Output format: ``` CONTRADICTION: Concepts/[A] vs Concepts/[B] [A] says: "[quote]" [B] says: "[quote]" → Resolve by: updating whichever is older or merging into a single page ``` ## Scan 2 — Orphan pages (no inbound links) ```bash obsidian search query='[[' limit=100 ``` Read each page that contains wiki-links and collect every `[[linked page]]` reference. Any Concept page that appears in zero link lists is an orphan. Output format: ``` ORPHAN: Concepts/[page] Created: [date if available] → Link from a related note or delete if superseded ``` ## Scan 3 — Concepts mentioned 3+ times without a dedicated page ```