Install
$ agentstack add skill-thoreinstein-obsidian-rag-vault-lint ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Vault Lint
Comprehensive vault health audit. Checks five dimensions and presents a prioritized report with fix options.
Checks
1. Frontmatter Compliance
Scan Engineering/ notes for missing required frontmatter fields per VAULT_CONVENTIONS:
- Call
obsidian_list_noteswithsubfolder: "Engineering". - For each note, call
obsidian_read_noteand check frontmatter for:
type:— must be pattern, trap, decision, or conceptproject:— must be presentstatus:— must be presenttags:— must be a listcreated:— must be a date
- Report notes with missing or malformed fields.
- Offer to fix with
obsidian_update_frontmatter(one at a time, user confirms).
2. Provenance Drift
Find Engineering/ notes where the provenance: block suggests high uncertainty:
- From the notes already read in Check 1, filter those with
provenance:frontmatter. - Flag notes where
inferred> 0.5 — these are majority-synthesized and may need source verification. - Flag notes where
ambiguous> 0.1 — these have unresolved contradictions. - Report flagged notes with their provenance fractions.
3. Stale Content
If .manifest.json exists at vault root:
- Read it with the
Readtool. - For each entry in
sources, check ifpages_createdorpages_updatednotes still exist usingobsidian_read_note. - If a source file's modification time on disk is newer than
ingested_at, the derived notes may be stale. - Report stale notes and suggest re-ingesting with
/wiki-ingest --force.
If no .manifest.json exists, skip this check and note that no ingest tracking is available.
4. MOC Coverage
Check whether recent Engineering/ notes appear in at least one thematic MOC:
- Call
obsidian_list_noteswithsubfolder: "MOCs". - For each MOC, call
obsidian_read_noteand extract all[[wikilinks]]. - Build a set of all notes referenced by at least one MOC.
- Compare against the Engineering/ note list — any note not in the MOC set is uncovered.
- Exclude notes created in the last 24 hours (grace period).
- Report uncovered notes and suggest which MOC(s) they belong in via
obsidian_rag_query(query the note title against MOC titles).
5. Orphan Check
Defer to the existing link-audit skill (Phase 2). Mention this in the report: > "For orphan detection, run /link-audit."
Report Format
Present findings as a prioritized summary:
## Vault Health Report
### Critical (fix now)
- 3 Engineering/ notes missing `type:` frontmatter
- 1 note with ambiguous provenance > 0.1
### Warning (review soon)
- 5 notes with inferred provenance > 0.5
- 2 notes with stale source material
### Info
- 8 Engineering/ notes not in any MOC
- Run `/link-audit` for orphan detection
### Stats
- Total Engineering/ notes scanned: N
- Frontmatter compliant: N/N (X%)
- Provenance tracked: N/N (X%)
- MOC coverage: N/N (X%)
Arguments
- Optional scope:
/vault-lint Engineering/Patterns/ - Optional check:
/vault-lint --check frontmatter(run only one check)
Tips
- Run after a batch
/wiki-ingestto catch compliance issues early - High
inferredfractions aren't inherently bad — they just need periodic human review - For large vaults, scope to a subfolder first to keep the audit manageable
- Pair with
/cross-linkerafter fixing MOC coverage gaps
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: thoreinstein
- Source: thoreinstein/obsidian-rag
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.