Help us improve
Share bugs, ideas, or general feedback.
From engram
This skill should be used when the user asks to "search memories", "find in memory", "what do I remember about X", "recall past decisions", "check memory for X", or needs guidance on constructing memory queries. Covers: MCP tool usage patterns, memory type selection (episodic/semantic/procedural/working), scope selection (session/project/user), importance scoring, and retrieval strategies (BM25, graph, hybrid).
npx claudepluginhub baladithyab/engramHow this skill is triggered — by the user, by Claude, or both
Slash command
/engram:memory-queryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- `store_memory` — create a memory (content, type, scope, tags, importance)
Manages AI memories: saves decisions/patterns/facts with categories/tags, searches context, lists/deletes entries, rescans project architecture via MCP tools and /remember /forget.
PROACTIVELY query Forgetful MCP (mcp__forgetful__* tools) when starting work on any project, when user references past decisions or patterns, when implementing features that may have been solved before, or when needing context about preferences. Save important decisions, patterns, and architectural insights to memory.
Implements 3-layer memory search workflow to recall past work, decisions, errors, and project history token-efficiently via layered functions.
Share bugs, ideas, or general feedback.
store_memory — create a memory (content, type, scope, tags, importance)recall_memories — search by text query with BM25 full-text searchforget_memory — soft-delete a memoryget_memory_status — connection and count statspromote_memory — move memory to higher scope| Type | Use For | Examples |
|---|---|---|
episodic | Events, conversations, experiences | "Fixed auth bug by adding token refresh" |
semantic | Facts, knowledge, concepts | "This project uses PostgreSQL 16 with pgvector" |
procedural | Skills, patterns, how-tos | "To deploy, run cdk deploy --all from infra/" |
working | Temporary task context | "Currently investigating the CORS issue on /api/users" |
| Scope | Persists | Use For |
|---|---|---|
session | This conversation only | Working context, temporary notes |
project | Across sessions in this project | Codebase knowledge, conventions |
user | Across all projects | Personal preferences, cross-project patterns |
recall_memories(query: "authentication") — finds all auth-related memoriesrecall_memories(query: "test patterns", scope: "project") — project-specificrecall_memories(query: "how to deploy", memory_type: "procedural") — skills only