save_memory
:
Instructions
Save a key-value pair to persistent agent memory that survives across sessions. Returns a confirmation with the stored key. Use this to remember installed skills, user preferences, project context, or recent search queries. Call this proactively whenever you learn something worth remembering. Do not store sensitive data like passwords or API keys. Retrieve saved memories with recall_memory.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Memory key name. Examples: 'installed_skills', 'preferred_categories', 'project_context' | |
| value | Yes | Any JSON-serializable value to store (string, array, object, number, etc.) | |
| type | Yes | Category of this memory entry |