Append to Note
append_to_noteAppend text to the end of an existing note to add log entries, running lists, or new sections. Automatically inserts a leading newline if the note doesn't end with one.
Instructions
Append text to the end of an existing note without altering prior content. By default, inserts a leading newline if the file does not already end in one, so appended content starts on its own line. Use for log entries, running lists, or adding new sections. Fails if the note does not exist — use create_note to make a new note first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Relative path from vault root to the target note (e.g., 'journal/2026-04-15.md'). Extension optional. | |
| content | Yes | Markdown text to append to the end of the note. A leading newline is auto-inserted when the file does not already end in one. |