add_entry
Add or update journal entries for the day by submitting content and optional tags. Appends to existing entries if already created, ensuring organized and continuous journaling.
Instructions
Add a new journal entry. If an entry for today already exists, it will append to the same file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the journal entry | |
tags | No | Optional tags for the entry (will also extract from content) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "The content of the journal entry",
"type": "string"
},
"tags": {
"description": "Optional tags for the entry (will also extract from content)",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"content"
],
"type": "object"
}