From semantic-skills
Review and strengthen SlipBox knowledge through random exploration. Randomly selects a note from 02-SlipBox/, traverses wikilinks (1-3 hops), and identifies outdated info, contradictions, missing connections, and schema gaps. Trigger: "accommodate", "review my knowledge", "random walk", "explore connections", or "audit my notes".
How this skill is triggered — by the user, by Claude, or both
Slash command
/semantic-skills:knowledge-reviewThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
obsidian random:read folder="02-SlipBox"
This selects AND reads a random note in one command. Note its core concept, existing wikilinks (TOPIC, RELATED_TO, inline), and tag type.
Use the wikilink-graph-bfs skill for structured multi-hop BFS exploration.
At each hop, enrich the analysis with direct link queries:
obsidian backlinks file="<Note Name>" # what links here?
obsidian links file="<Note Name>" # what does it link to?
Track exploration path: [[Start]] → [[Hop1]] → [[Hop2]]
At each note, check for:
obsidian links file="<Note Name>" # list outgoing links
obsidian unresolved # vault-wide broken link detection
Use the obsidian CLI to find notes sharing key concepts from the walk that aren't already linked:
obsidian search query="<key concept>" path="02-SlipBox" format=json
Format as:
[[A]] → [[B]] → [[C]]For each action, confirm with user before editing.
obsidian property:set name=last_updated value=<YYYY-MM-DD> type=date file="<Note Name>"
npx claudepluginhub yixin0829/semantic-obsidian --plugin semantic-skillsRead-only health check for Obsidian vault: finds broken links, orphaned notes, tag inconsistencies, and wiki issues, then reports prioritized fixes.
Explores knowledge vault on a topic using semantic search, graph neighborhood traversal, and gap analysis to map notes, connections, and missing knowledge before research or note creation.
Inspects, edits, organizes, and analyzes local Obsidian vault notes, YAML frontmatter, wikilinks, graph structure, and schema. Useful for vault maintenance and bulk edits.