add-task
Use when you want to quickly capture a new task in the vault from a title, with optional priority and due date.
Use when writing to the vault — creating new notes (vault_write), editing existing notes (vault_edit, vault_append, vault_update_frontmatter). Handles duplicate checking, link discovery, annotations, and index updates for new notes. Provides guidelines for modifications.
$ npx -y skills add AdrianV101/obsidian-pkm-plugin --skill pkm-write --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pkm-writeContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when writing to the vault — creating new notes (vault_write), editing existing notes (vault_edit, vault_append, vault_update_frontmatter). Handles duplicate checking, link discovery, annotations, and index updates for new notes. Provides guidelines for modifications.
name: pkm-write description: Use when writing to the vault — creating new notes (vault_write), editing existing notes (vault_edit, vault_append, vault_update_frontmatter). Handles duplicate checking, link discovery, annotations, and index updates for new notes. Provides guidelines for modifications.
Follow these steps when creating new notes. When running as a subagent, the delegation prompt provides the note topic and project context.
Before creating, search for existing notes on the same topic:
vault_semantic_search({ query: "<topic/title of intended note>", limit: 5 })If `vault_semantic_search` is unavailable (no `VAULT_PKM_OPENAI_KEY`), use `vault_search` with the note's title and key terms, and `vault_query` with matching tags to check for duplicates.
**Route based on results.** Note on score interpretation: `vault_semantic_search` uses `text-embedding-3-large` (3072-dim) cosine similarity, which compresses hard. Even a verbatim title/heading of an existing note typically scores around 0.55–0.65 against that note; scores above 0.7 are essentially never observed. Read the scores with that scale in mind.
Use `vault_write` with the appropriate template. Select the template and path based on content type:
| Content Type | Template | Default Path | |---|---|---| | Architecture decision | `adr` | `<project>/development/decisions/ADR-NNN-{title}.md` | | Research finding | `research-note` | `<project>/research/{title}.md` | | Bug investigation | `troubleshooting-log` | `<project>/development/debug/{title}.md` | | Reusable knowledge | `permanent-note` | `03-Resources/Development/{title}.md` | | Task | `task` | `<project>/tasks/{title}.md` | | Meeting record | `meeting-notes` | `<project>/planning/{title}.md` | | Literature/article notes | `literature-note` | `03-Resources/{title}.md` |
Where `<project>` is the vault project path (e.g., `01-Projects/MyApp`). Determine from the delegation prompt, CLAUDE.md `# PKM:` annotation, or SessionStart hook context.
**Notes in `03-Resources/`** should be written as project-agnostic knowledge — useful regardless of where the insight originated. Use frontmatter tags or `## Related` links to trace the origin project, but write the content for a general audience.
If CLAUDE.md specifies a different location for a content type, use that instead.
vault_write({
template: "<template>",
path: "<path-from-table>",
frontmatter: { tags: [...], ... }
})Ensure:
`vault_write` creates a skeleton from the template — headings with HTML comment placeholders and empty bullets. You must fill in the actual content.
1. **Read the note** with `vault_read` to see the exact template output 2. **Replace placeholders** with `vault_edit`, using the exact text from the read output as `old_string`
Work section by section. Each `vault_edit` call must match text **exactly as it appears in the file** — do NOT guess what the template produced.
For templates with many sections, you can batch multiple sections into fewer edits by using a larger `old_string` that spans consecutive sections.
**Don't forget the link sections.** Templates include link sections like `## Related`, `## Links`, and `## References` with their own placeholder block — an HTML comment plus an empty bullet. The exact comment text varies per template (e.g., `<!-- Format: - [[note-name]] — relationship explanation -->` in most templates, `<!-- External references: docs, articles, repos -->` in research-note's `## Links`). Read the file first to get the exact placeholder text, then `vault_edit` to remove it. `vault_add_links` in Step 6 *appends* new links below whatever already exists in the section — it does not replace the placeholder, so leftover stubs end up sitting above the real links.
Run `vault_suggest_links` on the new note to find related content:
vault_suggest_links({ path: "<path-to-new-note>", limit: 8 })Select the top **3–5** most relevant suggestions.
If `vault_suggest_links` is unavailable (no `OPENAI_API_KEY`), use `vault_search` with key terms from the note's title/topic and `vault_query` with matching tags to manually identify good link targets.
If **no suggestions are returned** (new vault or isolated topic), skip Steps 5–7 — the note's `## Related` section will be filled as the graph grows.
**Well-linked-existing-note carve-out (UPDATE path only).** If you arrived here via the Step 1 UPDATE branch and the existing note's `## Related` already covers the connections you would otherwise add — i.e., the top suggestions from `vault_suggest_links` are already linked, or are clearly weaker than what's already there — skip Steps 5–7. Forcing additional links to a note that's already well-curated degrades link quality. This carve-out applies only to UPDATE; new notes always work through Steps 5–7.
Give Claude persistent, structured memory across conversations using your Obsidian vault. Read, write, search, and navigate your knowledge base — all from within Claude Code.
Repo: AdrianV101/obsidian-pkm-plugin
Use when you want to quickly capture a new task in the vault from a title, with optional priority and due date.
Use when researching what the vault knows about a topic — performs graph + semantic exploration with gap analysis to map existing knowledge and find missing…
Use when wrapping up a work session — creates devlog entry, captures undocumented decisions/research/debugging, audits link health of session work, and updates…
Use when starting work on a specific vault task, when a task title or path is mentioned, or when coming from triage output.
Use when you want to review and batch-update open vault task statuses for the current project or across all projects.