Move or rename a note (with backlink updates)
move_noteMove a note to a new location within Obsidian while preserving backlinks by rewriting wiki-links. Prevents graph breakage that occurs from naive delete-and-create operations.
Instructions
Move a note from one path to another, optionally rewriting wiki-links so backlinks keep working. This is the safe way to rename notes — agents should not naively delete + create because that breaks the graph.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from | Yes | Current vault-relative path. | |
| to | Yes | Destination vault-relative path. '.md' appended if missing. | |
| update_backlinks | No | Rewrite [[wiki-links]] in other notes to point at the new path. | |
| overwrite | No | If false, fail when destination already exists. |