plugin/claude-code/skills/memory/SKILL.md
ALWAYS ACTIVE — Persistent memory protocol. You MUST save decisions, conventions, bugs, and discoveries to engram proactively. Do NOT wait for the user to ask.
npx skillsauth add gentleman-programming/engram engram-memoryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You have access to Engram, a persistent memory system that survives across sessions and compactions. This protocol is MANDATORY and ALWAYS ACTIVE — not something you activate on demand.
Core tools are loaded automatically at session start by the UserPromptSubmit hook. They are available immediately — no manual ToolSearch needed.
mem_save, mem_search, mem_context, mem_session_summarymem_get_observation, mem_suggest_topic_key, mem_updatemem_session_start, mem_session_end, mem_save_promptFallback: If tools are unexpectedly unavailable, run engram setup claude-code
again and restart Claude Code. Setup repairs the durable MCP config and
permissions allowlist for both current (mcp__engram__...) and older
plugin-scoped (mcp__plugin_engram_engram__...) server ids.
Admin tools (deferred — use ToolSearch only if needed):
mem_stats, mem_delete, mem_timeline, mem_capture_passiveCall mem_save IMMEDIATELY and WITHOUT BEING ASKED after any of these:
"Did I or the user just make a decision, confirm a recommendation, express a preference, fix a bug, learn something non-obvious, or establish a convention? If yes, call mem_save NOW."
Format for mem_save:
project (default) | personalarchitecture/auth-modelmem_save with the same topic_key so memory is updated (upsert) instead of creating a new observationmem_suggest_topic_key first, then reuse that key consistentlymem_updateWhen the user asks to recall something — any variation of "remember", "recall", "what did we do", "how did we solve", or the equivalent in the user's language, or references to past work:
mem_context — checks recent session history (fast, cheap)mem_search with relevant keywords (FTS5 full-text search)mem_get_observation for full untruncated contentAlso search memory PROACTIVELY when:
mem_search with keywords from their message to check for prior work before respondingBefore ending a session or saying "done" / "that's it", you MUST:
mem_session_summary with this structure:[What we were working on this session]
[User preferences or constraints discovered — skip if none]
This is NOT optional. If you skip this, the next session starts blind.
If you see a message about compaction or context reset:
mem_session_summary with the compacted summary content — this persists what was done before compactionmem_context to recover any additional context from previous sessionsDo not skip step 1. Without it, everything done before compaction is lost from memory.
All core tools are loaded automatically by the hook at session start. If they are unexpectedly missing, rerun engram setup claude-code and restart Claude Code.
testing
Visual language rules for Engram surfaces. Trigger: Any dashboard styling, typography, spacing, or visual identity change.
data-ai
Creation rules for Engram UI elements, pages, cards, metrics, and detail flows. Trigger: Adding or changing dashboard UI components or connected browsing flows.
testing
Bubbletea/Lipgloss quality rules for Engram TUI. Trigger: Changes in model, update, view, navigation, or rendering.
testing
TDD and coverage standards for Engram. Trigger: When implementing behavior changes in any package.