A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Portable semantic memory for AI agents: core engine, TypeScript SDK, framework adapters, MCP server, CLI, and host plugi
Inspectable, portable semantic memory for agents and applications.
AtomicMemory is a memory layer you embed where your AI code already runs. Capture context, ground generations in prior interactions, and carry knowledge across sessions — from a direct SDK call, a CLI, an MCP server, a framework adapter, or a host plugin. Local-first where supported, hosted where convenient, and designed so the choice can change later without rewriting your application.
Most memory products ask you to trust a hosted black box with the layer that decides what an AI believes about your users. AtomicMemory takes the opposite position: the interface should be portable, the engine should be inspectable, and the memory system should be able to revise itself when facts change.
This repository is the public source of truth for the AtomicMemory JavaScript / TypeScript packages, framework adapters, host plugins, and public smoke tests.
Docs: docs.atomicstrata.ai
Field note: The AI Memory Industry Has A Black Box Problem
AtomicMemory v66 is leading performance/cost on BEAM-100K, BEAM-1M, and LoCoMo10 under matched methodology against published competitors. On BEAM-10M it matches the strongest published Mem0-new result while leaving Hindsight-scale temporal retrieval as the known open frontier.
| Benchmark | AtomicMemory v66 | Position | Cost/Q | Sample |
|---|---|---|---|---|
| BEAM-100K lenient | 0.7375 | Parity with Hindsight at 0.75 | $1.26 | n=80 |
| BEAM-1M lenient | 0.6625 | Leading Performance/Cost; +0.022 vs Mem0 paper | $0.083 | n=80 |
| BEAM-10M lenient | 0.4875 | Parity with Mem0-new at 0.486 | $0.081 | n=80 |
| LoCoMo10 GPT-4o-mini binary | 0.8396 | Leading Performance/Cost; +0.171 vs Mem0 paper | $0.066 | n=1540 |
These results put AtomicMemory at or near the published ceiling in each reported category while preserving the lower-cost operating profile that matters for real applications. Reproducibility artifacts and harness details will be published with the benchmark materials.
The SDK is the portability contract: applications depend on a typed interface and provider boundary instead of one memory vendor. Core is the engine that can earn that slot: self-hosted, auditable, and designed around revision rather than append-only recall.
packages/, adapters/, and plugins/.We make supportable performance claims, not marketing ones. The headline results above are benchmark scores under matched methodology; latency, recall@k, and scale-envelope claims should only be quoted when paired with the linked benchmark, hardware, dataset, and date used to produce them.
Until latency benchmarks are linked from the docs, treat the engine as "designed for single-digit-ms local retrieval on a developer laptop at typical agent corpus sizes" — a design target, not a guarantee.
This section documents what this repository's public CI proves on its own, so readers can see exactly what is verified here and do not assume this repository independently proves every product claim. For what this repository is not responsible for, see "What This Is Not" above.
Proven in this repository's public CI (every pull request):
pack dry-run plus tarball-shape verificationAlso in this repository, run in package or release contexts (not the per-PR affected lane):
generate:openapi / check:openapi)For the full walkthrough, see the AtomicMemory quickstart.
These commands use currently-published packages. Host plugin surfaces that are not yet public are listed in the package matrix below and are not part of the main install path.
# direct SDK
npm install @atomicmemory/sdk
# CLI
npm install -g @atomicmemory/cli
# framework adapter (example: Vercel AI SDK)
npm install @atomicmemory/vercel-ai @atomicmemory/sdk
Minimal SDK shape:
import { MemoryClient } from '@atomicmemory/sdk';
const memory = new MemoryClient({
providers: {
atomicmemory: { apiUrl: 'http://localhost:17350' },
},
});
await memory.initialize();
await memory.ingest({
mode: 'messages',
messages: [{ role: 'user', content: 'I prefer aisle seats.' }],
scope: { user: 'demo-user' },
});
const results = await memory.search({
query: 'seat preference',
scope: { user: 'demo-user' },
});
The minimal example, environment setup, and the full list of supported hosts and frameworks live in the docs site linked below. Adapter and plugin install contracts (install type, local-core requirement, hosted-mode status) appear at the top of each integration page.
Status labels follow the docs contract:
published.published.| Package | Path | Status |
|---|---|---|
@atomicmemory/core | packages/core | published |
@atomicmemory/sdk | packages/sdk | published |
@atomicmemory/cli | packages/cli | published |
@atomicmemory/mcp-server | packages/mcp-server | published |
@atomicmemory/llmwiki | packages/llmwiki | implemented, publish pending |
| Package | Path | Status |
|---|---|---|
@atomicmemory/vercel-ai | adapters/vercel-ai | published |
@atomicmemory/openai-agents | adapters/openai-agents | published |
@atomicmemory/langchain | adapters/langchain | published |
@atomicmemory/langgraph | adapters/langgraph | published |
@atomicmemory/mastra | adapters/mastra | published |
| Package | Path | Status |
|---|---|---|
@atomicmemory/claude-code-plugin | plugins/claude-code | published |
@atomicmemory/openclaw-plugin | plugins/openclaw | published |
@atomicmemory/hermes-plugin | plugins/hermes | published |
@atomicmemory/codex-plugin | plugins/codex | coming soon |
@atomicmemory/cursor-plugin | plugins/cursor | coming soon |
Codex and Cursor plugin source is present, but the public host install path is coming soon until each host marketplace manifest format is validated end to end.
| Surface | Location | Status |
|---|---|---|
Python SDK (atomicmemory on PyPI) | separate repository | published; not part of this monorepo |
The skeleton uses pnpm workspaces with Turborepo as the task graph and cache layer. pnpm owns dependency resolution, workspace linking, and packing. Turbo owns task ordering, caching, and affected-task selection.
# install (uses the pinned pnpm@9.15.4 from packageManager)
pnpm install
# build / typecheck / test
pnpm run build
pnpm run typecheck
pnpm run test # self-contained packages
pnpm run test:core # requires core test services
pnpm run lint
# release / hygiene gates (not cached; always re-run)
pnpm run pack-dry-run
pnpm run package-metadata
pnpm run docs-contract
pnpm run public-integration-smoke
pnpm run repo-hygiene
pnpm run security-compliance
Package versions are intentionally scoped by release family instead of one
global monorepo version. @atomicmemory/core and @atomicmemory/sdk move
independently. Host plugins move together, framework adapters move together,
and the CLI/MCP-server tool pair moves together:
pnpm check:version-families # CI guard for drift
Release bumping, public sync, and registry publish preparation are owned by the ops repo. Keep this source repo focused on package metadata and version-family consistency checks.
Build, test, lint, and docs-contract run through Turborepo's task graph.
Typecheck declares no cache outputs because package scripts use tsc --noEmit.
The side-effecting checks (pack-dry-run, public-integration-smoke,
repo-hygiene, code-health, and security-compliance) always re-run through
cache: false tasks or direct root node scripts. package-metadata is a
direct root check so it always reads the current package manifests.
CI lanes use thin aliases over the same Turbo tasks:
pnpm run ci:affected # build / typecheck / lint for affected packages; tests for self-contained packages
pnpm run ci:code-health # fallow/code-health coverage
pnpm run ci:pack-dry-run # pack-dry-run, affected-only
pnpm run ci:docs-contract # docs-contract
pnpm run ci:public-smoke # public-integration-smoke
ci:affected and ci:pack-dry-run use Turbo's --affected filter for normal
PRs; full release-green validation runs the unprefixed scripts so the required
surface is never narrowed by affected detection. The core package's DB-backed
test suite requires service provisioning and is intentionally outside the
generic affected lane; build, typecheck, lint, metadata, and pack validation
still cover @atomicmemory/core in public CI.
Per-package commands (pnpm --filter @atomicmemory/sdk run build, etc.) work
for packages in packages/, adapters/, and plugins/.
llmwiki is a separate knowledge compiler that turns raw sources into an interlinked markdown wiki. It is valuable on its own — useful as a notebook, RAG index, CI-checked knowledge base, or domain pack source — and remains so whether or not AtomicMemory is in the picture.
@atomicmemory/llmwiki (in this monorepo at packages/llmwiki/) is a one-way bridge: it imports an llmwiki export --target json envelope as one verbatim AtomicMemory record per wiki page, with all advisory metadata (kind, citations, confidence, provenance state, contradictions, aliases, freshness) preserved under memory.metadata.llmwiki.*. Either direction holds value standalone; the bridge just lets you choose runtime semantic recall on top of compiled knowledge.
See packages/llmwiki/README.md and packages/llmwiki/docs/cookbook.md for the full workflow.
Per-package changelogs live next to each package. Cross-package and monorepo
rollup changes are recorded in CHANGELOG.md.
packages/ core, sdk, cli, mcp-server
adapters/ framework integrations (Vercel AI, OpenAI Agents, LangChain,
LangGraph, Mastra)
plugins/ host integrations (Claude Code, OpenClaw, Hermes, Codex, Cursor)
examples/ reserved for phase 2+; only added with owners and CI coverage
tests/smoke/ public, contributor-safe smoke tests
Release orchestration, marketplace operations, sensitive service configuration, and local machine paths are deliberately not part of this repository.
See CONTRIBUTING.md for the workflow, branch protection
rules, and the public CI lanes a pull request runs through.
AI coding agents should also read AGENTS.md. CLAUDE.md and
GEMINI.md point their respective CLIs at the same public instructions.
Security policy, supported versions, and the confidential reporting channel are
documented in SECURITY.md. Please report suspected
vulnerabilities confidentially rather than opening a public issue.
Apache License 2.0 — see LICENSE.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
MCP server integration for DaVinci Resolve Studio
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba