· Web Architecture · 8 min read
Agent Experience: Netlify's Production Continuity for AI
Netlify's Agent Experience (AX) shifts AI from experimental DX to integrated production delivery, enabling AI agents to build on live infrastructure in under five minutes.

TL;DR: Netlify’s launch of Agent Runners and the Agent Experience (AX) framework marks a pivotal shift. It moves AI-assisted development from isolated experimentation to a production-native paradigm. AI agents can now deliver code directly onto the same live infrastructure as human developers, governed by robust guardrails and eliminating the costly prototype-to-production rewrite. This achieves true production continuity.
For the past three years, the industry has been awash in AI-driven developer tools. From GitHub Copilot to Claude Code, these tools have supercharged developer experience (DX) within the IDE. However, a critical architectural chasm has remained: the gap between AI-assisted code generation and a live, scalable, and secure application on the web. The AI writes a prototype; the developer is then left with the considerable task of manually deploying, configuring, and integrating it with production-grade infrastructure. Netlify’s March 2026 launch directly bridges this chasm. By introducing Agent Experience (AX) as the successor paradigm to DX, the platform treats AI agents as first-class citizens in the software delivery lifecycle. This transition is not merely about better code generation, but about orchestrating entire application delivery from prompt to production on a unified, governed platform.
What is Agent Experience (AX)?
Agent Experience (AX) is a production-centric framework that treats AI coding agents not as isolated assistants but as integrated, governable components of the software development lifecycle. It provides the secure tooling, environment, and governance protocols necessary for these agents to build, deploy, and iterate on applications directly within a live production infrastructure. Where Developer Experience (DX) optimises for human intuition, AX is designed for AI agent execution, ensuring AI-generated artefacts—from code to infrastructure—adhere to organisational standards and reside on the same platform as manual work from day one. This re-centres the focus from developer productivity alone to secure, auditable, and continuous agent-driven delivery.
From Agent Prompt to Live Endpoint: The Five-Minute Pipeline
At the heart of this transition are the Netlify Agent Runners. They operationalise the AX concept by creating a seamless conduit from an AI’s output to a production application. The process begins at a specialised agent prompt interface (netlify.new/ax), where a developer or an Internal Builder seat holder provides an architectural intent. An integrated agent, such as Claude Code or Gemini CLI, interprets this prompt, writes the code, and—critically—invokes the Runner.
The Runner then executes the agent’s directives on Netlify’s production fabric. This is where the paradigm shift occurs: instead of generating a local folder, the agent, via the Runner, can directly provision resources. For instance, a prompt like “create a user feedback form with image upload and a serverless backend” can lead the agent to dynamically provision a Blob store for images and a Netlify Function for processing. The entire pipeline, from that initial prompt to a live, accessible URL, completes in under five minutes, collapsing what was previously a multi-step, manual deployment process.
Pro Tip: Structure your initial prompts for agents to include explicit architectural keywords like “serverless function,” “edge middleware,” or “Blob storage.” This gives the agent clearer intent to leverage Infrastructure-as-Prompt capabilities, reducing iterative back-and-forth.
The technical enabler here is the integration of Model Context Protocol (MCP) servers. As defined in the official MCP documentation, MCP provides a standard for tools to expose context to AI models securely. Netlify implements MCP servers for its core services (Functions, Identity, Blobs), giving AI agents a secure, granular API to read from and write to the platform. This eliminates the need for developers to manually provision credentials or expose secrets to the AI, a significant security and operational hurdle removed.
Ensuring Production Continuity: Architecture Over Artifact
A prototype that runs locally is not a production system. The historical “rewrite tax” incurred when porting an AI-generated proof-of-concept to a scalable, secure, and observable environment has been a major blocker. Netlify addresses this through its Continuity Architecture, a core tenet of the AX framework. This architecture guarantees that from the very first AI commit, all code and configuration reside on the same production-grade infrastructure that serves manual developer commits.
This means an AI-generated serverless function is instantly a Netlify Function, with the same logging, monitoring, and scaling characteristics. An AI-provisioned database is a production Netlify Blob store. There is no secondary deployment target or configuration step. This continuity is enforced by the platform itself, ensuring that the non-functional requirements—security, performance, reliability—are inherent, not afterthoughts. For CTOs and architects, this directly translates to reduced risk and accelerated time-to-value, as there is no longer a separate, costly “productionisation” phase for AI-generated work.
Internally, this is managed by the proprietary Dual-Stream Sync engine. It allows two parallel workflows to converge: human developers pushing traditional Git commits and AI agents pushing prompt-driven updates. The sync engine intelligently resolves state conflicts within the unified Netlify environment, maintaining a single source of truth for the application state. This prevents the chaos of diverging codebases and ensures both human and agent contributions are first-class citizens in the deployment history.
Why Does Enterprise Governance Demand Agent Guardrails?
Granting AI agents the ability to provision production resources is a powerful capability that demands equally powerful governance. Unrestricted, an agent could theoretically modify core authentication logic, alter critical database schemas, or incur unexpected costs. Netlify’s AX framework introduces sophisticated Agent Guardrails to mitigate these risks. These are not simple prompt filters but are integrated into the platform’s core Role-Based Access Control (RBAC) system.
CTOs and engineering leads can define policies that restrict agent actions based on the user’s role (e.g., Internal Builder vs. Senior Engineer), the target environment, and the criticality of the code path. For example, an agent working under an Internal Builder seat—a role designed for product managers or designers to iterate on internal tools—can be restricted from modifying anything in the /src/auth directory or from provisioning resources outside a pre-approved staging project. These guardrails provide the necessary safety net to empower broader teams without compromising system integrity.
# Example Guardrail Policy (Conceptual Netlify Config)
agent_guardrails:
- role: 'internal_builder'
allowed_actions:
- 'functions:write'
- 'blobs:write'
restricted_paths:
- '/src/core/auth/**'
- '/prisma/schema.prisma'
environment_scopes:
- 'staging-*'
budget_alert_threshold: 50 # USD/monthThis governance layer is what makes AX viable for the enterprise. It directly addresses the compliance and security concerns that have kept AI experimentation siloed away from core systems, enabling a controlled, auditable expansion of AI’s role in software delivery.
The 2026 Outlook: Consolidation and Specialised Orchestration
The launch of Agent Runners signals a broader architectural trend for 2026 and beyond. We predict a rapid industry-wide move away from fragmented AI toolchains and towards consolidated, full-stack platforms that unify AI development and execution. The 20-40% increase in legacy hosting costs reported by organisations stems from maintaining separate infrastructure for AI experiments, prototypes, and production systems—a cost centre AX directly eliminates.
Furthermore, we will see the rise of specialised orchestration engines within these platforms. Netlify’s support for toggling between Claude Code, OpenAI Codex, and others is just the beginning. Teams will begin to programmatically route tasks to different AI models based on the complexity of the problem—using one for boilerplate UI generation and another for intricate business logic. The MCP standard will become ubiquitous, transforming cloud platforms from passive infrastructure into intelligent, agent-addressable fabrics. The role of the senior engineer will evolve further towards defining these orchestration rules, architectural intent prompts, and the governance frameworks that make autonomous agentic systems safe and effective.
Key Takeaways
- Agent Experience (AX) is the new critical paradigm, shifting focus from developer-centric AI tools to production-integrated, governable agent systems.
- Production Continuity is the primary value: AI-generated code must live on the same infrastructure as manual work from the first prompt to eliminate the costly “rewrite tax.”
- Governance is non-negotiable. Advanced RBAC and Agent Guardrails are essential to safely empower agents and non-engineering stakeholders like Internal Builders.
- Standardised protocols like MCP are the enabling glue, providing secure, granular access for AI agents to platform services without manual credential management.
- Infrastructure-as-Prompt represents the next abstraction, where architectural intent directly translates into provisioned, configured cloud resources.
Conclusion
Netlify’s introduction of Agent Runners and the Agent Experience framework represents a necessary and inevitable maturation of AI in software engineering. It moves the conversation beyond code completion to a holistic, architectural approach for agent-native delivery. By guaranteeing production continuity and wrapping powerful capabilities in robust guardrails, it provides a viable path for enterprises to leverage AI at scale without sacrificing security or stability. This shift demands that technical leaders evaluate their platform strategy not just for human developers, but for the autonomous agents that will increasingly populate their delivery pipelines. At Zorinto, we help clients architect and implement these next-generation, agent-integrated platforms, ensuring their transition to AX is both strategically sound and technically seamless.



