superlocalmemory

Solid

AI agent memory with mathematical foundations. Store, recall, search, and manage memories locally with zero cloud dependency.

AI & Automation 181 stars 24 forks Updated today AGPL-3.0

Install

View on GitHub

Quality Score: 91/100

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

Skill Content

# SuperLocalMemory AI agent memory that runs 100% locally. Four-channel retrieval (semantic, graph, BM25, temporal) with mathematical similarity scoring. No cloud, no API keys, EU AI Act compliant. ## Installation ```bash pip install superlocalmemory # or npm install -g superlocalmemory ``` ## Quick Start ```bash slm remember "Alice works at Google as a Staff Engineer" --json slm recall "Who is Alice?" --json slm status --json ``` ## Commands All data-returning commands support `--json` for structured agent-native output. ### Memory Operations ```bash slm remember "<content>" --json # Store a memory slm remember "<content>" --tags "a,b" --json slm recall "<query>" --json # Semantic search slm recall "<query>" --limit 5 --json slm list --json -n 20 # List recent memories slm forget "<query>" --json # Preview matches (add --yes to delete) slm forget "<query>" --json --yes # Delete matching memories slm delete <fact_id> --json --yes # Delete specific memory by ID slm update <fact_id> "<content>" --json # Update a memory ``` ### Diagnostics ```bash slm status --json # System status (mode, profile, DB) slm health --json # Math layer health slm trace "<query>" --json # Recall with per-channel breakdown ``` ### Configuration ```bash slm mode --json # Get current mode slm mode a --json ...

Details

Author
qualixar
Repository
qualixar/superlocalmemory
Created
4 months ago
Last Updated
today
Language
Python
License
AGPL-3.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category