بنقرة واحدة
supermemory-save
// Save important project knowledge to memory. Use when user wants to preserve architectural decisions, significant bug fixes, design patterns, or important implementation details for future reference.
// Save important project knowledge to memory. Use when user wants to preserve architectural decisions, significant bug fixes, design patterns, or important implementation details for future reference.
Remove outdated or incorrect information from memory. Use when user says something is no longer true, wants to delete a memory, or information has changed.
Search your coding memory. Use when user asks about past work, previous sessions, how something was implemented, what they worked on before, or wants to recall information from earlier sessions.
Log in to Supermemory. Use when the user needs to authenticate, set up their API key, or when memory features report a missing key.
| name | supermemory-save |
| description | Save important project knowledge to memory. Use when user wants to preserve architectural decisions, significant bug fixes, design patterns, or important implementation details for future reference. |
| allowed-tools | Bash(node:*) |
Save important project knowledge based on what the user wants to preserve.
Analyze what the user is asking to save from the conversation.
Format the content to capture the key context:
[SAVE:<date>]
<User> wanted to <goal/problem>.
The approach taken was <approach/solution>.
Decision: <decision made>.
<key details, files if relevant>
[/SAVE]
Example:
[SAVE:2025-06-15]
User wanted to create a skill for saving project knowledge.
The approach taken was using a separate container tag for shared team knowledge.
Decision: Keep it simple - no transcript fetching, just save what user asks for.
Files: src/save-memory.ts, src/skills/super-save/SKILL.md
[/SAVE]
Keep it natural. Capture the conversation flow.
node ~/.codex/supermemory/save-memory.js "FORMATTED_CONTENT"
If custom containers are configured (see [SUPERMEMORY CONTAINERS] in your context), you can route the memory to a specific container using --container:
node ~/.codex/supermemory/save-memory.js --container <tag> "FORMATTED_CONTENT"
Choose the container whose description best matches the content being saved. If unsure, omit --container to save to the default project container.