read_diary_entry
Retrieve specific diary entries from your Obsidian journal by date to review past reflections and maintain consistent journaling habits.
Instructions
Read an existing diary entry.
Args: date: Date of the entry in YYYY-MM-DD format
Returns: The diary entry content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}