惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
GbyAI
GbyAI
博客园 - 司徒正美
美团技术团队
Vercel News
Vercel News
IT之家
IT之家
U
Unit 42
Y
Y Combinator Blog
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
V
Visual Studio Blog
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MyScale Blog
MyScale Blog
博客园 - 叶小钗
A
About on SuperTechFans
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
B
Blog RSS Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Introducing Eidentic
Baran Özdemir · 2026-06-12 · via DEV Community
Cover image for Introducing Eidentic

Today we're releasing Eidentic, an open-source TypeScript SDK for building AI agents with self-improving memory and the production fundamentals built in — not bolted on. It's Apache-2.0, with no enterprise tier, and it runs on Node, Bun, Deno, and the edge.

The two things you keep rebuilding

Every serious agent eventually needs the same two things, and most stacks make you assemble both yourself.

The first is memory that actually improves. Not a vector store you query and paste into a prompt, but something that remembers across sessions, resolves contradictions, and gets sharper the longer it runs. The second is the production layer: durable runs, cost limits that are actually enforced, multi-tenant isolation, sandboxed tools, evals that gate CI. In most ecosystems that layer shows up late, as an enterprise add-on, or never.

Eidentic ships both, in one composable package, fully open.

Thirty seconds to a memory-backed agent

npm install eidentic

import { Agent, AIModel, SqliteStore } from "eidentic";
import { anthropic } from "@ai-sdk/anthropic";

const agent = new Agent({
  id: "support",
  instructions: "You are a support agent. Remember the user.",
  model: new AIModel(anthropic("claude-sonnet-4-5")),
  store: new SqliteStore("./eidentic.sqlite"),
});

for await (const ev of agent.query("What did we decide last week?", {
  sessionId: "u-42",
})) {
  if (ev.type === "stream.delta") process.stdout.write(ev.delta.text);
}

The agent recalls prior sessions for that sessionId inside query(), with citations, and consolidates what it learned while idle. Swap SqliteStore for @eidentic/libsql or @eidentic/postgres and the agent code doesn't change — that's the ports-and-adapters design running through the whole SDK.

What's in the box

  • A four-tier memory engine: lexical + vector recall, self-editing memory blocks, a temporal knowledge graph, and sleep-time consolidation.
  • Durable execution — checkpoint and resume with exactly-once tool dispatch.
  • Enforced cost ceilings, rate limits, quotas, and multi-tenant isolation.
  • Sandboxed tools, deny-by-default permissions, and one-call GDPR erasure.
  • An eval harness with a CI pass-rate gate, an MCP host + server with OAuth, and A2A.
  • First-class React hooks, a Next.js handler, and a CLI.

Honest about where we are

Eidentic is pre-1.0 and stabilizing toward v1. We'd rather over-disclose gaps than oversell, so we publish our benchmarks in full — including the ones we lose. On LongMemEval, memory beats a full-context baseline by 14.2 points at up to ~39× fewer tokens; on LoCoMo's smaller haystack, full context still wins. Both runs are public.

Get started

Read the docs, browse the source on GitHub, or clone an example for Next.js, React, or Express. If you build something with it, we'd love to hear about it.