Custom commands
The plugin ships a fixed set of commands, but you can add your own verb. Say you want /digest, which emails you a weekly summary. Three steps wire it in the same way the shipped commands work.
Add a custom verb
Section titled “Add a custom verb”- Create
commands/digest.mdin the plugin folder, or~/.claude/commands/digest.mdfor user scope - Use the same procedure-step structure as the shipped commands. Step 1 reads
${CLAUDE_PLUGIN_ROOT}/skills/wiki-core/SKILL.mdand<wiki-root>/CLAUDE.md - Take the wiki slug as the first argument and resolve it via the registry the same way the shipped commands do
Why this works
Section titled “Why this works”Every shipped command resolves its target wiki from the registry at ~/.claude/obsidian-wiki/wiki-registry.json, reading the shared skill and the wiki’s CLAUDE.md before doing anything else. A custom command that follows the same pattern behaves consistently with the rest of the plugin: it addresses any registered wiki by slug and operates under the same three-zone contract.
Where to go next
Section titled “Where to go next”- Commands: the shipped command reference
- Custom procedures: hooking into an existing command rather than adding a new one