adopt
Scaffold the PKM system onto an existing Obsidian vault. Scans your vault structure, maps folders interactively, and generates configuration — no template…
Find broken wiki-links in the vault. Read-only analysis — scans for [[links]] and verifies target files exist. No writes, no dependencies.
$ npx -y skills add ballred/obsidian-claude-pkm --skill check-links --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/check-linksContext preview
The summary Claude sees to decide when to auto-load this skill.
Find broken wiki-links in the vault. Read-only analysis — scans for [[links]] and verifies target files exist. No writes, no dependencies.
name: check-links description: Find broken wiki-links in the vault. Read-only analysis — scans for [[links]] and verifies target files exist. No writes, no dependencies. allowed-tools: Grep, Glob, Read user-invocable: true
Finds broken `[[wiki-links]]` across your vault by extracting link targets and verifying that each target file exists. Read-only — never modifies files.
/check-links
Or ask:
Use **Grep** to find all `[[...]]` patterns in markdown files:
Grep: pattern: "\\[\\[([^\\]|]+)" glob: "*.md" output_mode: content -n: true
This captures the link target (before any `|` alias). Exclude `.claude/` and `.obsidian/` directories from results.
From the grep results, extract the unique link targets. For each match like `[[My Note]]` or `[[My Note|display text]]`, the target is `My Note`.
Strip:
For each unique target, use **Glob** to check if a matching file exists:
Glob: pattern: "**/<target>.md"
A link is **broken** if no file matches. A link is **valid** if at least one file matches.
Group broken links by source file:
## Broken Links Report ### Daily Notes/2024-01-15.md - [[Projet Alpha]] — no matching file found - [[Old Goal]] — no matching file found ### Projects/Project Beta.md - [[Meeting Notes Jan]] — no matching file found --- **Summary:** 3 broken links across 2 files (out of 45 total links checked)
For each broken link, try to find a close match:
1. Use **Glob** with a partial pattern: `**/*<partial-target>*.md` 2. If a similar filename exists, suggest it:
- [[Projet Alpha]] — Did you mean [[Project Alpha]]?
3. If no close match, just report "no matching file found"
If all links are valid:
✅ All wiki-links verified — no broken links found across X files (Y links checked)
Not another PKM starter kit. This is an execution system that connects your 3-year vision to what you do today — and holds you accountable with AI. Every layer connects. /daily surfaces your ONE Big Thing from the weekly review. /weekly shows project progress.
Scaffold the PKM system onto an existing Obsidian vault. Scans your vault structure, maps folders interactively, and generates configuration — no template…
Create daily notes and manage morning, midday, and evening routines. Structure daily planning, task review, and end-of-day reflection. Use for daily…
Track progress toward 3-year, yearly, monthly, and weekly goals. Calculate completion percentages, surface stalled goals, connect daily tasks to objectives.…
Monthly review and planning. Roll up weekly reviews, check quarterly milestones, set next month's focus. Use at end of month or start of new month.
Read and write Obsidian vault files, manage wiki-links, process markdown with YAML frontmatter. Use when working with vault file operations, creating notes, or…