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

推荐订阅源

博客园_首页
H
Help Net Security
腾讯CDC
宝玉的分享
宝玉的分享
H
Hackread – Cybersecurity News, Data Breaches, AI and More
L
LangChain Blog
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
D
Docker
V
V2EX
Last Week in AI
Last Week in AI
G
Google Developers Blog
IT之家
IT之家
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东

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
Agents need a black box recorder, not more memory
Morgan · 2026-05-15 · via DEV Community

Morgan

Every agent product eventually ends up talking about memory.

Longer memory. Better memory. Shared memory. Vector memory. Persistent memory.

I get why. Anyone who has used coding agents for real work has hit the same
wall: the agent loses context, forgets what happened in another client, repeats
itself, or makes a change that is hard to reconstruct later.

But I think "memory" is the wrong primary frame.

The more useful question is:

After the run is over, can I answer what happened?

Not just what the final answer was. What actually happened.

What did the user ask?

What files, tools, docs, and prior context were in play?

Why did the agent call a tool?

Which model produced that action?

What changed?

What did it cost?

Can I replay, audit, or explain the chain?

That is less like a second brain and more like a black box recorder.

The pain is showing up everywhere

The agent tooling conversations I keep seeing are not only about storage.
They are about operational trust.

One MCP discussion described the problem of context being trapped inside one
client. You can brainstorm on mobile, continue in the web app, then open a
coding agent locally and it has no idea what just happened.

That is not just a memory problem. It is a continuity problem.

Another thread proposed standard audit context for AI-initiated MCP tool calls:
why the AI invoked a tool, and which model produced that invocation.

That is not just a logging problem. It is an accountability problem.

Other threads are circling server identity, tool provenance, permission specs,
and tool bills of materials. People are asking questions like:

  • Who published this tool?
  • Did its metadata change?
  • What capabilities does it require?
  • Why should an agent be allowed to call it?

That is not just a security problem. It is a trust problem.

Then there are the everyday developer headaches: unexpected token usage, credits
attached to the wrong workspace, orphaned local subprocesses, tool calls that
worked in one environment but not another.

That is not just observability. It is run truth.

"Memory" hides too much

When we call all of this memory, we flatten several different needs into one
word.

Developers do need agents to remember useful context.

But they also need agents to preserve the reasoning trail around important
work:

  • task intent
  • active context
  • files and tools touched
  • model/tool calls
  • permission and trust assumptions
  • cost/token/process anomalies
  • receipts for important actions
  • a replayable or inspectable run history

Those are not all the same feature.

An agent can remember a fact and still be impossible to audit.

An agent can summarize a conversation and still leave you unable to explain why
it deleted a file, called a tool, burned tokens, or trusted a server.

The product shape I want

The layer I want is local-first and boring in the best way.

It sits under agent work and records enough truth that the user or another
agent can come back later and ask:

What happened here?

And get a useful answer.

Not a hallucinated summary. Not a vague activity feed. Not a giant dashboard
about dashboards.

A compact chain:

  1. The user asked this.
  2. The agent saw this context.
  3. It chose these tools for these reasons.
  4. These tool calls happened.
  5. These files or external states changed.
  6. This was the cost/runtime footprint.
  7. These actions were approved, deferred, or blocked.
  8. This is what a future agent should trust or re-check.

That would make agents safer to use for real work.

It would also make them easier to improve, because the failures would be
visible:

  • lost context
  • stale assumptions
  • wrong tool trust
  • runaway cost
  • missing approval
  • environment drift
  • actions with no durable deliverable

The phrase I keep coming back to

Agents do not only need memory.

They need a local truth layer.

Something closer to:

inspect, replay, and trust agent work across tools and clients.

That is the direction I am exploring with AMK.

The goal is not another knowledge base. The goal is to make "what happened?"
answerable after the run is over.

Because once agents are doing real work, that question matters more than almost
anything else.