create_monthly_note
Create a monthly note for your Obsidian vault with template variables, organizing your monthly planning and documentation in one centralized location.
Instructions
Create a monthly note for a specific date
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Date in the month (YYYY-MM-DD), defaults to this month | |
variables | No | Additional template variables | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Date in the month (YYYY-MM-DD), defaults to this month",
"type": "string"
},
"variables": {
"description": "Additional template variables",
"type": "object"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault"
],
"type": "object"
}