create_yearly_note
Generate a yearly note in your Obsidian vault for organizing annual content, planning, and reflections using customizable templates.
Instructions
Create a yearly note for a specific year
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Date in the year (YYYY-MM-DD), defaults to this year | |
variables | No | Additional template variables | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Date in the year (YYYY-MM-DD), defaults to this year",
"type": "string"
},
"variables": {
"description": "Additional template variables",
"type": "object"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault"
],
"type": "object"
}