AI Agents

NVIDIA shows how NemoClaw can give enterprise agents persistent memory and governed actions

NVIDIA published a NemoClaw example for a memory-driven Chief of Staff agent, showing how structured self models and sandboxed execution can improve enterprise agent workflows.

Published Updated
NVIDIANemoClawAI AgentsEnterprise AI

NVIDIA has published a new technical example showing how enterprise AI agents can use persistent memory without turning that memory into unchecked authority. The September 4 post, “Building a Memory-Driven Agent with NVIDIA NemoClaw,” describes a Chief of Staff-style agent that maintains a human-readable self model of people, projects, priorities and working patterns, while using a separate ledger for obligations, rankings, corrections and audit events.

The problem NVIDIA is addressing is familiar to teams experimenting with workplace agents. A useful assistant cannot treat every request as a blank-slate chat. It needs to remember which projects matter, how collaborators are related, what decisions have already been made and which obligations are still open. At the same time, memory can become risky if the system hides assumptions, preserves wrong judgments or lets context quietly authorize actions. NVIDIA’s design separates evidence, knowledge and governed execution so developers can inspect how a conclusion was reached.

In the example, the self model is stored as structured Markdown pages covering people, projects, priorities, goals, concepts and recurring work patterns. A SQLite ledger records judgments such as obligation ranking, user corrections and audit history. That separation is intentional: a memory page might tell the agent that a collaborator prefers Slack, but sending a Slack message still depends on credentials, runtime policy and user approval. Context can inform an action, but it cannot authorize one.

NVIDIA reports measurable gains from the approach. In its Agent Memory Benchmark, the self model improved overall accuracy to 90.9% from 82.8% for an agentic RAG baseline. The biggest jumps appeared in harder categories, including changed facts over time, point-in-time reasoning and entity disambiguation. Those results suggest that persistent memory is not just a convenience feature; it can help an agent answer questions that require continuity across many messages and decisions.

Security is a second pillar of the release. The example uses NVIDIA NemoClaw together with NVIDIA OpenShell, a secure runtime for autonomous agents, to sandbox the agent and govern access to the file system, processes and network. Credentials for managed inference and MCP connections remain outside the sandbox. That matters because enterprise memory, retrieved documents and tool descriptions are model inputs, not security policy. If an agent misreads them or follows malicious instructions, the runtime boundary is meant to limit what can happen.

The broader significance is that agent memory is becoming infrastructure. Vendors are no longer only showing agents that can call tools; they are trying to show how agents can remember, be corrected, remain auditable and operate inside enforceable limits. For enterprise buyers, that may become the difference between an impressive demo and a deployable system.