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

推荐订阅源

Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
博客园_首页
量子位
雷峰网
雷峰网
GbyAI
GbyAI
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Cloudflare Blog
IT之家
IT之家
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News 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
Most AI Agents Do Not Have a Memory Problem. They Have a ...
Eugene · 2026-05-22 · via DEV Community

Most AI agents do not have a memory problem.

They have a coordination problem.

A lot of current AI agent demos focus on memory.

The agent remembers the user.

The agent remembers previous tasks.

The agent remembers documents, preferences, decisions, and context.

That is useful.

But in real enterprise workflows, the harder problem appears one step later:

How do multiple agents stay synchronized?

Because enterprise AI rarely ends with one assistant.

You may have:

  • a sales agent talking to customers
  • a proposal agent preparing commercial documents
  • a compliance agent checking risks and policies
  • a support agent handling tickets
  • an operations agent updating internal systems
  • a human approver reviewing important decisions

Each of them may have access to different tools, different context, different permissions, and different pieces of memory.

The real challenge is not whether one agent can remember something.

The challenge is whether all agents can share the same operational reality.


The Problem With Isolated Agent Memory

Many agent systems treat memory as something local to the agent.

That memory can be stored in different forms:

local files
JSON state
conversation summaries
vector databases
agent-specific notes
tool outputs
runtime context

Enter fullscreen mode Exit fullscreen mode

This works well for demos.

But it becomes fragile when multiple agents are involved.

Imagine this simple workflow:

Sales Agent      -> speaks with the customer
Proposal Agent   -> prepares the offer
Compliance Agent -> checks GDPR requirements
Ops Agent        -> updates internal systems

Enter fullscreen mode Exit fullscreen mode

Now imagine the sales agent learns that the customer wants an on-prem deployment.

But the proposal agent still thinks this is a SaaS deal.

The compliance agent knows that GDPR restrictions apply.

But the ops agent does not.

The result is predictable:

outdated proposals
inconsistent statuses
duplicated work
weak auditability
conflicting decisions
no clear source of truth

Enter fullscreen mode Exit fullscreen mode

This is not just a memory issue.

It is a coordination issue.


Memory Is Not the Same as Operational State

Agent memory is often unstructured.

It may contain things like:

"The customer seemed worried about deployment complexity."
"They prefer on-prem."
"Budget sensitivity is high."
"Proposal should probably include compliance language."

Enter fullscreen mode Exit fullscreen mode

Some of this is useful.

But enterprise systems need more than useful notes.

They need structured operational state:

{
  "customer_id": "acme",
  "deployment_preference": "on_prem",
  "compliance_required": true,
  "proposal_status": "draft",
  "approval_required": true
}

Enter fullscreen mode Exit fullscreen mode

They also need to know:

Who changed this?
When did it change?
Why did it change?
Which event triggered it?
Which agent made the decision?
Was human approval required?
Can we replay or audit the process?

Enter fullscreen mode Exit fullscreen mode

That is where private agent memory starts to fail.


The Missing Layer: Shared Operational State

For multi-agent systems to work in enterprise environments, agents need a shared state layer.

Not just shared memory.

Not just a vector database.

Not just chat history.

They need a layer where:

events are recorded
state is structured
changes are auditable
workflows are triggered
agents can subscribe to updates
humans can review important steps
APIs and systems can be called safely

Enter fullscreen mode Exit fullscreen mode

In other words, agents need an operational backend.

A simple conceptual flow could look like this:

Customer message received
        |
        v
Event: customer.message.received
        |
        v
AI extracts requirements
        |
        v
Event: customer.requirements.updated
        |
        v
Database state changes
        |
        v
Proposal Agent, Compliance Agent, and Ops Agent receive updates
        |
        v
Workflow continues

Enter fullscreen mode Exit fullscreen mode

Instead of each agent maintaining its own private notebook, all agents work through the same event-driven source of truth.


Why a Database-Native Approach Makes Sense

Most enterprise applications already depend on databases for operational truth.

