An AI operating system is a software layer that takes a goal in plain language, decides which tools and data it needs, and carries out the work across your applications — instead of waiting for you to click through those applications yourself. It has a reasoning model where a traditional OS has a kernel, a context window where a traditional OS has RAM, and a tool-calling protocol where a traditional OS has system calls.
The 2024 version of this article called that arrangement theoretical. It is not theoretical in 2026. Microsoft built agent accounts and isolated agent workspaces into Windows, currently as experimental features in the Insider and Release Preview channels that are off by default, OpenAI put cloud agents that act inside enterprise SaaS into research preview, Google launched a persistent personal agent running on its own cloud machine, Anthropic's Model Context Protocol became the de facto tool-calling standard under neutral foundation governance, and Apple is rebuilding Siri on a system-wide intent and on-device model layer arriving with iOS 27. The AI OS is not one product from one vendor. It is a stack, and most of that stack now exists in shipping or preview form.
This piece is for CTOs, platform leads, and product owners deciding what to build on and what to wait out. You get a working definition, a six-layer map of the stack, a straight comparison of what the five major vendors actually ship today, and an honest account of where AI OS thinking still breaks — because it does, in ways that matter.
The short version
- An AI OS is not a replacement for Windows, macOS, or Linux. It is a control layer above a conventional OS that turns natural-language goals into actions across tools, data, and other agents.
- The Model Context Protocol is the closest thing to a system-call layer for AI. Anthropic contributed it to the Linux Foundation's Agentic AI Foundation on December 9, 2025, alongside Block's goose and OpenAI's AGENTS.md, with more than 10,000 published MCP servers at announcement.
- Microsoft went furthest at the OS level: at Build 2026 it shipped Windows Development Skills to general availability, previewed Microsoft Execution Containers for sandboxed agent code execution, and set out Aion 1.0, an on-device model family it plans to ship in-box on capable Windows devices — the 14-billion-parameter, 32K-context variant is Aion 1.0 Plan, a stated roadmap item rather than something you can use today.
- The security layer is weaker than the model layer. Prompt injection has no reliable fix: per Simon Willison's "lethal trifecta," any agent combining private data, untrusted content, and outbound communication can be made to leak, and "we still don't know how to 100% reliably prevent this."
- The business case is unproven at scale. Gartner forecasts over 40% of agentic AI projects will be canceled by the end of 2027 on cost, unclear value, and inadequate risk controls, and estimates only about 130 of thousands of self-described agentic vendors are genuine.
- Karpathy's 2023 "LLM OS" sketch got the analogy right and the architecture wrong. The kernel was never the model — it is the orchestration and permission layer wrapped around it.
What is an AI operating system?
An AI operating system is a coordination layer that accepts an objective, plans a sequence of steps, calls tools and data sources to execute those steps, keeps state across the whole run, and reports back — with a human approving the consequential actions.
Compare that to what a conventional operating system does. A traditional OS manages hardware resources and gives applications a stable interface to them: memory, storage, processes, devices, permissions. An AI OS manages a different scarce resource — model attention and context — and gives goals a stable interface to software. The unit of work changes from "run this program" to "achieve this outcome."
Three properties separate a real AI OS from a chatbot with plugins:
- Goal-level input. You state an outcome, not a command sequence. The system decomposes it.
- Durable state. It remembers across steps, sessions, and sometimes days. Google's Gemini Spark, announced at I/O 2026, runs continuously on a dedicated cloud machine rather than only inside a chat turn.
- Real actuation with real accountability. It changes systems of record, and those changes are attributable to an identity that can be audited and revoked.
That third property is what moved between 2024 and 2026. Chat interfaces could already talk. What arrived was the plumbing that lets them act with an identity, a permission boundary, and a log.
How does an AI OS differ from a traditional operating system?
The short answer: a traditional OS is deterministic and schedules processes, while an AI OS is probabilistic and schedules intentions. That difference cascades into everything from debugging to procurement.
| Traditional OS | AI operating system | |
|---|---|---|
| Core unit of work | Process or thread | Task or goal, decomposed by a model |
| "Kernel" | Deterministic kernel scheduling CPU time | Orchestration layer routing steps between models, tools, and sub-agents |
| Working memory | RAM, explicitly allocated | Context window plus retrieval and persistent memory, managed heuristically |
| Interface to capability | System calls and device drivers | Tool-calling protocols — MCP, platform intents, vendor connectors |
| Input | Clicks, keystrokes, commands, API calls | Natural language, voice, screen content, events |
| Failure mode | Crash, error code, stack trace | Plausible wrong answer, silent partial completion, unsafe action |
| Determinism | Same input, same output | Same input, variable output |
| Security boundary | User and process permissions | Agent identity, scoped consent, sandboxing — newer and less battle-tested |
| Maturity in 2026 | 50+ years hardened | Roughly 2 years old at the platform layer |
The failure-mode row is the one that should shape your engineering. A traditional OS fails loudly. An AI OS fails convincingly. A process that segfaults tells you it segfaulted; an agent that misreads a spreadsheet column produces a clean, confident, wrong report. That is why observability and evaluation are not optional extras in this stack — they are the equivalent of a crash reporter.
How is that different from an "AI-powered" operating system?
An AI-powered OS is a conventional OS with AI features bolted on: semantic search, dictation, generative photo editing, code completion. The intelligence assists you inside a workflow you still drive.
An AI OS inverts that — the model drives and you supervise. Most shipping products in 2026 are hybrids: Windows 11 and iOS 27 are AI-powered operating systems that have grown genuine AI-OS layers inside them, with agent accounts and system-wide intent schemas respectively. The distinction matters when you are buying, because "AI-powered" gets marketed as "agentic" constantly.
The correction: an AI OS is no longer theoretical
The 2024 edition of this article said "this exact AI OS doesn't exist just yet" and listed the examples column of its comparison table as "theoretical only." That was a fair reading in June 2024. It is wrong now, and the specific things that made it wrong are datable.
Between late 2025 and mid-2026, every layer of the stack got a shipping implementation from at least one major vendor. Anthropic's MCP moved to neutral governance under the Linux Foundation's Agentic AI Foundation on December 9, 2025, with AWS, Anthropic, Block, Bloomberg, Cloudflare, Google, Microsoft, and OpenAI as platinum members — the tool layer stopped being one company's protocol. Microsoft announced Agent 365 as a "control plane for AI agents" on November 18, 2025, and took it to general availability on May 1, 2026. Separately, Entra Agent ID — in preview from Build 2025 — reached general availability in April 2026, giving agents first-class identities with conditional access, risk detection, and audit logs. OpenAI moved from developer tooling to operating work: AgentKit landed October 6, 2025, and workspace agents entered research preview on April 22, 2026.
The AI OS shipped. What did not ship is a permission model anyone fully trusts.
That is the honest state of things, and it is a more useful frame than either "still theoretical" or "already here." The capability layer is real and improving fast. The control layer is real and roughly two years old.
The six layers of an AI OS stack
The six layers of an AI OS stack
Reads as a stack: governance on top, silicon at the bottom. Open any layer for what it is, what it replaces in a traditional OS, what actually ships in 2026, and the question to ask a vendor about it.
Layer 6Identity, permissions, and governanceTraditional OS analogue: user accounts, permissions, and the audit log+
Who the agent is, what it may touch, what it did, and how you stop it. The newest layer in the stack and the one most likely to look different in twelve months.
Shipping in 2026- Microsoft Entra Agent ID, generally available April 2026 — the most complete implementation shipping today, with agent identity blueprints, conditional access, and audit logging
- Microsoft Agent 365 control plane, generally available May 1, 2026
- Windows agent accounts and the contained agent workspace, still an experimental Insider and Release Preview feature, off by default until an administrator enables it
Ask: before an agent touches production, can you answer who it is, what it may touch, and how you stop it?
Layer 5Orchestration and schedulingTraditional OS analogue: the process scheduler+
Planning, sub-agent delegation, retries, long-running and parallel work. This is the layer fragmenting rather than consolidating, because every vendor is shipping its own orchestrator.
Shipping in 2026- Google Antigravity 2.0, orchestrating multiple agents in parallel from a desktop app
- OpenAI Agents SDK — note that the visual-canvas Agent Builder and the Evals product are being wound down and will be unavailable after November 30, 2026
- Anthropic Agent Skills, packaging instructions and executable code into folders that load only when relevant
Ask: if this vendor retires its orchestrator, as one of them already is, do your workflows move or do you rebuild them?
Layer 4Tools and actionsTraditional OS analogue: system calls and device drivers+
How the model reaches the outside world. The closest thing in this stack to a genuine standard, and the layer that matured most visibly in 2026.
Shipping in 2026- MCP, dominant for cross-vendor integration, under Linux Foundation governance since December 9, 2025
- Apple App Intents, the main platform-native alternative — entity and intent schemas that contribute app content to Spotlight's semantic index, plus a View Annotations API letting Siri act on on-screen content
Ask: when this protocol makes a breaking change, and the July 2026 release retired the session handshake outright, how many places in your codebase have to change?
Layer 3Context and memoryTraditional OS analogue: RAM, the page cache, and the file system+
The context window, retrieval, and durable memory. This is where most projects actually fail, because it is where your organization's messy data meets a model with a finite attention budget. Retrieval quality is the ceiling on agent quality.
Shipping in 2026- Retrieval-augmented generation, the standard technique for raising retrieval quality
- Persistent memory in the platform agents, including Google's Gemini Spark running continuously on a dedicated cloud machine
- Apple's on-device context surfaces, with App Intents feeding Spotlight's semantic index
Ask: is your data good enough, and permissioned finely enough, that retrieval will not be the ceiling on quality?
Layer 2ModelsTraditional OS analogue: the CPU, in the loose sense Karpathy meant+
The reasoning core, and notably plural: production stacks in 2026 mix a frontier model for planning with small local models for cheap, private, latency-sensitive steps.
Shipping in 2026- Apple's Foundation Models framework, which at WWDC 2026 gained server-side integration letting developers call third-party models like Claude and Gemini through the same Swift API
- Google Gemini 3.5 Flash, generally available May 19, 2026
- Microsoft Aion 1.0 Instruct in Edge Insider preview, with the 14B, 32K-context Aion 1.0 Plan variant on the roadmap for in-box Windows rather than available today
Ask: which steps genuinely need a frontier model, and which cheap local ones are you currently overpaying for?
Layer 1Compute and siliconTraditional OS analogue: the hardware and its drivers+
Datacenter accelerators for frontier inference, NPUs for on-device work. The only layer with a mature supply chain and a mature cost model.
Shipping in 2026- NPUs across capable Windows hardware
- Apple's on-device Foundation Models framework, with free Private Cloud Compute access for smaller developers
- NVIDIA Jetson AGX Thor for on-robot inference, available since August 2025 — with the Jetson T3000 and T2000 modules introduced in July 2026 scheduled for Q1 2027
Ask: what share of this workload can run on hardware you already own, and what does the frontier share cost you per task?
Availability as of August 2026. Vendor status at this layer changes fast; the article's vendor table carries the dated detail.
Layer 1 — Compute and silicon. Datacenter accelerators for frontier inference, NPUs for on-device work. The only layer with a mature supply chain and a mature cost model. The clearest sign that a meaningful share of agent work is heading local is what has already shipped on the device: NPUs across capable Windows hardware, and Apple's on-device Foundation Models framework with free Private Cloud Compute access for smaller developers. Microsoft's stated plan to put an Aion 1.0 model in-box on Windows points the same way, but it is a roadmap commitment rather than something running on your machine today.
Layer 2 — Models. The reasoning core, and notably plural: production stacks in 2026 mix a frontier model for planning with small local models for cheap, private, latency-sensitive steps. Apple made this explicit at WWDC 2026, where its Foundation Models framework gained server-side integration letting developers call third-party models like Claude and Gemini through the same Swift API. If you are weighing hosted against self-managed here, our guide on how to deploy an LLM walks the tradeoffs.
Layer 3 — Context and memory. The context window, retrieval, and durable memory. This is where most projects actually fail, because it is where your organization's messy data meets a model with a finite attention budget. Retrieval quality is the ceiling on agent quality; retrieval-augmented generation is the standard technique for raising it, and the reason a data readiness and governance assessment usually pays for itself before any agent work starts.
Layer 4 — Tools and actions (the syscall layer). How the model reaches the outside world. MCP dominates cross-vendor integration; the main platform-native alternative is Apple's App Intents, which at WWDC 2026 gained entity and intent schemas that contribute app content to Spotlight's semantic index, plus a View Annotations API letting Siri act on on-screen content.
Layer 5 — Orchestration and scheduling. Planning, sub-agent delegation, retries, long-running and parallel work. Google's Antigravity 2.0 orchestrates multiple agents in parallel from a desktop app; OpenAI does it in code with the Agents SDK, having announced on June 3, 2026 that its visual-canvas Agent Builder and its Evals product are being wound down and will be unavailable after November 30, 2026; Anthropic's Agent Skills package instructions and executable code into folders that load only when relevant. The patterns are still consolidating, which we cover in orchestrating AI agents in production.
Layer 6 — Identity, permissions, and governance. Who the agent is, what it may touch, what it did, and how you stop it. Microsoft Entra Agent ID is the most complete implementation shipping today, supporting OAuth 2.0, MCP, and A2A with agent identity blueprints, conditional access, and audit logging. On the client side, Windows gives agents distinct standard accounts and a contained "agent workspace" with its own desktop, limiting what the agent sees of the user's session — though that client-side half is still an experimental Insider and Release Preview feature, off by default until an administrator enables it.
Where the layer boundaries are still moving
Do not over-invest in the seams. Layers 3 and 4 are merging — Agent Skills and MCP servers overlap, and the industry has not settled which owns "give the model a capability." Layer 5 is fragmenting rather than consolidating, with every vendor shipping its own orchestrator. Layer 6 is the newest and most likely to look different in twelve months.
Key Components of an AI Operating System: What Will Make Them Work
The six layers are a map of the industry. This is the shorter list of parts you have to make work yourself — the list worth taking into a vendor call.
Component inventories written in 2024 named neural networks and natural language processing as separate line items. In 2026 those are the commodity substrate under every option on your shortlist, not things you evaluate. What varies between vendors is the plumbing around the model. Five components, and the question that tests each one:
A model router, not a model. Every serious stack in 2026 runs more than one model: a frontier model for planning, cheaper or local models for the high-volume steps. What you are buying or building is the routing and fallback logic between them. Ask: when the primary model is rate-limited, deprecated, or beaten next quarter, is that a config change or a rewrite?
A context supply chain. Retrieval, permission-aware filtering, and durable memory feeding a finite attention budget. This is where deployments actually die. The top three blockers in Anthropic and Material's 2026 State of AI Agents Report — integration with existing systems (46%), implementation cost (43%), and data access and quality (42%) — are all this component. Ask: can the agent see exactly what this user is cleared to see, and can you demonstrate it?
A tool interface you own. MCP is the standard, with more than 10,000 servers published by the time Anthropic contributed it to the Linux Foundation's Agentic AI Foundation. Standard does not mean settled: the 2026-07-28 release retired the session handshake outright. Ask: is your MCP usage behind an interface you control, so a spec change costs a day rather than a quarter?
An identity per agent. Not a shared service account. Microsoft Entra Agent ID reached general availability in April 2026 and is the most complete implementation today. The failure modes are catalogued now: OWASP's Top 10 for Agentic Applications, published December 2025, names agent behavior hijacking, tool misuse, and identity and privilege abuse among the leading risks. Ask: can you attribute one action to one agent, and revoke that agent in one place?
An evaluation harness you own outright. Traces, a regression suite, a human review queue. Own it, because vendor tooling churns — OpenAI is winding down its Evals product, unavailable after November 30, 2026. METR reports 50% and 80% task-completion horizons separately; the gap between those numbers is the gap between demo and production. Ask: who runs the regression suite before a model swap?
Four of those five are unglamorous, and none of them are the model. That is the point: what decides whether an AI OS works for you is the part no vendor puts in a keynote.
If you are trying to work out which of these six layers you should own and which you should rent, that is exactly the conversation our agentic AI and automation team has with clients every week.
What replaced Karpathy's LLM OS framing
Andrej Karpathy's LLM-OS sketch, first floated in a 2023 talk and expanded in his June 2025 "Software Is Changing (Again)" talk at Y Combinator's AI Startup School, is the reason most people have this mental model at all. The model was the CPU. The context window was RAM. Tools were peripherals. It was a genuinely clarifying analogy, and this article's 2024 edition leaned on it heavily.
Two parts held up. The context-window-as-RAM framing is still the most useful thing to tell an engineer new to this work, because it makes context budgeting feel like the resource-management problem it is. And the idea that we are programming a new kind of computer, in English, remains correct.
One part did not: the model is not the kernel. A kernel arbitrates, enforces, and is trusted. A model is none of those — it is manipulable by its own inputs, non-deterministic, and specifically the component you cannot trust with authorization decisions. What became the kernel is the deterministic scaffolding around the model: the orchestrator deciding which step runs next, and the permission layer deciding whether it may. Microsoft's four stated principles for agents on Windows — distinct agent accounts, limited agentic privileges, operational trust through agents signed by a trusted source, and privacy-preserving design — are kernel principles, and none live inside the model.
The practical consequence: architect so the model is the least-trusted component in your system, not the most. That is close to the opposite of what the 2023 diagram implied.
MCP and the syscall layer: how agents reach your systems
MCP is the piece of this stack that most resembles a genuine standard, and it matured visibly in 2026. The 2026-07-28 specification release made the protocol stateless — retiring the initialize/initialized handshake and session identifiers so requests can land on any server instance behind a load balancer without shared storage. It added Multi Round-Trip Requests for mid-call confirmations, header-based routing via Mcp-Method and Mcp-Name so gateways can route without parsing JSON bodies, cacheable list results, authorization hardening including RFC 9207 issuer validation, and — the detail that matters most for a two-year roadmap — a formal deprecation policy with a twelve-month minimum window.
Read that as an infrastructure story rather than an AI story. Stateless cores, gateway routing, cache headers, and deprecation policies are what protocols acquire when serious operators put production load on them.
MCP is not the only protocol at this layer, and the division of labor is reasonably settled:
| Standard | Owner / governance | What it handles |
|---|---|---|
| MCP | Anthropic, now Agentic AI Foundation (Linux Foundation) | Connecting a model to tools, data, and applications — the syscall analogue |
| A2A (Agent2Agent) | Google, donated to the Linux Foundation June 23, 2025; v1.0 released March 2026 | Coordination between separate autonomous agents, across frameworks including ADK, LangGraph, AG2, and CrewAI |
| AGENTS.md | OpenAI, contributed to AAIF | Project-level instructions for coding agents; adopted by 60,000+ open source projects |
| App Intents | Apple, platform-specific | Exposing app entities and actions to Siri and Spotlight on Apple platforms |
Google's own framing is that "MCP manages internal tool integration, A2A handles the vital external coordination between autonomous entities." A2A passed 100 supporting technology companies within its first year.
For teams whose integration surface is mostly SaaS rather than bespoke systems, a workflow automation platform is often a faster on-ramp to this layer than writing MCP servers — our n8n guide covers where that tradeoff lands.
What each vendor actually ships today
What each vendor ships, by layer
All five are shown by default. Select one vendor to focus, or two to compare them side by side. Ships means generally available; partial means preview, experimental, or roadmap; relies on others means the vendor depends on someone else at that layer.
Microsoft
Strongest layer: identity and governance (6)
- 1. Compute and siliconShips
- 2. ModelsPartial
- 3. Context and memoryShips
- 4. Tools and actionsShips
- 5. OrchestrationShips
- 6. Identity and governanceShips
Windows agent accounts and agent workspace (experimental, Insider and Release Preview, off by default); Microsoft Execution Containers in early preview for sandboxed execution on Windows, WSL, and macOS; Windows 365 for Agents; Windows Development Skills GA; Aion 1.0 Instruct in Edge Insider preview, with the 14B, 32K-context Aion 1.0 Plan variant on the roadmap for in-box Windows; Entra Agent ID GA April 2026; Agent 365 control plane GA May 1, 2026.
Weakest spot: complexity and licensing — extending Entra security to agents requires an Agent 365 licence.
Best fit when your binding constraint is governance: you need agent identity, conditional access, and an audit trail before anything touches production.
OpenAI
Strongest layer: orchestration and applied work (5)
- 1. Compute and siliconRelies on others
- 2. ModelsShips
- 3. Context and memoryShips
- 4. Tools and actionsShips
- 5. OrchestrationShips
- 6. Identity and governanceRelies on others
AgentKit — ChatKit (GA), Connector Registry (beta), Guardrails, Agents SDK; Agent Builder and Evals are being wound down and unavailable after November 30, 2026; workspace agents in research preview across Business, Enterprise, Edu.
Weakest spot: no OS of its own; depends on other vendors' identity and device layers — and its own product churn, with Agent Builder and Evals retiring in 2026.
Best fit when the work is agentic workflows inside SaaS you already run, and you are prepared to own the evaluation harness yourself.
Anthropic
Strongest layer: tools and actions (4)
- 1. Compute and siliconRelies on others
- 2. ModelsShips
- 3. Context and memoryShips
- 4. Tools and actionsShips
- 5. OrchestrationShips
- 6. Identity and governanceRelies on others
MCP, now under Linux Foundation governance; Agent Skills as portable SKILL.md folders with progressive disclosure; Claude Agent SDK; /v1/skills API endpoint.
Weakest spot: no consumer OS surface, no first-party device layer.
Best fit when the integration surface is the hard part and you want the least lock-in-prone way to wire agents into your own systems.
Strongest layers: models and long-running agents (2, 5)
- 1. Compute and siliconShips
- 2. ModelsShips
- 3. Context and memoryShips
- 4. Tools and actionsShips
- 5. OrchestrationShips
- 6. Identity and governancePartial
Gemini 3.5 Flash GA May 19, 2026 (83.6% on MCP Atlas, which tests multi-step tool calling, ahead of GPT-5.5 at 75.3%; 76.2% on Terminal-Bench 2.1, which tests agentic work in a terminal, second to GPT-5.5 at 78.2%); Gemini Spark 24/7 personal agent in beta for AI Ultra in the US; Managed Agents provisioning remote Linux environments via the Gemini API; Antigravity 2.0.
Weakest spot: product churn — the legacy Gemini CLI was deprecated June 18, 2026.
Best fit when the work is long-running and multi-step, and you want persistent agents rather than agents that live inside a chat turn.
Apple
Strongest layers: context and on-device privacy (2, 3)
- 1. Compute and siliconShips
- 2. ModelsShips
- 3. Context and memoryShips
- 4. Tools and actionsShips
- 5. OrchestrationPartial
- 6. Identity and governancePartial
Foundation Models framework with free Private Cloud Compute access for developers under 2M first-time downloads, image input, and server-side calls to third-party models; new Core AI framework for custom on-device models; App Intents entity and intent schemas feeding Spotlight's semantic index; View Annotations API.
Weakest spot: least shipped of the five — iOS 27 is in beta with public release expected around September 14, 2026, and the new Siri is initially gated behind a developer waitlist.
Best fit when the workload has to stay on the device for privacy or latency reasons, and your surface is an Apple-platform app.
Availability as of August 2026, per the sources listed at the end of this article. This layer moves faster than any other part of the stack; check the current status before making a commitment on it.
| Vendor | Strongest layer | What actually ships (mid-2026) | Weakest spot |
|---|---|---|---|
| Microsoft | Identity and governance (6) | Windows agent accounts and agent workspace (experimental, Insider and Release Preview, off by default); Microsoft Execution Containers in early preview for sandboxed execution on Windows, WSL, and macOS; Windows 365 for Agents; Windows Development Skills GA; Aion 1.0 Instruct in Edge Insider preview, with the 14B, 32K-context Aion 1.0 Plan variant on the roadmap for in-box Windows; Entra Agent ID GA April 2026; Agent 365 control plane GA May 1, 2026 | Complexity and licensing — extending Entra security to agents requires an Agent 365 licence |
| OpenAI | Orchestration and applied work (5) | AgentKit — ChatKit (GA), Connector Registry (beta), Guardrails, Agents SDK; Agent Builder and Evals are being wound down and unavailable after November 30, 2026; workspace agents in research preview across Business, Enterprise, Edu | No OS of its own; depends on other vendors' identity and device layers — and its own product churn, with Agent Builder and Evals retiring in 2026 |
| Anthropic | Tools and actions (4) | MCP, now under Linux Foundation governance; Agent Skills as portable SKILL.md folders with progressive disclosure; Claude Agent SDK; /v1/skills API endpoint | No consumer OS surface, no first-party device layer |
| Models and long-running agents (2, 5) | Gemini 3.5 Flash GA May 19, 2026 (83.6% on MCP Atlas, which tests multi-step tool calling, ahead of GPT-5.5 at 75.3%; 76.2% on Terminal-Bench 2.1, which tests agentic work in a terminal, second to GPT-5.5 at 78.2%); Gemini Spark 24/7 personal agent in beta for AI Ultra in the US; Managed Agents provisioning remote Linux environments via the Gemini API; Antigravity 2.0 | Product churn — the legacy Gemini CLI was deprecated June 18, 2026 | |
| Apple | Context and on-device privacy (2, 3) | Foundation Models framework with free Private Cloud Compute access for developers under 2M first-time downloads, image input, and server-side calls to third-party models; new Core AI framework for custom on-device models; App Intents entity and intent schemas feeding Spotlight's semantic index; View Annotations API | Least shipped of the five — iOS 27 is in beta with public release expected around September 14, 2026, and the new Siri is initially gated behind a developer waitlist |
Two things to take from that table. First, no vendor covers all six layers well, so every real architecture in 2026 is a composite. Second, the most differentiated layer is not the model — it is identity and governance, where Microsoft is meaningfully ahead and where the buying decision is stickiest.
The Role of AI OS in Connectivity and the Internet of Things (IoT)
The obvious extension of an AI OS is the physical world: state a goal, and let the system act across the devices, sensors, and machines you already own. Very little of that is shipping in 2026. This is the part of a vendor pitch to read slowly.
What is genuinely real is that inference moved onto the device. NVIDIA's Jetson AGX Thor developer kit has been available since August 2025 at $3,499 and runs generative and vision-language-action models locally on the robot, with Agility Robotics, Amazon Robotics, Boston Dynamics, Caterpillar, and Medtronic named as early adopters. Even there, the hardware is announced ahead of the deployments: the Jetson T3000 and T2000 modules NVIDIA introduced in July 2026 are scheduled to become available in Q1 2027.
The gap is the layer above the silicon. There is no MCP for devices. Matter 1.5, released November 20, 2025, added cameras, closures, soil sensors, TCP transport, and better energy management — useful interoperability work with nothing agentic in it. It describes device types and clusters, not goals, permissions, or tool calls. Consumer assistants sit on top of that gap rather than closing it: Gemini for Home, Google's replacement for Assistant, is still an opt-in early access rollout as of August 2026, covering 19 countries and 10 languages, and its headline April improvement was up to 40% lower latency on commands like turning on a light. That is a better voice interface, not an operating system for the home.
Industry is where the ambition and the budgets are, and it is also mostly future tense. Siemens and NVIDIA said at CES 2026 that they are building an "Industrial AI Operating System," with the first fully AI-driven, adaptive manufacturing site starting in 2026 at Siemens' electronics factory in Erlangen as the blueprint. The agent work Siemens shows today runs against digital twins — in its PepsiCo example, agents simulate, test, and refine changes before anything touches a physical line.
Read that sequencing as the lesson rather than as a limitation to route around. Simulation first, then supervised actuation, then autonomy — because the failure mode this article keeps returning to, a confident wrong action, costs considerably more when it moves something heavy. If a vendor offers you agentic control of physical assets today, ask which of those three they actually mean.
Where AI OS ideas still break down
Prompt injection has no reliable fix
This is the load-bearing limitation, and it is architectural rather than temporary. Willison's "lethal trifecta" names three ingredients — access to private data, exposure to untrusted content, and the ability to communicate externally — and any agent with all three can be induced to exfiltrate. He is "deeply suspicious" of guardrail products that, by his characterisation, advertise catching 95% of attacks, and separately notes that "we still don't know how to 100% reliably prevent this from happening." A guardrail that stops 95% of attacks is not a security posture.
The rule platform vendors have converged on: once an agent ingests untrusted input, constrain it so that input cannot trigger consequential actions. That is what Windows agent workspaces, MXC sandboxes, and human-approval gates exist for. Architect for containment, not detection.
Long-horizon reliability is still short
Agents are far better at ten-minute tasks than ten-hour ones, and the failure is quiet. METR's time-horizon work measures the task length a frontier model completes at a given success rate, reporting 50% and 80% horizons separately — a distinction that matters enormously in production, because the task length a model finishes half the time is not the length you can ship. As of its May 8, 2026 update, METR notes that measurements above 16 hours are unreliable with its current task suite, which is itself a signal about where the honest ceiling of measurement sits.
Models also fail in ways that look like intent rather than error, which we cover in AI model misbehavior.
The economics are unsettled and projects die
Gartner's June 2025 forecast is that more than 40% of agentic AI projects will be canceled by the end of 2027, driven by escalating costs, unclear business value, and inadequate risk controls. In the same release it estimated only about 130 of the thousands of agentic AI vendors are genuine, with the rest rebranding assistants, RPA, and chatbots — "agent washing." Its optimistic figures are forecasts too: 33% of enterprise software applications including agentic AI by 2028, up from under 1% in 2024.
Vendor-sponsored survey data is rosier and should be read that way. Anthropic's 2026 State of AI Agents Report, run with research firm Material across 500+ US technical leaders with fieldwork in late 2025, found 86% of organizations deploying AI coding agents for production code and 80% reporting measurable economic impact — while also finding the top blockers are integration with existing systems (46%), implementation cost (43%), and data access and quality (42%). Those blockers are the honest part of that dataset, and they match what we see in the field.
The standards are young enough to break you
MCP's July 2026 release removed the session handshake outright — technically the right call, and a breaking change to a protocol many teams had already built against. The new twelve-month deprecation policy is reassuring precisely because it was needed. Budget for protocol churn as a line item, not a surprise.
Where a simpler option is genuinely better: if your use case is a bounded, high-volume, well-specified task — classification, extraction, summarization inside one system — you do not want an AI OS. You want a single model call behind a deterministic workflow, with a fraction of the surface area and none of the identity problems. Reach for the agentic stack only when the work genuinely spans systems and cannot be scripted in advance. We make a similar argument about moats in AI wrapper product strategy.
The pitfalls we see most in AI OS projects
- Building the orchestrator before retrieval works. Impressive in demo, hallucinating on real data, because layer 3 was never fixed.
- Giving one agent the whole trifecta. Private data, untrusted input, and outbound network access in one unscoped process. Split the capability or sandbox the step.
- No agent identity. Actions land in logs as a service account, so you cannot attribute, audit, or revoke.
- Evaluating on vibes. No eval set, no regression suite, no traces. The first production incident becomes the first measurement.
- Choosing a stack by model benchmark. Benchmarks move monthly; identity, governance, and data gravity do not. Pick on the sticky layers.
- Skipping the boring integration work. Integration with existing systems is the top-ranked blocker in Anthropic and Material's 2026 State of AI Agents Report, named by 46% of the 500+ US technical leaders surveyed in late 2025 — and it is the least demo-able work, which is why it gets deferred and then kills the timeline.
Six ways AI OS projects go wrong
Each item names the mistake, what it looks like when it is happening, and the correction. Open any item for the detail.
1.Building the orchestrator before retrieval works+
The symptom is a system that is impressive in a demo and hallucinating on real data. Orchestration is the visible, demo-able layer, so it gets built first, while layer 3 — retrieval, permission-aware filtering, and durable memory — is left as an integration task for later. Retrieval quality is the ceiling on agent quality, so no amount of planning logic above it raises the result.
Correction: fix context before orchestration. Get retrieval and permissions right on your own data first, even though it is the unglamorous half.
2.Giving one agent the whole trifecta+
Private data, untrusted input, and outbound network access end up in one unscoped process, usually because each capability was added on its own merits and nobody looked at the combination. That combination is Willison's lethal trifecta, and there is no reliable technical fix for it — any agent holding all three can be induced to exfiltrate.
Correction: split the capability or sandbox the step. Once an agent ingests untrusted input, constrain it so that input cannot trigger a consequential action.
3.No agent identity+
Every action lands in the logs as one shared service account, so you cannot attribute a change to an agent, audit what it did, or revoke it without revoking everything on that account. It happens because a service account is the fastest way to get an agent working, and identity feels like a problem for later. OWASP's Top 10 for Agentic Applications, published December 2025, names identity and privilege abuse among the leading risks for exactly this reason.
Correction: give the agent a distinct identity on day one, with least privilege and a full audit trail. Retrofitting this at a hundred agents is a project of its own.
4.Evaluating on vibes+
No eval set, no regression suite, no traces — so the first production incident becomes the first measurement. The reason it persists is that an AI OS fails convincingly rather than loudly: an agent that misreads a column produces a clean, confident, wrong report, and nothing in the logs looks like a crash. Model swaps then ship on impressions.
Correction: own the evaluation harness outright — traces, a regression suite, and a human review queue — and run it before every model swap, because vendor eval tooling churns.
5.Choosing a stack by model benchmark+
The shortlist gets decided on last quarter's benchmark table, and then the real cost lands somewhere else entirely: identity, governance, and data gravity. Benchmarks move monthly and are the easiest thing to compare, which is exactly why they dominate the decision. The sticky layers are the ones you cannot cheaply reverse.
Correction: pick on the sticky layers. Decide where identity, governance, and your data live first, and treat the model as the swappable part.
6.Skipping the boring integration work+
Integration with existing systems is the top-ranked blocker in Anthropic and Material's vendor-sponsored 2026 State of AI Agents Report, named by 46% of the 500+ US technical leaders surveyed in late 2025, with implementation cost at 43% and data access and quality at 42% behind it. It is also the least demo-able work in the project, which is why it gets deferred to the back half of the plan and then consumes it.
Correction: schedule the integration work first and size it honestly, since it is the constraint the survey data and the field both point at.
How to build on an AI OS stack without betting the company
- Pick one workflow with a measurable baseline. Cycle time, cost per case, error rate. If you cannot state the baseline, you cannot prove the agent.
- Fix context before orchestration. Retrieval and permissions on your own data come first. Unglamorous, and where the ROI lives.
- Give the agent an identity on day one. Distinct account, least privilege, full audit trail. Retrofitting this at a hundred agents is a project of its own.
- Contain rather than detect. Assume prompt injection lands. Design so the worst case is a failed task, not an exfiltration.
- Keep the syscall layer swappable and instrument before you scale. Standardize on MCP, wrap vendor connectors behind your own interface, and ship traces, evals, and a human review queue before widening the aperture.
Teams that get this right usually have someone senior embedded in delivery rather than reviewing from a distance — the premise of our forward deployed engineers model.
Frequently asked questions
Is there an AI operating system I can actually use today?
Partly, though not as a single downloadable product. The closest consumer experience you can actually sign up for is Google's Gemini Spark, in beta for Google AI Ultra subscribers in the US. Windows 11's agent workspace and Copilot Actions are the equivalent on the Microsoft side, but as of August 2026 they remain experimental Windows Insider and Release Preview features that are off by default and have to be switched on by an administrator, so treat them as something to pilot rather than deploy. For business use, Microsoft's Agent 365 has been generally available since May 1, 2026 and OpenAI's workspace agents are in research preview, and those two are the most complete stacks available now.
Will an AI OS replace Windows, macOS, or Linux?
No, and nothing announced through mid-2026 suggests it will. Every shipping implementation runs on top of a conventional operating system and depends on it for process isolation, drivers, and file systems. Microsoft's own approach is to add agent accounts and contained workspaces inside Windows, not to replace Windows.
What is MCP and why does it matter for an AI OS?
MCP, the Model Context Protocol, is an open standard for connecting AI models to tools, data, and applications — functionally the system-call layer of an AI OS. It matters because it is vendor-neutral: Anthropic contributed it to the Linux Foundation's Agentic AI Foundation on December 9, 2025, where AWS, Anthropic, Block, Bloomberg, Cloudflare, Google, Microsoft, and OpenAI are platinum members, and more than 10,000 MCP servers had been published by the time of that announcement. Building against MCP is currently the least lock-in-prone way to wire agents to your systems.
How is an AI OS different from an AI assistant?
An assistant answers and suggests inside a workflow you control. An AI OS plans and executes a multi-step workflow across several systems, holds state while it does, and acts under its own audited identity. The practical test: if it cannot change a system of record without you clicking the button, it is an assistant.
What is the biggest risk in adopting an AI OS approach?
Prompt injection, followed closely by project economics. There is no reliable technical fix for an agent that has private data, untrusted input, and an outbound channel, so containment and human approval on consequential actions are mandatory rather than optional. On the business side, Gartner expects over 40% of agentic AI projects to be canceled by the end of 2027, most often for unclear value and cost overruns.
An AI OS strategy is mostly a sequencing problem: which layer you own, which you rent, and what you do first. Our AI strategy and roadmap engagement exists to answer exactly that, with a funded first workflow at the end of it rather than a slide deck.
Sources
- Linux Foundation, "Linux Foundation Announces the Formation of the Agentic AI Foundation (AAIF), Anchored by New Project Contributions Including Model Context Protocol (MCP), goose and AGENTS.md", December 2025, https://www.linuxfoundation.org/press/linux-foundation-announces-the-formation-of-the-agentic-ai-foundation
- Model Context Protocol, "The 2026-07-28 Specification", July 2026, https://blog.modelcontextprotocol.io/posts/2026-07-28/
- Visual Studio Magazine, "At Build 2026, Microsoft Sets Up Windows as an OS for AI Agents", June 2026, https://visualstudiomagazine.com/articles/2026/06/02/at-build-2026-microsoft-sets-up-windows-as-an-os-for-ai-agents.aspx
- Microsoft, "Securing AI agents on Windows", October 2025, https://blogs.windows.com/windowsexperience/2025/10/16/securing-ai-agents-on-windows/
- Microsoft, "Microsoft Agent 365: The control plane for AI agents", November 2025, https://www.microsoft.com/en-us/microsoft-365/blog/2025/11/18/microsoft-agent-365-the-control-plane-for-ai-agents/
- Microsoft Security Blog, "Microsoft Agent 365, now generally available, expands capabilities and integrations", May 1, 2026, https://www.microsoft.com/en-us/security/blog/2026/05/01/microsoft-agent-365-now-generally-available-expands-capabilities-and-integrations/
- Microsoft Support, "Experimental agentic features" (agent workspace is in preview for Windows Insiders and off by default), accessed August 2026, https://support.microsoft.com/en-us/windows/experimental-agentic-features-a25ede8a-e4c2-4841-85a8-44839191dfb3
- Microsoft Learn, "What is Microsoft Entra Agent ID?", updated for the April 2026 general availability announcement, https://learn.microsoft.com/en-us/entra/agent-id/what-is-microsoft-entra-agent-id
- OpenAI, "Introducing AgentKit", October 2025, updated June 3, 2026 with the notice that Agent Builder and Evals are being wound down and unavailable after November 30, 2026, https://openai.com/index/introducing-agentkit/
- OpenAI, "Introducing workspace agents in ChatGPT", April 2026, https://openai.com/index/introducing-workspace-agents-in-chatgpt/
- Anthropic, "Introducing Agent Skills", October 2025, https://www.anthropic.com/news/skills
- Anthropic and Material, "The 2026 State of AI Agents Report", 2026; the report carries no explicit publication date and states that fieldwork ran in late 2025 across 500+ US technical leaders, https://resources.anthropic.com/hubfs/The%202026%20State%20of%20AI%20Agents%20Report.pdf
- Forbes, "Google I/O 2026 Turned Gemini Into An Agent Platform", May 2026, https://www.forbes.com/sites/janakirammsv/2026/05/21/google-io-2026-turned-gemini-into-an-agent-platform/
- DataCamp, "Gemini 3.5 Flash vs GPT-5.5: Benchmarks, Features, Use Cases", 2026, https://www.datacamp.com/blog/gemini-3-5-flash-vs-gpt-5-5
- Google, "Learn about Gemini for Home voice assistant" (early access, 19 countries and 10 languages), accessed August 2026, https://support.google.com/googlehome/answer/16618650
- 9to5Google, "Google Home expands Gemini access globally as the Assistant replacement improves", April 8, 2026, https://9to5google.com/2026/04/08/google-home-expands-gemini-access-globally-as-the-assistant-replacement-improves/
- Google Open Source Blog, "A year of open collaboration: Celebrating the anniversary of A2A", April 2026, https://opensource.googleblog.com/2026/04/a-year-of-open-collaboration-celebrating-the-anniversary-of-a2a.html
- Linux Foundation, "Linux Foundation Launches the Agent2Agent Protocol Project", June 2025, https://www.linuxfoundation.org/press/linux-foundation-launches-the-agent2agent-protocol-project-to-enable-secure-intelligent-communication-between-ai-agents
- MacRumors, "Apple Outlines Major AI and Developer Tool Updates at 2026 Platforms State of the Union", June 2026, https://www.macrumors.com/2026/06/09/apple-outlines-major-ai-and-developer-tool-updates/
- Forbes, "Apple iOS 27 Release Date: When You Can Download The New iPhone Software", June 2026, https://www.forbes.com/sites/davidphelan/2026/06/11/ios-27-release-date-beta-public-release/
- Connectivity Standards Alliance, "Matter 1.5 Introduces Cameras, Closures, and Enhanced Energy Management Capabilities", November 20, 2025, https://csa-iot.org/newsroom/matter-1-5-introduces-cameras-closures-and-enhanced-energy-management-capabilities/
- NVIDIA, "NVIDIA Blackwell-Powered Jetson Thor Now Available, Accelerating the Age of General Robotics", August 25, 2025, https://nvidianews.nvidia.com/news/nvidia-blackwell-powered-jetson-thor-now-available-accelerating-the-age-of-general-robotics
- NVIDIA Blog, "NVIDIA Introduces New Jetson Thor Computers to Advance Mainstream Robotics and Edge AI" (T3000 and T2000 scheduled for Q1 2027), July 15, 2026, https://blogs.nvidia.com/blog/jetson-thor-robotics-edge-ai-agent/
- Siemens, "Siemens unveils technologies to accelerate the industrial AI revolution at CES 2026", January 6, 2026, https://press.siemens.com/global/en/pressrelease/siemens-unveils-technologies-accelerate-industrial-ai-revolution-ces-2026
- Gartner, "Gartner Predicts Over 40% of Agentic AI Projects Will Be Canceled by End of 2027", June 2025, https://www.gartner.com/en/newsroom/press-releases/2025-06-25-gartner-predicts-over-40-percent-of-agentic-ai-projects-will-be-canceled-by-end-of-2027
- Simon Willison, "The lethal trifecta for AI agents: private data, untrusted content, and external communication", June 2025, https://simonwillison.net/2025/Jun/16/the-lethal-trifecta/
- OWASP Gen AI Security Project, "OWASP Top 10 for Agentic Applications for 2026", December 2025, https://genai.owasp.org/resource/owasp-top-10-for-agentic-applications-for-2026/
- METR, "Task-Completion Time Horizons of Frontier AI Models", updated May 2026, https://metr.org/time-horizons/
- Y Combinator, "Andrej Karpathy: Software Is Changing (Again)", June 2025, https://www.ycombinator.com/library/MW-andrej-karpathy-software-is-changing-again



