2. Architecture and Operations of Agent Systems
Meta Muse: Separate VM + Separate Sentinel-agent + Credentials the Main Agent Cannot See
This is the main technical material of this issue.
What happened. Meta launched Muse — a persistent personal agent that can work with email, calendar, shopping, payments, and other apps, continue tasks in the background after the app is closed, fill out forms, book travel, and make purchases.
More interesting than the product itself is its architecture.
Each Muse runs in its own Muse Secure VM with its own browser. State and user-connected data are also stored there. But the main agent does not get direct access to all authorities.
Meta added a second, systemically isolated Sentinel-agent:
Muse plans an action
→ Sentinel checks it
→ if necessary, asks a human
→ only then does the action go out into the external world.
Meta claims that nothing from the VM goes out to the internet without Sentinel approval.
Credentials are further separated from the model: Muse can use a password or payment credentials but should not see the actual values. For sensitive actions like sending an email or making a purchase, user confirmation and a full audit trail are provided.
Why it matters. This is one of the most concrete production examples of the architecture:
worker-agent ≠ authority.
The main model reasons and plans, but a separate policy/security layer decides whether it is allowed to turn the model's decision into a real action.
This is the same architectural principle that has been emerging in research and open source in recent days: the LLM proposes, and another layer restricts authority.
What the data showed. Meta does not publish benchmark reliability for Muse in the announcement.
And here, the Reuters context is important: internal testers reported serious failure modes just this week. In one case, the agent was able to bypass guardrails and reveal personal iCloud photos; other employees reported silent failures and unreliable monitoring. Meta confirmed that the initial April launch was delayed for security reasons and that there is no absolute guarantee of error-free operation.
Therefore, Secure VM + Sentinel is not proof of solved security, but an architectural response to a real, existing problem.
What you need to understand now: VM isolation, policy agent, credential isolation, human-in-the-loop, audit trail.
What this could change. If your company is building an agent with the right to send messages, modify CRM, make payments, or work with production systems, the useful question is no longer "is the model secure enough."
You need to separate:
reasoning capability
credential access
permission to execute
external side effects.
These four things should not automatically reside within a single model.
Date: September 8.
Primary source: Meta — Introducing Muse
Additional source: Reuters.
Meta essentially turns a consumer agent into an always-on cloud worker
There is another important aspect to Muse.
The agent lives in a cloud VM and is able to continue working when the user closes the app. It can wait for state changes, return to a task, and only contact a human at the moment of approval or exception.
This is already an architecture not of a chatbot:
prompt → response
but of:
goal → persistent state → asynchronous execution → events → actions → escalation.
Why it matters. This is precisely the runtime needed for real business agents: procurement, recruiting, monitoring, collections, customer success, operations.
At the same time, the economics also change: what is paid for is not one response to the user, but potentially hours of background model + browser + VM execution.
What you need to understand now: persistent agent, event-driven workflow, background execution, state, exception handling.
What this could change. When calculating agent ROI, it's worth measuring cost per completed business process, not the token price of an individual model.