CRMs, ERPs, PMS systems, ticketing systems, billing systems, and internal tools all rely on structured state.

So the question becomes:

Why should AI agents coordinate outside the database?

A database-native approach gives multi-agent systems several important properties.


1. Shared Source of Truth

All agents read and write through the same operational layer.

Sales Agent      -> shared state
Proposal Agent   -> shared state
Compliance Agent -> shared state
Ops Agent        -> shared state

Enter fullscreen mode Exit fullscreen mode

No agent has to guess whether its local memory is still current.


2. Event-Driven Workflows

Every important change can become an event.

customer.created
requirement.extracted
proposal.requested
risk.detected
approval.required
document.generated
ticket.updated

Enter fullscreen mode Exit fullscreen mode

These events can trigger agents, API calls, webhooks, notifications, or human approvals.


3. Auditability

Enterprise AI systems need traceability.

It should be possible to answer:

What happened?
Which agent changed the state?
What data was used?
Which workflow was triggered?
Was the decision approved?
Can we review the history?

Enter fullscreen mode Exit fullscreen mode

Without auditability, multi-agent automation becomes risky.


4. Human-in-the-Loop Control

Not every agent action should be executed automatically.

Some actions should create approval tasks.

For example:

discount approval
contract generation
compliance exception
customer-facing email
system configuration change
financial action

Enter fullscreen mode Exit fullscreen mode

A shared state layer makes it easier to place humans inside the workflow rather than outside of it.


5. Better Synchronization

Agents do not need to ask each other what happened.

They can react to the same event stream and read the same structured state.

That makes the system more predictable.


The Pattern

The pattern looks like this:

Agents do not own the truth.
The database owns the truth.

Agents do not just remember.
They emit events.

Events update state.
State changes trigger workflows.
Workflows activate agents, APIs, or humans.

Enter fullscreen mode Exit fullscreen mode

This is the difference between:

agent memory

Enter fullscreen mode Exit fullscreen mode

and:

enterprise operational state

Enter fullscreen mode Exit fullscreen mode


Where LedgyX Fits

This is one of the core ideas behind LedgyX.

LedgyX turns the database into an operational control plane for AI agents.

Agents can use LedgyX to:

emit events
update structured state
trigger workflows
call APIs
send webhooks
notify users
coordinate with other agents
keep an auditable history

Enter fullscreen mode Exit fullscreen mode

The goal is not to replace AI agent frameworks.

The goal is to give them a reliable operational backend.

A place where agents can stay synchronized, act through shared state, and leave a clear audit trail.

In this model, the database is not just storage.

It becomes the coordination layer.


A Simple Example

Imagine a customer onboarding workflow.

1. Sales Agent receives a customer request.
2. The request is stored as an event.
3. AI extracts requirements from the message.
4. Requirements are written into structured state.
5. Compliance Agent checks whether restrictions apply.
6. Proposal Agent generates a draft based on current state.
7. Human Approver reviews the proposal.
8. Ops Agent updates the internal system.
9. The customer receives the final response.

Enter fullscreen mode Exit fullscreen mode

At every step, the system knows:

what happened
who or what triggered it
which state changed
which agent acted
which workflow continued
whether approval was required

Enter fullscreen mode Exit fullscreen mode

That is much closer to how enterprise systems need to work.


The Next Question for AI Infrastructure

The first question was:

Can your agent remember?

Enter fullscreen mode Exit fullscreen mode

The next question is:

Can all your agents stay synchronized?

Enter fullscreen mode Exit fullscreen mode

And after that:

Can they explain what changed?
Can they act through the same source of truth?
Can humans review important decisions?
Can the system be audited?
Can workflows be replayed or debugged?

Enter fullscreen mode Exit fullscreen mode

This is where multi-agent systems need to mature.

Not more isolated memory.

Not more private notebooks.

Not more disconnected vector stores.

But shared, structured, auditable operational state.

That is the infrastructure layer multi-agent AI will need in enterprise environments.

And that is the problem we are building LedgyX to solve.