Help us improve
Share bugs, ideas, or general feedback.
From obsidian-vault
Creates a new Markdown note in your Obsidian vault with YAML frontmatter including title, description, tags, related notes, timestamps. Supports category, title, and optional flags; outputs file path.
npx claudepluginhub mwguerra/claude-code-plugins --plugin obsidian-vaultHow this command is triggered — by the user, by Claude, or both
Slash command
/obsidian-vault:add <category> <title> [--description "..."] [--tags "tag1,tag2"] [--related "Note1,Note2"]This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Add Note to Vault
Create a new note in your Obsidian vault with proper frontmatter.
## Usage
Runs: `bash "${CLAUDE_PLUGIN_ROOT}/scripts/add-note.sh" $ARGUMENTS`
## Categories
| Category | Description |
|----------|-------------|
| `projects` | Project-specific documentation |
| `technologies` | Technology knowledge and tutorials |
| `claude-code` | Claude Code components |
| `claude-code/agents` | Agent documentation |
| `claude-code/hooks` | Hook documentation |
| `claude-code/skills` | Skill documentation |
| `claude-code/tools` | Tool/MCP server documentation |
| `ideas` | Featu.../obsidian-archiveExtracts learnings from the current Claude Code session using progressive summarization and archives them as Zettelkasten notes in Obsidian vault after user approval.
/vaultManages Obsidian vault: lists structure with file counts by service and task layers, adds documents to categories with frontmatter and git commit, auto-organizes uncategorized files.
/obsManages Obsidian agent memory vault — initialize, analyze projects, recap sessions, scaffold projects, create notes, update TODOs, lookup knowledge, manage relationships.
/create_noteCaptures provided content as a persistent Markdown note in ./thoughts/shared/notes/YYYY-MM-DD/description.md with YAML frontmatter, git metadata, context, and sources.
/addInjects externally-sourced findings into the most recent /adamsreview:review artifact for this branch. Validates via Phase 4, re-renders, and re-publishes. Supports paste or structured --file --line --claim args.
Share bugs, ideas, or general feedback.
Create a new note in your Obsidian vault with proper frontmatter.
# Basic usage
/obsidian-vault:add technologies "Laravel Queue Configuration"
# With description and tags
/obsidian-vault:add projects "My SaaS App" --description "Main project documentation" --tags "saas,laravel,api"
# With related notes
/obsidian-vault:add ideas "Rate Limiting Improvements" --related "projects/my-saas-app,technologies/redis"
# Claude Code components
/obsidian-vault:add claude-code/agents "Code Reviewer Agent"
/obsidian-vault:add claude-code/hooks "Pre-commit Linting"
Runs: bash "${CLAUDE_PLUGIN_ROOT}/scripts/add-note.sh" $ARGUMENTS
| Category | Description |
|---|---|
projects | Project-specific documentation |
technologies | Technology knowledge and tutorials |
claude-code | Claude Code components |
claude-code/agents | Agent documentation |
claude-code/hooks | Hook documentation |
claude-code/skills | Skill documentation |
claude-code/tools | Tool/MCP server documentation |
ideas | Feature ideas and experiments |
personal | Career and learning goals |
todo | Tasks and checklists |
references | Bookmarks, snippets, cheatsheets |
The note will be created with this frontmatter:
---
title: "Laravel Queue Configuration"
description: "Laravel Queue Configuration"
tags: [laravel, queues, technologies]
related: []
created: 2026-01-27
updated: 2026-01-27
---
| Option | Description |
|---|---|
--description | Detailed description (defaults to title) |
--tags | Comma-separated tags |
--related | Comma-separated related note paths |
--content | Initial content for the note body |
The command outputs the file path so you can:
/obsidian-vault:update/obsidian-vault:link