mirror of
https://github.com/turnstonelabs/turnstone.git
synced 2026-08-12 23:12:23 -06:00
20 lines
529 B
JSON
20 lines
529 B
JSON
{
|
|
"name": "remember",
|
|
"description": "Save a persistent memory. Memories persist across sessions. Use to remember IPs, paths, commands, conventions, or any fact worth recalling later.",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"key": {
|
|
"type": "string",
|
|
"description": "Short identifier (e.g. 'user_name')."
|
|
},
|
|
"value": {
|
|
"type": "string",
|
|
"description": "Content to remember."
|
|
}
|
|
},
|
|
"required": ["key", "value"]
|
|
},
|
|
"primary_key": "key"
|
|
}
|