create_weekly_note
Generate a weekly note for a specific date in your Obsidian vault, using templates and custom variables to organize your schedule and tasks.
Instructions
Create a weekly note for a specific date
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Date in the week (YYYY-MM-DD), defaults to this week | |
variables | No | Additional template variables | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Date in the week (YYYY-MM-DD), defaults to this week",
"type": "string"
},
"variables": {
"description": "Additional template variables",
"type": "object"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault"
],
"type": "object"
}