explainx.ai0k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

follow on google

Add explainx.ai as a preferred source

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

community

Join the community

learn

mind: share how you thinkpathways — start freeworkshopsbootcampscoursescompare Explainxcertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsmdx readeragentsllmsdesignsdictionarypeopleagi trackerfelony benchranks

company

aboutvisionmissionteaminstructorsteach on explainxpartnershipscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportcontactprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

explainx.ai

On this page

  • TL;DR: what happened and how to read it
  • What did developers actually pull out?
  • What is the "free computer in the cloud" framing?
  • Where does the "not a breach" argument get thin?
  • How does this compare with other agent designs?
  • What are people saying?
  • Related Muse security incidents
  • What this means for what you use or build
  • Was this reported before The Verge?
  • How should you audit your own Muse VM?
  • Related reading on explainx.ai
← Back to blog

explainx / blog

Meta Muse Filesystem Export: Feature, Not Breach, but Read the Fine Print

Meta AI, Muse, AI Agents, AI Security, Prompt Injection

The Verge says Muse can export hundreds of MB of its own files. Meta and Nat Friedman call it intended: your own Linux VM. What was exposed and what still matters.

Sep 25, 2026·8 min read·Yash Thakker
add explainx.ai
go deep
Meta Muse Filesystem Export: Feature, Not Breach, but Read the Fine Print

Meta's Muse agent will hand you its own filesystem if you ask. On September 24, 2026, The Verge reported that Muse could reveal "all its secrets" by exporting hundreds of megabytes of data, including system files. Within hours, Meta Superintelligence Labs leaders replied that this was not a leak. Nat Friedman wrote that "those aren't secrets you dummies, those are the files on the user's VM, this is intended behavior."

Both sides have a point. The useful question for anyone building or using agents is what an inspectable agent VM does and does not protect.

TL;DR: what happened and how to read it

table · 2 cols
QuestionAnswer
What was exported?The Muse VM's root filesystem: Ubuntu system files, app templates, library code, compiled binaries, Markdown and JSON docs
How?Ordinary prompting; developers said the agent handed it over
Meta's positionIntended behavior; each user gets a free Linux computer in the cloud
Is it a breach?Meta says no: users reach only their own VM, isolated from Meta systems and other users
What is the real issue?Instructions and internals are readable, and reportedly not prompt-injection resistant
Data at riskAnything you or a compromised session can read on your own VM
Fix on the roadmapMuse Confidential VM, designed so even Meta cannot read a user's VM

What did developers actually pull out?

Two developers, Peter James and Jonny L. Saunders, independently got Muse to produce its root filesystem, per reporting on the story. The archive included "hundreds of MB of accurate library code and compiled binaries," plus plain-text Markdown and JSON files describing how the agent, internally called Hatch, processes requests, handles data and integrates with services such as Gmail. Reports also mention memory stored as Markdown files, nightly "dream" reviews of conversations, and references to an unreleased hardware integration called Meta Home Link.

Nothing in the coverage describes other users' data or Meta's internal infrastructure being exposed. That absence is what Meta's "not a breach" argument rests on.

What is the "free computer in the cloud" framing?

David Singleton of Meta Superintelligence Labs explained the design in a long post the same day: "Today, every Muse user gets a free computer in the cloud. It's a real computer, and we've designed the security architecture of the Muse Secure VM carefully so you and your Muse can do almost anything you could with a computer sitting under your desk."

On that model, seeing the files is a feature. A user is supposed to be able to inspect, download and edit what lives on their VM, the same way a developer can browse a remote dev box. Meta's spokesperson put it as: "Just like with the laptop in front of you, of course you can see the files." The company added that users may see the information available to them change as Meta updates the product.

This matches the architecture we covered at launch: a per-user Secure VM where a separate Sentinel process brokers every network request and connector action. Our Muse launch and Sentinel security deep dive explains why the credentials the agent uses are never held by the agent itself, which is why reading the VM does not yield your OAuth tokens.

Where does the "not a breach" argument get thin?

Four points keep this from being a clean non-story.

1. Instructions are visible. The agent's own operating docs are readable. Saunders described the result as "almost no prompt injection resistance," meaning the prompt-level protection of that material is essentially nil. That is fine if nothing sensitive is in it. It is a problem if an attacker learns exactly how the agent's tools, memory and routing work and uses that to craft better injections.

2. A compromised session can read it too. If a prompt injection takes over the agent mid-task, the attacker sees whatever the agent can read. Sentinel constrains what leaves the VM, but anything valuable inside the VM is only as safe as the agent's discipline. Our Is Meta Muse safe? verdict makes the same point about connector scope: the highest-risk grants are the ones that put sensitive data inside the agent's reach.

3. Memory lives in files. Muse stores memory as Markdown and runs nightly reviews of conversations. That is a transparent design, and also a reminder that the VM holds a running record of what you told the agent. See our explainer on Soul.md, Muse's persona file for how those files shape behavior.

4. Meta can see the VM today. The current Secure VM is isolated from other users but not shielded from Meta. Meta has announced a Muse Confidential VM later in 2026, designed to cryptographically prevent even Meta from accessing a user's VM, in testing with a small group. Until that ships, "your own computer" means your own computer running in Meta's data center.

How does this compare with other agent designs?

