add_to_list
Add structured data items to specific sections of a memory document, enabling agents to systematically organize and update project knowledge over time.
Instructions
Add an item to a list section in a memory document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item | Yes | The item data to add (structure depends on template) | |
memory_id | Yes | The ID of the memory document to update | |
section | Yes | The section name to add the item to |
Input Schema (JSON Schema)
{
"properties": {
"item": {
"description": "The item data to add (structure depends on template)",
"type": "object"
},
"memory_id": {
"description": "The ID of the memory document to update",
"type": "string"
},
"section": {
"description": "The section name to add the item to",
"type": "string"
}
},
"required": [
"memory_id",
"section",
"item"
],
"type": "object"
}