Help us improve
Share bugs, ideas, or general feedback.
From cortex
Stores important decisions, patterns, bug fixes, and lessons into Cortex persistent memory. Use after resolving bugs, making architecture choices, or when the user asks to remember something.
npx claudepluginhub cdeust/cortex --plugin cortexHow this skill is triggered — by the user, by Claude, or both
Slash command
/cortex:cortex-rememberThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
remember, save, store, note, bookmark, don't forget, important, keep this, record, persist, write down, save for later, remember this decision, store this pattern, note this lesson, save this fix
Captures decisions, learnings, patterns, and context as persistent memories organized by namespace across Claude Code sessions.
Manages persistent memory across Claude Code sessions via AutoMem. Recall project context, architectural decisions, bug fixes, user preferences, and patterns at session start or debugging.
Proactively saves decisions, conventions, bugs, discoveries, and preferences to persistent Engram memory across sessions using mem_save and related tools.
Share bugs, ideas, or general feedback.
remember, save, store, note, bookmark, don't forget, important, keep this, record, persist, write down, save for later, remember this decision, store this pattern, note this lesson, save this fix
Store important information into Cortex's thermodynamic memory system. Memories pass through a predictive coding gate that automatically filters noise — only genuinely novel or important content gets stored. The system handles deduplication, entity extraction, and knowledge graph linking automatically.
Use this skill when: A significant event happens during a session — a decision is made, a bug is fixed, a pattern is discovered, or the user explicitly asks to remember something.
Determine the content worth storing. Good candidates:
Call cortex:remember with structured content:
cortex:remember({
"content": "<clear, self-contained description of what to remember>",
"tags": ["<category>", "<project>", "<topic>"],
"directory": "<current working directory>",
"source": "<context: e.g. 'bug-fix', 'architecture-decision', 'user-preference'>"
})
Content guidelines:
The response includes:
stored: true/false — whether the gate accepted it (false means too similar to existing memory)memory_id — the stored memory's IDnovelty_score — how novel the content was vs existing memoriesmerged_with — if it was merged into an existing memory instead of creating newIf stored: false, the content was likely redundant. This is normal — the gate is working.
For memories that must survive context compaction and never decay:
cortex:anchor({
"memory_id": <id>,
"reason": "Critical architecture decision — must persist"
})
Anchored memories maintain heat=1.0 permanently and are injected at every session start.
bug-fix, architecture, user-preference, lesson) for better recall filtering"force": true to bypass the novelty gate when you know something is important despite seeming similar to existing memoriescortex:rate_memory with useful: true/false to train the system's metamemory confidence scoring