vault_write_note
Create or replace a full markdown note with frontmatter and commit it to the vault's git. Use when you need to write a complete note atomically.
Instructions
Creates or replaces a whole note, with frontmatter guaranteed, and commits it to the vault's git. It replaces the entire file: to change one passage use vault_edit_note, and to record a learning use vault_learn, which picks the destination and propagates on its own.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Vault-relative path, with `.md`. | |
| content | Yes | The note's markdown body, without the frontmatter block. | |
| frontmatter | No | Frontmatter fields, e.g. `{ "tipo": "wiki", "tags": ["jwt"] }`. |