Skill
vault-management
This skill should be used when the user asks to "manage notes", "update vault", "add to obsidian", "document in vault", "search my notes", "find related notes", or when working with Obsidian vault files. Also triggers when discussing knowledge management, note organization, or when Claude Code auto-captures commits, tasks, or component creation.
From obsidian-vaultInstall
1
Run in your terminal$
npx claudepluginhub mwguerra/claude-code-plugins --plugin obsidian-vaultTool Access
This skill uses the workspace's default tool permissions.
Supporting Assets
View in Repositoryreferences/frontmatter-spec.mdSkill Content
Obsidian Vault Management
Manage the Obsidian vault as a developer knowledge base and automatic work journal.
When to Use
Activate this skill when:
- User requests note operations (add, search, update, import, link, archive)
- Working with project documentation that should be stored in the vault
- Auto-capturing commits, tasks, or Claude Code components
- User asks about their notes, documentation, or knowledge base
- Organizing or finding information in the vault
Vault Structure
~/guerra_vault/
├── projects/ # Project-specific documentation
├── technologies/ # Technology knowledge (Laravel, React, etc.)
├── claude-code/ # Claude Code components
│ ├── agents/
│ ├── hooks/
│ ├── skills/
│ └── tools/
├── ideas/ # Feature ideas and experiments
├── personal/ # Career and learning goals
├── todo/ # Tasks and checklists
├── references/ # Bookmarks, snippets, cheatsheets
├── journal/ # Auto-captured events
│ ├── commits/ # Git commit documentation
│ ├── tasks/ # Completed task summaries
│ └── creations/ # Component creation logs
└── _archive/ # Archived notes
Frontmatter Standard
All notes MUST include this YAML frontmatter:
---
title: "Note Title"
description: "Brief description of the content"
tags: [tag1, tag2, category]
related: [[path/to/related-note]]
created: YYYY-MM-DD
updated: YYYY-MM-DD
---
Rules:
title: Descriptive, matches the main headingdescription: One sentence explaining the contenttags: Always include the category as a tagrelated: Wiki-link format, add related notes when relevantcreated: Set once when createdupdated: Update whenever the note changes
Available Commands
| Command | Purpose |
|---|---|
/obsidian-vault:init | Set up vault configuration and structure |
/obsidian-vault:add <category> <title> | Create a new note |
/obsidian-vault:search <query> | Find notes by title, content, or tags |
/obsidian-vault:update <note> | Edit note frontmatter or append content |
/obsidian-vault:import <file> | Import external files with frontmatter |
/obsidian-vault:list [category] | List notes, optionally by category |
/obsidian-vault:tags [--stats] | View tags and usage statistics |
/obsidian-vault:link <note1> <note2> | Create bidirectional related links |
/obsidian-vault:archive <note> | Move note to archive |
Auto-Capture Behavior
The plugin automatically captures:
Git Commits
- Creates
journal/commits/YYYY-MM-DD-<slug>.md - Includes: commit message, date, project, branch, files changed
- Placeholder sections for "What" and "Why" (fill in with context)
Task Completions
- Creates
journal/tasks/YYYY-MM-DD-<slug>.md - Captures subagent summaries
- Includes: summary, what was done, decisions made
Claude Code Components
- Creates
claude-code/<type>s/<name>.md - Tracks: agents, hooks, skills, tools
- Also logs to
journal/creations/
Best Practices
Creating Notes
- Choose the appropriate category
- Use descriptive titles
- Add relevant tags immediately
- Link to related notes when obvious
Updating Notes
- Update the
updateddate (done automatically by scripts) - Add new related links as connections emerge
- Keep descriptions current
Searching
- Start broad, narrow with
--title,--content, or--tag - Use
--categoryto focus on specific areas - Check related notes for additional context
Organization
- Use consistent naming within categories
- Archive rather than delete
- Maintain bidirectional links
Integration with Workflows
After Completing Features
When finishing a feature or fix:
- Ensure commit is captured
- Add/update project documentation
- Link new notes to project README
When Learning Technologies
- Create note in
technologies/ - Link to projects that use it
- Add code snippets as needed
For Ideas and Experiments
- Start in
ideas/ - Move to
projects/when starting implementation - Archive if abandoned
Additional Resources
Reference Files
references/frontmatter-spec.md- Detailed frontmatter specification
Configuration
- Config:
~/.claude/obsidian-vault.json - Vault path:
~/guerra_vault
Similar Skills
Stats
Parent Repo Stars18
Parent Repo Forks5
Last CommitFeb 23, 2026