create_diary_template
Generate a personalized diary template with reflection prompts based on your recent journal entries to maintain consistent daily writing habits.
Instructions
Create a new diary entry template with reflection prompts based on recent entries.
Args: date: Date for the entry in YYYY-MM-DD format. If not provided, uses today's date.
Returns: A formatted diary template with reflection prompts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"type": "object"
}