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 wrapping up a work session — creates devlog entry, captures undocumented decisions/research/debugging, audits link health of session work, and updates project index. Primarily used via the pkm-capture agent.
$ npx -y skills add AdrianV101/obsidian-pkm-plugin --skill pkm-session-end --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pkm-session-endContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when wrapping up a work session — creates devlog entry, captures undocumented decisions/research/debugging, audits link health of session work, and updates project index. Primarily used via the pkm-capture agent.
name: pkm-session-end description: Use when wrapping up a work session — creates devlog entry, captures undocumented decisions/research/debugging, audits link health of session work, and updates project index. Primarily used via the pkm-capture agent.
Workflow for session wrap-up. When running as a subagent, the delegation prompt provides the project path and devlog boundary context. The agent's system prompt handles transcript discovery (Step 0) before this workflow begins.
Append a session summary to the project devlog, most recent entry first.
**If the devlog file doesn't exist yet** (new project, first session), create it first:
vault_write({
template: "devlog",
path: "01-Projects/<Project>/development/devlog.md",
frontmatter: { tags: ["devlog"], project: "<Project>" }
})Then append the session entry:
vault_append({
path: "01-Projects/<Project>/development/devlog.md",
heading: "## Sessions",
position: "after_heading",
content: "### YYYY-MM-DD HH:mm\n\n#### Session Summary\n- <what was accomplished>\n\n#### Key Decisions\n- <decisions made, link to ADRs if created>\n\n#### Blockers / Issues\n- <problems encountered, or \"None\">\n\n#### Next Steps\n- <what remains>\n\n---\n"
})Use the **actual date** and fill in real content from the session. Keep entries concise but specific. Using `after_heading` inserts each new entry at the top, keeping the log in reverse-chronological order.
**Wikilinks in devlog entries**: Include `[[wikilinks]]` to tasks, ADRs, research notes, and other vault notes that were completed, created, or significantly updated during the session. For example: `- Completed [[task-api-refactor]]` or `- Decided on caching strategy ([[ADR-003-caching]])`.
**Existing devlogs**: Older devlogs may use `## YYYY-MM-DD` entries without a `## Sessions` heading. If `vault_append` fails with "Heading not found", add the heading first: `vault_append({ path: "...", content: "\n## Sessions\n" })`.
The parent agent's session-context message in the delegation prompt is the **primary boundary** for what counts as "this session." Use it to decide which work is in-scope to capture. The activity log is a discovery aid — useful for spotting files-touched you may have missed — not a session-scope definition.
Why this matters: the MCP server's session ID can span work that was already captured in earlier devlog entries within the same session, so filtering purely by session ID risks re-capturing already-documented work or capturing work outside the parent's intended scope.
Query the activity log to find files touched:
vault_activity({ limit: 1 })The response header shows `current session: <id>` (an 8-character prefix). Filter to the same session for full file history:
vault_activity({ session: "<id-from-header>", limit: 50 })Cross-reference the touched files against the parent's session context. Files outside the parent's stated scope, or files already covered by prior devlog entries in the same session, are not your responsibility to capture again.
Review the session's conversation for significant work that only exists in chat history. Most exchanges produce nothing worth capturing beyond the devlog entry in Step 1. When in doubt, don't capture — a missed capture is better than vault noise.
Skip entirely if the session was purely mechanical (config changes, minor fixes).
**For each PKM-worthy item independently**, determine whether to update an existing note or create a new one:
For each item, search the vault:
vault_semantic_search({ query: "<topic/title>", limit: 5 })If unavailable, use `vault_search` with key terms + `vault_query` with matching tags.
**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; scores above 0.7 are essentially never observed.
When a note already covers this topic, enrich it rather than creating a duplicate:
Follow the pkm-write skill workflow for proper duplicate checking, template selection, and linking:
| Content Type | Template | Default Path | |---|---|---| | Architecture/design decisions | `adr` | `<project>/development/decisions/ADR-NNN-{title}.md` | | Research findings or evaluations | `research-note` | `<project>/research/{title}.md` | | Complex debugging sessions | `troubleshooting-log` | `<project>/development/debug/{title}.md` | | Reusable insights or patterns | `permanent-note` | `03-Resources/Development/{title}.md` | | New tasks identified | `task` | `<project>/tasks/{title}.md` |
Where `<project>` is the vault project path from session context.
When a task's status, priority, or details changed during the session:
1. `vault_quer
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 writing to the vault — creating new notes (vault_write), editing existing notes (vault_edit, vault_append, vault_update_frontmatter). Handles…
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.