save_memory
Automatically saves information to long-term memory when prompted with keywords like 'remember' or 'save this'. Organizes data by key, value, and category for easy retrieval.
Instructions
IMPORTANT: This tool should be automatically called when users say "기억해", "remember", "저장해", "save this", "keep this", "memorize" or similar keywords. Save information to long-term memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Memory category | |
key | Yes | Memory key/identifier | |
value | Yes | Information to save |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Memory category",
"enum": [
"project",
"personal",
"code",
"notes"
],
"type": "string"
},
"key": {
"description": "Memory key/identifier",
"type": "string"
},
"value": {
"description": "Information to save",
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
}