slm-recall

Featured

Search and retrieve facts, decisions, and past context from SuperLocalMemory. Use when the user asks to recall, find, search, or "what did we decide/say about X". Triggers multi-channel semantic retrieval with reranking; always call before storing anything new.

AI & Automation 224 stars 35 forks Updated 1 weeks ago AGPL-3.0

Install

View on GitHub

Quality Score: 87/100

Stars 20%
78
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# slm-recall — Search & Retrieve Memory Retrieve stored facts, decisions, and past context from SuperLocalMemory using multi-channel retrieval. The golden rule: **recall before you remember**. --- ## When to use recall vs search vs fetch vs list_recent | Situation | Tool | |-----------|------| | Conceptual or paraphrase query ("what did we agree on for auth?") | `recall` — full multi-channel retrieval + rerank | | Exact keyword match needed ("find facts containing BM25") | `search` — FTS5 BM25 only, lower latency | | You have a specific `fact_id` from a prior result | `fetch` — exact lookup, full detail | | Browse newest entries without a query | `list_recent` | Use `recall` as the default. `search` is a fallback for zero-result recall on a known exact term. `fetch` is for when you already know the ID. --- ## Recall-before-remember discipline Before storing anything new, always call `recall` first. If a near-duplicate fact already exists, call `update_memory(fact_id, content)` to refine it rather than creating a duplicate. Duplicates degrade retrieval quality for every future session. --- ## MCP-first workflow ### 1. Standard recall ``` recall( query="authentication strategy decision", limit=20, # default 20; reduce to 5 for quick pre-task checks session_id="<sid>", # pass the session_id returned by session_init fast=None, # leave unset; see "Fast mode" below for what it controls ) ``` Real response shape (`--json` equivalent): ```js...

Details

Author
qualixar
Repository
qualixar/superlocalmemory
Created
7 months ago
Last Updated
1 weeks ago
Language
Python
License
AGPL-3.0

Similar Skills

Semantically similar based on skill content — not just same category