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).
From engramnpx claudepluginhub baladithyab/engramThis skill uses the workspace's default tool permissions.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Designs, audits, and improves analytics tracking systems using Signal Quality Index for reliable, decision-ready data in marketing, product, and growth.
Enforces A/B test setup with gates for hypothesis locking, metrics definition, sample size calculation, assumptions checks, and execution readiness before implementation.
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