memory_write_note
Store knowledge, user preferences, and project context by creating or updating markdown notes in the persistent memory vault. Supports wikilinks and tags for cross-referencing.
Instructions
Creates or updates a markdown note in the persistent memory vault. Use this to store knowledge, user preferences, project context, decisions, and any information worth remembering across sessions. Supports Obsidian-compatible wikilinks [[Like This]] and #tags for cross-referencing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Relative path for the note (e.g., 'projects/my-app.md', 'preferences.md'). Folders will be created automatically. Must end in .md. | |
| tags | No | Optional tags for categorization (without '#' prefix). | |
| title | No | Title of the note. Used as frontmatter title. | |
| source | No | Optional context about where this knowledge came from (e.g., 'code review session', 'user preference'). | |
| content | Yes | Markdown content of the note body. Supports wikilinks and tags. |