Free
For prototyping and exploration
- 50K capture events/month
- 1K synthesize calls/day
- 5 agents
- Community support
Hippocortex is a deterministic memory layer that captures what your agents do, compiles patterns into reusable knowledge, and synthesizes context within token budgets. Three API calls. Zero LLM dependencies. Full provenance on every fact.
Your agent deployed a service yesterday. Today it starts from scratch — no memory of what worked, what failed, or why you made the choices you did. Every session is day one.
Vector search finds similar text. It doesn't understand temporal order, causal relationships, or which information contradicts what came before. Retrieval ≠ understanding.
Without compression, agents dump entire conversation histories into the context window. 90% is noise. You're burning tokens on irrelevant context while missing the patterns that matter.
capture()Messages, tool calls, file edits, commands — every interaction becomes a time-ordered episodic trace with full metadata. Automatic salience scoring filters noise. Dedup prevents redundancy. Zero configuration.
learn()The Memory Compiler mines episodes for patterns and promotes them across layers — task schemas from repeated procedures, failure playbooks from errors, causal chains from outcomes, decision policies from preferences. Every artifact backed by source evidence.
synthesize()Query all six memory layers simultaneously. Get compressed, provenance-tagged context optimized for your token budget. 60%+ compression over raw retrieval. Deterministic — same inputs, same outputs, every time.
Not a flat store. A living memory system where each layer builds on the one below it. Episodic traces promote to semantic knowledge. Semantic facts link into graph structures. Graph patterns feed the compiler. Full provenance at every level.
RAG retrieves documents. Hippocortex learns from experience. Here's what that difference looks like in practice.
Built across 100 engineering tasks over 10 development phases. Every layer independently tested. Every API frozen before release. This isn't a prototype with a landing page — it's infrastructure that shipped.
Install the SDK. Add three function calls. Your agent has persistent memory that learns from every session. Works with any framework — no rewrites required.
import { Hippocortex } from '@hippocortex/sdk';
const hx = new Hippocortex({ apiKey: 'hx_live_...' });
// Your agent does something
await hx.capture({
type: 'message',
sessionId: 'sess-1',
payload: { role: 'user', content: 'Deploy payments to staging' }
});
// Learn from accumulated experience
await hx.learn();
// Next time: compressed context from real experience
const ctx = await hx.synthesize('deploy payments');
// → Procedures, failure warnings, preferencesNo credit card required. Free tier is real — not a 7-day trial. Upgrade when your agents need more memory.
For prototyping and exploration
For individual developers in production
For production workloads at scale
For scale, compliance, and custom deployment
For prototyping and exploration
For individual developers in production
For production workloads at scale
For scale, compliance, and custom deployment
For individual developers in production
For prototyping and exploration
For production workloads at scale
For scale, compliance, and custom deployment
Events = capture() calls. learn() and synthesize() included at every tier. No hidden fees.