save_diary_entry
Save dated diary entries to Obsidian with automatic backlinks that connect related journal content for better organization and reference.
Instructions
Save a diary entry and automatically add relevant backlinks.
Args: date: Date for the entry in YYYY-MM-DD format content: The diary entry content
Returns: Success message with the file path and auto-generated backlinks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"date": {
"type": "string"
}
},
"required": [
"date",
"content"
],
"type": "object"
}