append_memory_bank_entry
Appends a timestamped entry to a specified file in the memory bank, optionally under a specific markdown header, to maintain persistent project context for AI assistants.
Instructions
Appends a new, timestamped entry to a specified file, optionally under a specific markdown header.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entry | Yes | The content of the entry to append. | |
file_name | Yes | The name of the memory bank file to append to. | |
section_header | No | (Optional) The exact markdown header (e.g., '## Decision') to append under. |
Input Schema (JSON Schema)
{
"properties": {
"entry": {
"description": "The content of the entry to append.",
"type": "string"
},
"file_name": {
"description": "The name of the memory bank file to append to.",
"type": "string"
},
"section_header": {
"description": "(Optional) The exact markdown header (e.g., '## Decision') to append under.",
"type": "string"
}
},
"required": [
"file_name",
"entry"
],
"type": "object"
}