Every memory an agent needs, in one place.
Most AI memory products give you one shape: a vector blob. Minds gives you the full neuroscience-grounded hierarchy — six memory types, unified under one async API, with auditable forgetting and cryptographic lineage.
One async API. Six memory shapes. Zero glue code.
Each memory type is a first-class primitive with its own access patterns, lifecycle, and audit trail — and they all share the same substrate, so cross-modal retrieval is a single call.
Vector, graph, and episodic — one call.
The MetaMemoryManager fuses results across memory types in a single async call. No more wiring three databases together and praying the responses align.
import { Minds } from "@minds-sdk/typescript";
const minds = new Minds({ apiKey: process.env.MINDS_KEY });
// One call. Fuses across vector, graph, and episodic memory.
const memories = await minds.recall({
query: "Why did Q3 revenue dip?",
modes: ["vector", "graph", "episodic"],
timepoint: "2026-10-01", // bi-temporal — query the past
microtheory: "finance", // scope to a worldview
source: ["observed", "inferred"],// filter by attribution
topK: 5,
});
for (const m of memories) {
console.log(m.confidence, m.source, m.text);
}GDPR delete-requests, cryptographically.
Every deletion is justified, signed, and tamper-evident. Knowledge laundering is structurally impossible. Belief-taint tracking ensures untrusted sources can never reach Tier-1 recommendations.
- Memory types
- 6 (episodic, procedural, resource, vault, working, associative)
- Capacity model
- Miller 7±2 (working)
- Decay functions
- linear · exponential · power-law · ACT-R
- Source attribution
- observed · inferred · imagined · reported · reconstructed
- Bi-temporal
- valid time + transaction time
- Concurrency
- MVCC, 100K+ ops/sec
- Tests
- 451+ across memory crates
- Audit chain
- BLAKE3, Merkle-anchored
- Encryption at rest
- AES-256-GCM, per-namespace keys
- Key derivation
- HKDF-SHA256
- Forgetting
- auditable · justified · signed
- Lineage
- every belief traced to its source
- Quarantine
- verification gates before promotion
- GDPR
- cryptographic delete-receipts
Build a mind that remembers.
Start with the SDK. Ship in an afternoon. Run anywhere — Akasha Cloud, on-prem, or air-gapped.