This skill should be used when the user asks to "/gobby memory", "remember", "recall", "forget memory". Manage persistent memories across sessions - store, search, delete, update, and list memories.
Gobby's memory system (gobby-memory MCP) stores persistent facts across sessions. Use progressive discovery for tool schemas — this skill teaches judgment, not API reference.
Note: Claude Code's native memory system (~/.claude/projects/.../memory/) is disabled by Gobby rules. All memory operations go through gobby-memory MCP. Do not read or write to the native memory filesystem — those operations will be blocked.
Memory is one of several persistence mechanisms. Pick the right one:
| What you learned | Store it as | Why | |-----------------|-------------|-----| | User preference or convention | Memory | Durable, cross-session, hard to rediscover | | A bug or issue to fix | Task | Actionable, trackable, closeable | | Implementation approach for current work | Plan | Scoped to conversation, structured | | Something the code already shows | Nothing | Code is the source of truth | | Something git log already shows | Nothing | Git is the source of truth |
Rule of thumb: Would rediscovering this require multi-step exploration in a future session? If yes, memorize it. If you can find it by reading code or running git log, don't.
Memories that survive are specific, contextual, and time-resilient.
Good memories:
_MIN_MIGRATION_VERSION are intentionally unsupported."Bad memories:
find is fasterDurability test: Will this be useful in 3 months? If the answer depends on code not changing, it's not durable.
git log is authoritativeTags enable precise recall. Extract them from content:
| Content signal | Tag |
|---------------|-----|
| Testing, fixtures, pytest | testing |
| Security, auth, permissions | security |
| Architecture, design decisions | architecture |
| User preferences, conventions | convention |
| External systems, integrations | reference |
Use tags_all for AND queries, tags_any for OR, tags_none to exclude.
create_memory returns similar existing memories for exactly this reasonMemories decay. Periodically:
Use progressive discovery to find the maintenance tools on gobby-memory when needed.
The knowledge graph extracts entities and relationships from memories into a searchable graph. Use it when you need to understand connections between concepts rather than searching for specific content.
Category:other