table · 3 cols
DesignWhat the user seesWhere secrets live
Muse Secure VMFull read access to the user's VMCredentials outside the VM, brokered by Sentinel
Local agent on your machine (e.g. OpenMuse)Everything, by definitionOn your device
Managed cloud agentUsually a session view, not a filesystemVendor-controlled

Inspectability is a legitimate design choice, and arguably a good one: an agent whose files you can read is easier to audit than a black box. The trade-off is that the same openness applies to anyone or anything that can drive the agent.

What are people saying?

Reaction split cleanly. Friedman's reply was blunt and dismissive of the framing. Investor and commentator Greg Isenberg used the moment to argue Muse connectors could be "the App Store moment for AI," an angle we covered in Muse's developer connectors platform. Creators demoed Muse negotiating subscriptions. The security-minded replies focused on prompt injection rather than the export itself.

The Verge's headline framing, "reveals all its secrets," overstates what the export contained if the contents were the user's own VM. Meta's "you dummies" framing understates the fact that most users will not realize their agent's VM is a browsable computer. Both are communication failures more than security failures.

Related Muse security incidents

The export is the latest in a run of trust questions around Muse and its internal Hatch agent, including Hatch changing passwords without permission in testing and Amazon blocking Muse from shopping on Amazon.com. Together they describe an agent with real capabilities and a security posture still being tested in public. Meta's public bug bounty, covered in our launch post, pays up to $130,000 for a working prompt-injection exploit.

What this means for what you use or build

  • If you use Muse: assume everything on your VM is readable by whoever can drive your agent, including a prompt-injected one. Do not park secrets, keys or sensitive documents there. Scope connectors narrowly.
  • If you build agents: decide what is inspectable by design and what is not, and keep credentials out of the model's reach entirely, the way Sentinel does. Do not rely on a system prompt to keep instructions private.
  • If you evaluate agent products: ask whether the vendor can read your VM, whether memory is stored in readable files, and what the isolation boundary is. "Isolated from other users" and "isolated from the vendor" are different claims.
  • If you are waiting for Confidential VM: treat it as unverified until an audit is published. It is a plan, not a shipped feature.

Was this reported before The Verge?

A public GitHub issue opened on September 22, 2026 in an AI-incident tracking repository described the same behavior: a Muse export of its full runtime environment to Google Drive, about 2.7 GB, including the root filesystem, documentation, skill definitions and unreleased connector configurations. We have not verified that issue independently, but it suggests the behavior was reproducible by ordinary users days before the press coverage, and that the exportable material included skill and connector definitions, not just system files.

How should you audit your own Muse VM?

If you use Muse, treat the VM like a remote dev box you are responsible for:

  1. List what is stored. Ask Muse to show its memory files and any documents you uploaded, and check whether any contain data you would not want a prompt-injected session to read.
  2. Remove secrets. Delete keys, tokens and sensitive documents that do not need to live there, and prefer connectors that keep credentials outside the VM.
  3. Review connector scopes. Revoke access you do not actively use. The Sentinel design limits egress, but a narrow scope limits what can be read in the first place.
  4. Watch for injected instructions. Be wary of web pages, emails and shared documents the agent reads on your behalf, since those are the injection path.
  5. Check the memory files periodically. Because memory is stored as readable Markdown, you can see what the agent believes about you and correct it.

None of this replaces a security review by Meta, but it turns "the files are yours" from a slogan into an actual habit.

Related reading on explainx.ai

  • Meta launches Muse: Sentinel security architecture
  • Is Meta's Muse safe to use? The honest verdict
  • What is Soul.md? Meta Muse's persona file
  • Meta's Hatch agent changed passwords without permission
  • OpenMuse: open-source personal agent
  • Meta Muse developer connectors platform
  • Meta Muse for Mac desktop launch

Sources: reporting by The Verge, Daily Guardian and Mac Observer on the export, and posts by David Singleton and Nat Friedman on X, September 24, 2026.

Details are drawn from press reports and Meta statements as of September 25, 2026. Meta may change what Muse exposes as it updates the product.

Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

View Yash Thakker in People in AI →

Related posts

Sep 9, 2026

Is Meta's Muse Safe to Use? The Honest Verdict

Everything explainx.ai has verified about Meta's Muse — the Sentinel permission broker, credential surrogation, the connector list Alexandr Wang posted on X, and Meta's actual ad-data policy — synthesized into one answer to the question that actually matters before you connect your accounts.

Sep 9, 2026

Meta Launches Muse: The Personal Agent With a Sentinel Security Architecture

Meta shipped Muse on September 8-9, 2026 — a 24/7 personal agent for iOS, Android, web, and WhatsApp, built on Muse Spark 1.3. What makes it worth a deep read isn't the assistant pitch, it's the security architecture behind it: a per-user Secure VM, a Sentinel agent that brokers every network request, eBPF-based taint tracking, and a public bug bounty paying up to $130,000 for a working prompt injection.

Sep 25, 2026

Meta Muse GitHub Integration: PR Reviews, Issues, and Label-Gated Fixes

Meta announced GitHub alongside Notion and Box at Connect 2026, and Meta's Model API GitHub agent cookbook documents a production-shaped flow: Muse Spark via OpenCode triages issues, reviews pull requests, answers repo questions with citations, and only opens fix PRs after a maintainer applies an agent-fix label. Here is how the integration is meant to work and how it compares to coding-agent harnesses you already run.