Skip to content
BeClaude
Research2026-06-30

Always-OnAgents:A Survey of Persistent Memory, State, and Governance in LLMAgents

Originally published byArxiv CS.AI

arXiv:2606.30306v1 Announce Type: cross Abstract: Always-on agents are systems whose future behavior depends on durable state accumulated across earlier interactions. We treat them as persistent-state systems: the operative system includes retrievable memories, but also task ledgers, permissions,...

This paper, “Always-On Agents: A Survey of Persistent Memory, State, and Governance in LLM Agents,” marks a significant shift in how the AI research community is framing the next frontier of large language model (LLM) deployment. Rather than focusing on a single, stateless query-response interaction, the authors formally define a new class of system: the persistent-state agent. This is not merely a chatbot with a longer context window; it is an architecture where future behavior is explicitly and durably shaped by accumulated data from past interactions.

What Happened

The survey categorizes the “state” of an always-on agent into three core components: retrievable memories (facts and experiences), task ledgers (progress on ongoing objectives), and permissions (evolving access controls and governance rules). By treating these as a unified, operative system rather than ad-hoc add-ons, the paper provides a taxonomy for how agents can maintain coherence, autonomy, and safety over indefinite time horizons. It moves the conversation from “can the agent remember?” to “how does the agent’s entire history—including its permissions and unfinished tasks—determine its next action?”

Why It Matters

This is a crucial pivot for the industry. Current LLM applications suffer from a fundamental fragility: they are stateless by default. A user cannot reliably delegate a multi-week research project, a recurring data pipeline, or a personal finance assistant to a system that forgets its context after each turn. The “always-on” paradigm directly addresses the gap between a useful demo and a reliable tool.

For AI safety and governance, this paper is equally important. A persistent-state agent introduces novel attack surfaces. An adversary could poison the agent’s memory, manipulate its task ledger to cause priority inversion, or exploit accumulated permissions to escalate privileges. The survey’s focus on governance—explicitly including permissions as part of the state—is a tacit acknowledgment that the security model for these systems must be as durable as the memory itself. Without this, an agent that “remembers” everything is also an agent that can be permanently corrupted.

Implications for AI Practitioners

First, architectural design must prioritize state management. Practitioners should stop treating memory as a simple vector database lookup. The paper implies a need for structured state: a relational database for task progress, a permission matrix for access control, and a separate memory store for episodic facts. Mixing these into a single vector store invites both performance and security issues.

Second, governance is a first-class engineering requirement. Developers of always-on agents must implement audit trails, state rollback mechanisms, and permission revocation protocols from day one. The ability to “factory reset” an agent’s state or quarantine a corrupted memory segment will be as critical as the agent’s reasoning capabilities.

Third, evaluation metrics must change. A single-turn accuracy score is meaningless for an always-on agent. Practitioners will need to benchmark state consistency, permission integrity, and the agent’s ability to recover from corrupted state over long sequences of interactions.

Key Takeaways

  • Always-on agents are defined by durable state, not just long context windows. This state includes memories, task progress, and permissions.
  • Security and governance are inseparable from functionality. A persistent-state agent requires robust state rollback, audit trails, and permission management to prevent permanent corruption.
  • Architectures must separate state concerns. Mixing episodic memory, task ledgers, and permissions into a single store creates fragility and security risks.
  • Evaluation shifts from single-turn accuracy to long-term consistency. Practitioners must benchmark state integrity and recovery capabilities over extended, multi-session interactions.
arxivpapersagents