From memini
Searches memini memory service for prior context, decisions, or facts relevant to the current task. Use before file edits, architectural changes, or debugging recurring issues.
How this skill is triggered — by the user, by Claude, or both
Slash command
/memini:recallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
memini is a memory service. To search for prior context, call the
memini is a memory service. To search for prior context, call the
memory_recall MCP tool with:
query (required) — a natural-language description of what you're looking forlimit (optional) — max results; default 10, suggested 5 for targeted searchtiers (optional) — restrict to specific tiers (semantic, procedural,
episodic, working)tags (optional) — restrict to memories carrying every listed tag (AND)metadata (optional) — restrict to memories whose metadata contains each
key=value pair, e.g. {"category":"bug_fixes"} (canonical categories below)scope (optional) — how wide to read: project (just this project's own
memories), full (default: project plus inherited context — ancestors, your
personal namespace, links), or everywhere (full plus nested sub-projects).
There is no per-call namespace override — namespaces are managed for you;
read the from field on each result (and the briefing's Scope line) to see
where a memory actually lives, never construct a namespace path yourself.query_rewrite (optional) — true expands the query into 2-3 variants and
fuses the results via RRF. Slower, but better recall: reach for it when a
first attempt comes back thin or empty and you believe something is there.as_of (optional) — an RFC3339 time for "what was true then" queries; returns
facts valid at that instant, including ones since superseded.response_format (optional) — concise returns each result's summary (or the
first ~240 characters of content, truncated) instead of full content; use it
for a token-efficient first pass over many results, then call memory_get on
the ones worth reading in full. Default detailed returns full content.Canonical metadata.category values (any string is accepted, but stick to these
so filtering works): architecture_decisions, anti_patterns,
task_learnings, tooling_setup, bug_fixes, coding_conventions,
user_preferences, dependency_decisions, performance_findings,
security_constraints, testing_patterns, data_model, api_contracts,
deployment_runbook, team_norms, domain_glossary, experiment_results.
To browse without a query — "show me everything tagged X" or "all procedural
memories in the deployment_runbook category" — call memory_list instead. It
takes the same tiers / tags / metadata filters plus limit (default 20)
and offset for paging past it, and returns matching memories newest-first
with no relevance query.
memory_recall runs hybrid retrieval (vector + keyword), then ranks by
relevance and memory quality (a corroborated, durable, frequently-recalled fact
outranks a one-off note), so natural-language queries work as well as exact
keywords. Each result carries confidence (durable facts only — treat a
low-confidence memory as a weak signal), created_at, and tags. Prefer a
short descriptive query ("JWT auth setup").
To orient at the start of a session without a query, call memory_briefing
instead: it returns pinned context, durable facts, how-to procedures, and recent
activity in one call.
To trace one memory's lineage rather than search across many, call
memory_history with its id (from a recall or list result). It returns the
bi-temporal supersession chain — the fact itself plus every fact it superseded
and every fact that superseded it, oldest-first, tombstoned rows included. Each
entry's valid_from/valid_to bound when it was true and superseded_by names
what replaced it. Reach for it to answer "what did we believe before, and what
changed it" — as_of tells you what was true at one instant, memory_history
tells you the whole story of how a fact got to be what it is now.
Read the returned results[].content. Don't dump the raw list to
the user — synthesize: "I remember we chose X because Y, and last time we
hit Z." When you state a fact that came from memory, quote the stored
content verbatim rather than paraphrasing it into something it didn't say;
if a memory is ambiguous, say so instead of guessing.
memory_update, or
memory_forget if it should not exist. Never leave a memory you know is
incorrect in place.created_at (a
newer memory may supersede an older one) and surface the conflict; once it
is resolved, fix the stale memory with memory_update (or memory_forget
if it should not exist).degraded: "keyword_only"
(with a note) means semantic search was unavailable and the results came
from keyword matching alone — treat them as incomplete, not exhaustive; a
relevant memory may exist but not have matched. Don't report "nothing
found" as a confident negative when this flag is set.memini doctor; continue without memory rather than
blocking.npx claudepluginhub eleboucher/memini --plugin meminiRecalls past context, decisions, and discussions from Memsy memory. Activates on retrieval-intent queries like "what did we decide" or "search past conversations."
Recalls past work, decisions, error solutions, and project history via a 3-layer memory search workflow for token-efficient retrieval.
Searches and retrieves memories from Cortex persistent memory using WRRF retrieval. Use for past decisions, patterns, bugs, or architecture context.