Agent skill
vault-clean
Detect and resolve orphaned notes in the vault. Use during heartbeat maintenance or when vault status shows orphans. Finds notes with no inbound wikilinks and either connects them to the graph or flags them for cleanup.
Install this agent skill to your Project
npx add-skill https://github.com/mikeyobrien/rho/tree/main/skills/vault-clean
SKILL.md
Vault Orphan Cleanup
Resolve orphaned notes in ~/.rho/vault/ -- notes that exist but have no inbound [[wikilinks]] from any other note.
Step 1: Detect Orphans
Run the detection script to get the current orphan list:
TMPDIR="$PREFIX/tmp"
# All note slugs
find ~/.rho/vault -name "*.md" -not -name "_inbox.md" | while read f; do
basename "$f" .md
done | sort -u > "$TMPDIR/vault-slugs.txt"
# All wikilink targets
rg -oN '\[\[([^\]]+)\]\]' ~/.rho/vault --no-filename -r '$1' | sort -u > "$TMPDIR/vault-links.txt"
# Orphans: notes with zero inbound links
comm -23 "$TMPDIR/vault-slugs.txt" "$TMPDIR/vault-links.txt" | grep -v "^_index$"
Step 2: Triage Each Orphan
For each orphaned note, read it with vault read and classify it:
A. Connect It (most common)
The note has value but nobody links to it. Fix by:
- Find the right MOC or parent note (check
_index, project notes, topic MOCs) - Add a
[[slug]]wikilink from the parent to the orphan - If the orphan's own
## Connectionssection is missing links, add those too
B. Merge It
The note duplicates content already in another note. Fix by:
- Identify the canonical note
- Move any unique content from the orphan into the canonical note
- Delete the orphan file:
rm ~/.rho/vault/<type>/<slug>.md
C. Promote It
The note is important enough to be a new section in _index.md. Fix by:
- Add it to the appropriate section in
_index.md(Projects, References, Concepts, Patterns, Logs) - Ensure the note has a proper
## Connectionssection linking back
D. Delete It
The note is stale, empty, or no longer relevant. Fix by:
- Verify it's truly not needed (check if any task or active project references it)
- Delete:
rm ~/.rho/vault/<type>/<slug>.md - Clean up any outbound links from _index or other notes that might reference it
Step 3: Verify
After processing, rerun the detection script. Orphan count should decrease. Report: how many connected, merged, promoted, deleted.
Batch Processing
When running during heartbeat, process max 5 orphans per cycle to stay lightweight. Prioritize by:
- Notes linked from
_index.mdthat don't exist yet (broken links) -- create stubs - Recently created orphans (likely just missed during initial capture)
- Older orphans (may be stale, more likely to delete)
Common Orphan Patterns
- Date-prefixed notes (e.g.
2026-02-05-email-rollback): Usually operational runbooks. Connect to the relevant project note. - Draft content (e.g.
reddit-localllama-draft,x-drafts): Connect to a drafts MOC or the project they support. - Generic names (
BACKLOG,TODO,ENGINEERING): Often subdirectory artifacts from project imports. Usually merge into the project note or delete if redundant. - Newly captured notes: Just need a link from
_index.mdor the relevant MOC.
Guardrails
- Never delete a note without reading it first
- If unsure whether to delete, connect it instead (safe default)
- Always update
_index.mdwhen promoting - After edits, verify the note renders correctly with
vault read
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
tts
Text-to-speech on macOS -- make the device speak text aloud. Use for voice announcements, reading content aloud, or accessibility.
clipboard
Read or write the macOS clipboard. Use when copying/pasting text, transferring data between apps, or accessing clipboard contents.
notification
Show macOS system notifications with title, body, and optional sound. Use for alerts, reminders, or status updates.
open-url
Open URLs, files, and applications on macOS. Use for launching browsers, opening documents, or starting apps.
tts
Text-to-speech — make the device speak text aloud. Use for voice announcements, reading content aloud, or accessibility.
clipboard
Read or write the system clipboard. Use when copying/pasting text, transferring data between apps, or accessing clipboard contents.
Didn't find tool you were looking for?