$npx -y skills add tuan3w/obsidian-vault-agent --skill initInitialize an Obsidian vault with the agent-ready Zettelkasten system — creates directory structure, templates, CLAUDE.md, MCP config, and hooks
| 1 | # /init — Scaffold an Agent-Ready Obsidian Vault |
| 2 | |
| 3 | Run the init script to scaffold a complete vault in the current directory: |
| 4 | |
| 5 | ```bash |
| 6 | bash "${CLAUDE_SKILL_DIR}/scripts/init-vault.sh" |
| 7 | ``` |
| 8 | |
| 9 | If CLAUDE.md already exists and the user wants to overwrite: |
| 10 | |
| 11 | ```bash |
| 12 | bash "${CLAUDE_SKILL_DIR}/scripts/init-vault.sh" --force |
| 13 | ``` |
| 14 | |
| 15 | The script handles everything: directories, templates, CLAUDE.md, .mcp.json, hooks, .gitignore, example notes, and git init. |
| 16 | |
| 17 | After the script completes, tell the user: |
| 18 | |
| 19 | ``` |
| 20 | Vault initialized! Next steps: |
| 21 | |
| 22 | 1. Open this folder in Obsidian |
| 23 | 2. Install recommended community plugins: |
| 24 | - Dataview (recommended — powers Spaces dashboards) |
| 25 | - Obsidian Linter (recommended — auto-formatting) |
| 26 | |
| 27 | 3. In Obsidian Settings → Core Plugins → Templates: |
| 28 | - Set "Template folder location" to "templates" |
| 29 | |
| 30 | 4. Start using the vault: |
| 31 | - /process — Process a source note (try the example post!) |
| 32 | - /recall — Review session with spaced repetition |
| 33 | - /synthesize — Cross-domain synthesis |
| 34 | - /research — Research a new topic |
| 35 | - /youtube — Create notes from a YouTube video |
| 36 | ``` |
| 37 | |
| 38 | $ARGUMENTS |