save_memory
Store important knowledge like bug fixes, preferences, and conventions, using categories and tags for reliable recall across sessions.
Instructions
Save a piece of knowledge to persistent memory.
Call this when you learn something worth remembering:
- User preferences or corrections
- Bug fixes and their root causes
- Project conventions or patterns
- Environment details (OS, tools, versions)
- Code snippets that solved tricky problems
- Decisions and their reasoning
Args:
content: What to remember. Be specific and concise.
category: One of: preference, lesson, fix, context, convention, environment, snippet, general
tags: Comma-separated tags for easier recall (e.g. "python,debugging,asyncio")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| content | Yes | ||
| category | No | general |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |