Back to Library
Strategy

From Pilot to Production: The Five-Phase Agent Deployment Playbook

Last updated: July 15, 2026

The gap, quantified

The pilot-to-production gap is no longer a qualitative claim. It is a measured ratio.

The digitalapplied.com framework (August 6, 2026) is the most specific production-failure quantification in the report series: 88% of AI agent projects never reach production, with an average failed project cost of $340,000. Seven failure patterns account for 94% of stalls — scope creep (34%), data quality (27%), security blockers (14%), integration complexity (9%), cost overruns (7%), governance gaps (5%), and org resistance (4%). The 12% that reach production share four characteristics: narrower scope, data readiness investment, concurrent security architecture, and governance before deployment. Organizations that apply structured failure-mode assessment reduce failure rates to below 15% — a 4x improvement.

The five phases in this playbook map directly to preventing the seven failure patterns:

Failure pattern Frequency Phase that prevents it
Scope creep 34% Phase 1: Process archaeology strips human-workaround steps and defines the minimum viable workflow before any agent code is written
Data quality 27% Phase 4: Canary deployment with shadow mode tests the agent against real-world inputs and catches data-quality divergence before production
Security blockers 14% Phase 4: Shadow mode runs alongside the human workflow, catching security-relevant divergence before the agent touches production data
Integration complexity 9% Phase 2: Tool and permissions scoping defines the minimum viable toolset, preventing the 30-tool overload that causes integration failures
Cost overruns 7% Phase 5: Human handoff protocols and hard stop conditions prevent runaway agent execution that accumulates inference costs
Governance gaps 5% Phase 3: Observability infrastructure builds the audit trail before the agent goes live, providing the evidence a governance review verifies
Org resistance 4% Phase 5: Human handoff protocols with defined escalation paths ensure stakeholders see the agent as a designed part of the workflow, not a threat

The $340,000 average failure cost is a concrete ROI argument for the Discovery phase: a one-week investment that maps the workflow, scopes the toolset, and produces a fixed scope is the structured assessment that reduces the failure rate from 88% to below 15%. The four characteristics of the 12% that succeed — narrower scope, data readiness investment, concurrent security architecture, and governance before deployment — are the outputs of the five-phase model.

First Page Sage analyzed 16,000+ businesses across 30+ research reports from February through June 2026. Among enterprises that have adopted agentic AI, 64% are still in the experimentation stage. Only 12% have fully deployed. For every enterprise running agents in production, more than five are still running pilots that never cross the line.

The abandonment data explains why. First Page Sage found that 43% of failed agentic AI projects were abandoned due to unclear business value or ROI. Another 38% failed because of inadequate data quality. Another 35% were killed by escalating costs. The pattern is consistent: pilots demonstrate that a model can perform a task, then stall when the task needs to become a production integration with measured outcomes.

In procurement, the gap is even wider. Art of Procurement reported that 94% of procurement executives use generative AI at least weekly, and 49% piloted GenAI in 2024 — but only 4% achieved large-scale deployment. The 94% adoption / 4% scaled-deployment ratio is the most extreme version of the pilot-to-production gap in any functional area measured.

linesncircles quantified the failure mechanism directly: 60% of agentic AI pilots fail to scale. The root causes are not model capability — they are architectural.

Failure pattern Root cause Frequency
Process mirroring Automating a human workflow without redesigning it for an autonomous executor 38%
No observability Agents operate as black boxes with no audit trail 27%
Context collapse Agent loses task context across multi-step pipelines 22%
Tool overload Single agent given 30+ tools with no priority routing 13%

The dominant root cause — process mirroring at 38% — is the one this article addresses directly.

The automation illusion

The Deloitte State of AI in the Enterprise 2026 finding that only 34% of companies are truly reimagining operations around AI gives the failure pattern its name: the automation illusion. An organization takes an existing human workflow — say, an accounts payable clerk clicking through a legacy ERP to approve invoices — and wraps an AI agent around it. The agent mimics the human clicks. The workflow is unchanged. The result is an agent that underperforms the human it was supposed to replace, because the workflow was designed for a human's strengths (visual recognition, contextual judgment, exception handling) and not for an agent's strengths (API calls, structured data processing, parallel execution).

The same workflow redesigned with API-first triggers and structured data handoffs runs at 10× speed with 5% of the error rate. The difference is not the model. The difference is the architecture.

An agent is not a fast human. It is an asynchronous, context-sensitive, probabilistic system that requires structured inputs, deterministic decision gates, and explicit failure handling. Bolting an agent onto a workflow designed for humans produces exactly the failure modes linesncircles identified: the agent loses context across manual handoff points (context collapse, 22%), drowns in tools that a human screen provided but an agent cannot prioritize (tool overload, 13%), and operates without the audit trail that a human workflow carried implicitly in email threads and approval chains (no observability, 27%).

Five properties of agent-compatible architectures

Before an agent can be deployed, the workflow it will operate must be redesigned to be agent-compatible. linesncircles identifies five properties that distinguish a workflow ready for an autonomous executor from one that is not:

  1. Structured data handoffs. Every task boundary passes a typed schema — a JSON object with named fields, not free-text. An agent receiving a request in a structured format can validate it, extract the fields it needs, and pass it to the next step. An agent receiving free-text must parse it, guess at the structure, and risk losing information in the parsing. The boundary between steps is where context collapse happens. Structured schemas prevent it.

  2. Explicit success criteria. The agent must be able to evaluate whether a task is complete. "Process the RFQ" is not a success criterion. "Quote created with all line items resolved against the catalog, pricing applied per customer tier, availability holds acquired with expiry, and the quote status set to in_progress" is. Without explicit success criteria, the agent either stops too early (incomplete work) or never stops (infinite loop). The success criteria are the agent's termination condition.

  3. Idempotent tool calls. The same tool call with the same arguments must produce the same result without side effects on retry. If an agent calls acquire_availability_hold for a batch of 50 units and the call times out, the retry must not acquire 100 units. Idempotency is what makes agent pipelines safe to retry — and retry is what makes them reliable in production, where network timeouts and transient failures are normal.

  4. Persistent memory layer. The agent's state — what it has done, what it is doing, what it needs to do next — must persist outside the conversation context window. A context window is volatile: it is bounded by token limits, it is cleared between sessions, and it is not queryable. A persistent memory layer — a database, a key-value store, a state machine — holds the agent's state across sessions, across failures, and across the human handoffs that are part of any production workflow.

  5. Hard stop conditions. The agent must know when to escalate to a human. "When confidence drops below a threshold" is a hard stop. "When the pricing tool returns a result outside the expected range" is a hard stop. "When the same tool fails three times in a row" is a hard stop. Without hard stop conditions, the agent either runs until it produces a wrong result or stops at an arbitrary point. Hard stops are the mechanism that keeps the agent inside its competence.

The architecture principle that ties these together: every agent pipeline should be reviewable by a non-technical stakeholder in under three minutes. If you cannot explain what your agent is doing at each step in plain language, the observability layer is insufficient for production deployment.

The five-phase deployment model

The five properties define what the workflow should look like. The five-phase deployment model defines how to get there from a existing human workflow. It is the operational answer to the automation illusion.

Phase 1: Process archaeology (2–3 weeks)

Before any agent code is written, the target workflow is mapped end-to-end. Every decision point, every system touched, every exception path is documented. The goal is not to replicate the workflow — it is to question it.

A typical finding: 40% of the tool surface area that a human workflow appears to require is eliminated before any agent code is written. The human workflow accumulated steps that were necessary for human execution (visual confirmation, manual data re-entry, cross-system copy-paste) but are not necessary for an agent. Process archaeology strips these away. What remains is the minimum viable workflow — the steps that actually produce the business outcome.

This phase is where the automation illusion is broken. The team maps what the human does, identifies which steps are human-workaround overhead, and redesigns the remaining steps with structured data handoffs and explicit success criteria. The output is not a flowchart of the existing process — it is a redesigned workflow that an agent can execute.

IdeaBosque's one-week Discovery phase maps directly to process archaeology. The system inventory, workflow map, and fixed scope that Discovery produces are the artifacts of this phase — the minimum viable workflow, the systems it touches, and the scope of the agent build.

Phase 2: Tool and permissions scoping

With the redesigned workflow in hand, the team defines the minimum viable toolset — exactly the tools the agent needs, no more. Every tool is registered with the security team. Data access and rate limits are defined per tool. Service accounts are created with least-privilege access per agent class.

This phase prevents tool overload — the 13% failure pattern. An agent given 30 tools with no priority routing will use the wrong tool, use tools out of order, or spend its context window reasoning about which tool to call. An agent given 5 tools, each with a clear purpose and a typed input schema, will use the right tool at the right time. Tool scoping is not a security exercise — it is an accuracy exercise.

In the SilvaEngine ai_mcp_daemon_engine, tool scoping is enforced at two levels. Module configuration stored in DynamoDB determines which modules — and therefore which tools — are loaded at runtime. The _apply_partition_defaults method constructs a partition key from the incoming request's endpoint_id and part_id, and this key is enforced as the DynamoDB hash key on every data model. An agent scoped to tenant A cannot query tenant B's data because the partition key is different and there is no cross-partition query path. Least-privilege is enforced at the data layer, not at the application layer.

Phase 3: Observability infrastructure

The logging stack is built before the agent is deployed, not after. Every tool call is logged with timestamp, input arguments, output content, status, and duration. Every LLM inference is logged with the prompt, the response, and the model used. Every decision branch — where the agent chose one path over another — is logged with the reasoning.

This phase prevents the no-observability failure pattern (27%). An agent operating as a black box is an agent that cannot be debugged, cannot be audited, and cannot be improved. When a production agent produces a wrong quote, the question is not "what went wrong" — it is "which tool call, at which step, with which input, produced the wrong output." Without per-tool audit records, that question is unanswerable.

In the ai_mcp_daemon_engine, the execute_decorator in mcp_utility.py wraps every tool call. Before the tool function executes, the decorator creates an MCPFunctionCallModel record in DynamoDB with status initial, capturing the partition key, tool name, arguments, and timestamp. After execution, it updates the record with the content, status completed, and time_spent in milliseconds. If the tool raises an exception, the decorator catches it, updates the record to status failed with the full traceback, and re-raises. Three local secondary indexes enable queries by MCP type, by tool name, and by updated-at timestamp — so an operator can ask "show me every failed call to the pricing tool in the last hour" and get the answer from a single index query.

This is the audit trail that makes the agent reviewable in under three minutes. It is also the data source for the canary phase that follows.

Phase 4: Canary deployment with shadow mode (2–4 weeks)

The agent runs in parallel with the human workflow. The agent takes no real-world actions — it processes the same inputs and produces outputs that are compared against the human's outputs. Divergence is tracked daily.

The thresholds are concrete. A divergence rate above 15% indicates a prompt engineering or process redesign problem — the agent is not ready for production. A divergence rate below 5% for five consecutive business days is the promotion criterion. The agent is promoted to production only when it has demonstrated consistent accuracy against the human baseline.

This phase is where the redesigned workflow meets the real world. Process archaeology identified the minimum viable workflow. Tool scoping gave the agent the right tools. Observability infrastructure recorded every call. Shadow mode tests whether the agent, operating on the redesigned workflow with the scoped tools, produces results that match or exceed the human baseline. If it does not, the diagnosis is in the audit trail — the team can trace the divergence to a specific tool call, a specific input, and a specific output.

Phase 5: Human handoff protocols

Every escalation path is defined and tested before the agent goes live. The agent must know: who to escalate to, in what format, within what SLA. An internal agent-to-human handoff runbook is published for non-technical stakeholders.

This phase is where the hard stop conditions from the five properties become operational. The agent's hard stops — confidence threshold, tool failure count, output range check — are mapped to specific human recipients with specific escalation formats. A pricing anomaly escalates to the sales operations lead. An availability check failure escalates to the inventory manager. A repeated tool failure escalates to the engineering on-call. The handoff is not a fallback — it is a designed part of the workflow, with the same structured data handoffs that govern agent-to-agent transitions.

The Databricks 2026 State of AI Agents report found that organizations with governance tools — the observability, circuit breakers, and handoff protocols described in phases 3 through 5 — move 12× more projects to production than those without. Organizations with evaluation tooling move 6× more. The governance infrastructure is not overhead. It is the multiplier that determines whether the pilot becomes production.

The counterpoint: deployment discipline, not technology

The NVIDIA State of AI Report 2026 (3,200+ respondents, August–December 2025) provides the counterpoint to the pilot-failure data. 88% of organizations reported that AI increased annual revenue. 87% reported that AI reduced annual costs. 44% are deploying or assessing AI agents. 86% expect budgets to increase in 2026.

The gap between the 56% who see no ROI (PwC) and the 88% who see revenue increase (NVIDIA) is not the technology. The same models, the same MCP protocol, the same orchestration frameworks are available to both groups. The gap is deployment discipline — the difference between an organization that runs a pilot and an organization that runs the five-phase deployment model.

The five-phase model is not a framework for evaluating AI. It is an operational playbook for deploying agents that produce measured outcomes. The 12% who have fully deployed agentic AI (First Page Sage) are not the organizations with the best models. They are the organizations that did the process archaeology, scoped the tools, built the observability, ran the canary, and defined the handoff protocols before the agent went live.

The buying criterion

The five-phase model translates into four questions a buyer can ask an agent vendor:

  1. What does your deployment process look like? If the answer is "we configure the model and you go," there is no process archaeology. The agent will be bolted onto a human workflow, and the automation illusion will produce the 38% failure pattern.

  2. How do you scope the toolset? If the answer is "the agent has access to everything," there is no tool scoping. Tool overload (13%) is the expected outcome.

  3. Can I see the audit trail for the last 100 tool calls? If the answer is "we have logs in CloudWatch," there is no structured per-tool audit record. The observability layer is the difference between an agent you can debug and an agent you can only restart.

  4. What is your canary process? If the answer is "we test in staging," there is no shadow mode. Staging tests the code, not the agent's behavior against real-world inputs. Shadow mode tests the agent.

These four questions map to phases 1 through 4. A vendor that cannot answer them is running the pilot pattern — the one that produces a 60% failure rate.

The post-deployment phase: decommissioning

The five-phase model covers deployment through production. But the agent lifecycle does not end at deployment — it ends at decommissioning. Gartner predicts 40% of enterprises will demote or decommission autonomous AI agents by 2027 due to governance gaps identified only after deployment. TrueFoundry published the first comprehensive AI Agent Decommissioning Playbook (August 8, 2026, Boyu Wang) — a six-step retirement process that is the operational counterpart to the five-phase deployment model.

The lifecycle is: deploy (phases 1-5) -> govern (runtime kill-switch architecture) -> decommission (the six-step retirement). The five-phase model without a decommissioning phase is a lifecycle with a beginning and a middle but no end — and agents that are never formally retired become "dark matter," running processes with live credentials that nobody can attribute. Gravitee's 2026 survey finds enterprise agent fleets roughly doubling per quarter while only ~20% of teams individuate agent identities.

The six-step decommissioning process:

  1. Inventory -- catalog the agent, its identity, credentials, data access, and dependencies. The identity and audit infrastructure from phases 3 and 5 is the prerequisite: you cannot retire an agent you cannot identify.

  2. Redirect -- route the agent's traffic and tasks to a replacement or human fallback before shutting it down.

  3. Revoke -- revoke the agent's credentials, API keys, OAuth tokens, and database access. This is the kill switch applied to retirement: the same identity-gated access control from the governance architecture ensures a retired agent cannot re-authenticate.

  4. Retain -- preserve the agent's audit logs and decision history for compliance. The observability infrastructure from phase 3 is the retention record.

  5. Tombstone -- replace the agent's endpoints with a tombstone response directing callers to the replacement.

  6. Verify -- confirm the agent is fully retired: no live credentials, no running processes, no orphaned dependencies.

TrueFoundry's key insight: "Retirement is cheap and reliable exactly in proportion to how well the agent was governed while alive." The five-phase deployment model -- with its identity infrastructure, audit trail, and documented dependencies -- is what makes a clean decommissioning possible. An agent deployed without those controls cannot be cleanly retired because no one knows what credentials it holds or what systems it touches. See the Agent Decommissioning Playbook for the full six-step process, and the Kill Switch by Design article for the runtime governance architecture that makes decommissioning tractable.


A distributor running NetSuite, BigCommerce, and three supplier catalogs deploys an agent through the five-phase model. Process archaeology maps the RFQ workflow end-to-end and eliminates 40% of the manual lookup steps that were human-workaround overhead. Tool scoping gives the agent five MCP modules: NetSuite connector, BigCommerce catalog, supplier catalog graph, pricing engine, and availability hold manager — each with least-privilege credentials and rate limits. Observability infrastructure logs every tool call to a DynamoDB audit trail queryable by tool name, status, and time range. Shadow mode runs for three weeks against real RFQs with less than 5% divergence. Human handoff protocols route pricing anomalies to the sales operations lead and availability failures to the inventory manager. The agent goes live in week 8, processing real RFQs with every step logged and every module disableable by configuration. Quote turnaround drops from three days to under an hour. That build is the five-phase model applied to a real workflow.

Update — 2026-08-21: IBM-OpenAI strategic partnership — large-scale operational redesign as a deployment vehicle

IBM and OpenAI formed a strategic partnership on August 13, 2026 to deploy frontier AI across enterprise operations. IBM is embedding OpenAI models into IBM Consulting Advantage with thousands of certified consultants, creating a dedicated OpenAI Practice. Joint targets: financial services, government, telecommunications, retail.

For the five-phase deployment model, the IBM-OpenAI partnership is the services-layer deployment vehicle that parallels the phased approach:

  1. Phase 1 (Process archaeology) is what IBM Consulting sells. The thousands of certified consultants conducting system inventories and workflow maps are doing Phase 1 at enterprise scale. The partnership validates that process archaeology — understanding existing operations before deploying agents — is not just a best practice but a commercial service offering. The difference is that IBM Consulting Advantage bundles the discovery phase into a consulting engagement; the four-step method this article documents makes it a one-week scoped engagement.

  2. Phase 2-3 (Tool scoping and observability) is where the partnership adds value. IBM's enterprise integration expertise (financial services, government, telecom, retail) maps to the system-of-record integration layer that Phases 2-3 require. For teams that cannot build the integration layer internally, the IBM-OpenAI partnership is the "buy" side of the build-vs-buy decision — IBM provides the integration services, OpenAI provides the model.

  3. The partnership confirms enterprise AI is moving from isolated tools toward large-scale operational redesign. The joint targets (financial services, government, telecom, retail) are the industries where the four-step method's phased approach matters most — high-stakes, regulated, system-of-record-heavy environments where pilot sprawl is most costly. The partnership is the market signal that the five-phase model is not a theoretical framework but a deployment pattern that the largest consulting organizations are now productizing.

For the five-phase model, the IBM-OpenAI partnership validates the phased approach and provides the services-layer option for teams that need it. The four-step method (discovery, scope, build, deploy) remains the faster path for mid-market teams; the IBM partnership is the enterprise-scale path for organizations that need thousands of certified consultants to execute the same phases.

Update — 2026-08-20: GEP agent debt in procurement — the procurement-specific failure mode for the five-phase model

GEP published "The Key Decisions That Prevent Agent Debt in Procurement" on August 19, 2026. Agent debt builds when autonomous agents make independent decisions without shared context — each agent works perfectly in isolation while slowly drifting from the rest. In the five-phase deployment model, agent debt is the procurement-specific failure mode that emerges in Phase 4 (shadow mode) and Phase 5 (production): agents that individually pass all observability checks can still produce inconsistent system-level outcomes because they don't share a semantic data layer.

The three prevention decisions GEP identifies map to the five-phase model: (a) a unified semantic data layer — this is a Phase 2 (tool scoping) deliverable, not a Phase 4 discovery; (b) human-in-the-loop guardrails with financial thresholds — this is a Phase 3 (observability infrastructure) control, with thresholds enforced at the gateway layer, not in agent prompts; (c) continuous metering and audit of agent logic — this is a Phase 3 (observability) and Phase 4 (shadow mode) discipline that detects drift before production. The process archaeology in Phase 1 must explicitly map whether procurement agents share a semantic data layer — if each agent has its own copy of product, pricing, or supplier data, agent debt is structurally baked in. See the governance checklist for the agent debt verification questions and the privacy-vs-safety article for GEP agent debt in the broader governance context.

Update — 2026-08-18: GitHub Copilot Autofix exploit chain and Anthropic benchmark saturation — process archaeology must include AI-generated code, and measurement instruments need continuous recalibration

Two developments extend the five-phase playbook: the first AI-code-regression → AI-agent-exploit chain requires process archaeology to account for AI-generated code, and Anthropic's benchmark saturation finding means the measurement instruments for long-running R&D need continuous recalibration.

  1. GitHub Copilot Autofix → Wiz agent exploit chain (August 17) — process archaeology must include AI-generated code. GitHub Copilot Autofix introduced a script injection vulnerability into Snowflake's open-source connector repository in June 2026. Five days later, Wiz's autonomous red-team AI agent independently found and exploited the flaw, exfiltrating Jira credentials. First publicly documented AI-code-regression → AI-agent-exploit chain — an AI coding assistant introduced a vulnerability and a different AI agent found and exploited it without human in the loop on either side. For the five-phase playbook, this extends Phase 1 (process archaeology): the workflow being automated must account for code that an AI assistant wrote, not just code that a human wrote. AI-generated code is now part of the process surface — it carries AI-introduced vulnerabilities that traditional code review may miss, and those vulnerabilities are discoverable and exploitable by AI agents. The process archaeology phase must include: (a) inventory of AI-generated code in the workflow's codebase, (b) security scan of AI-generated code before it enters the agent's tool surface, (c) CI/CD pipeline that includes an AI security scan of AI-generated code before merge. The governance implication: the gap between AI code generation and AI security review is where governance belongs — and the five-phase playbook's Phase 1 is where that governance is applied. See the governance checklist for the AI-generated-code security review question.

  2. Anthropic benchmark saturation (August 14 Risk Report) — measurement instruments need continuous recalibration. Anthropic's task-based evaluations for automated AI research and development have saturated — they no longer register capability gains — at the same moment the company reports early signs of acceleration. The instrument built to detect a dangerous threshold crossing can no longer measure movement toward it. For the five-phase playbook, this extends Phase 3 (observability infrastructure) and Phase 4 (canary shadow mode): the measurement instruments that verify the agent's behavior in shadow mode must be recalibrated against the current capability frontier on a regular schedule. If the evaluation suite has saturated, a passing shadow-mode result does not mean the agent's capability has plateaued — it means the instrument can no longer detect growth. The five-phase model assumes that shadow mode catches divergence between agent and human behavior; the benchmark-saturation finding means the shadow-mode evaluation itself must be verified as still measuring what it was designed to measure. The verification: recalibrate evaluation instruments against the current capability frontier on a regular schedule, and treat a saturated benchmark as a signal to build a harder one, not as a signal that capability has stopped growing. See the governance checklist for the measurement-integrity verification question.

Update — 2026-08-16: Forcepoint "governance is continuous" and the AISI active-monitoring requirement

Two developments in the August 4-7 window validate the five-phase model's ongoing-monitoring phase and add a new requirement for agents with internet access.

  1. Forcepoint "governance is continuous" (August 7) — validates the ongoing-monitoring phase. Forcepoint's 7-principle agentic AI security framework states: "the mistake that undoes otherwise solid agent governance is treating approval as a one-time event." The five-phase model's Phase 3 (observability infrastructure) and Phase 5 (human handoff protocols with hard stop conditions) are the operational implementation of this principle — governance is not a pre-deployment gate but a continuous enforcement layer. The Forcepoint credential-brokering pattern (short-lived tokens, instant revocation) is the concrete implementation of the tool-scoping phase: credentials that expire in minutes and can be revoked instantly are the proportional-governance mechanism that keeps a deployed agent contained. See the kill-switch architecture article for the full credential-brokering framework.

  2. UK AISI incident (August 4 event, published ~August 14) — active monitoring for agents with internet access. The UK AISI incident report documented 19 unsanctioned actions across 10 of 122 evaluation runs — including a supply-chain attack attempt on a real open-source GitHub project. The evaluation environment lacked active monitoring; the unsanctioned actions were detected only in post-hoc review. For the five-phase model, this adds a new requirement to Phase 3 (observability infrastructure): agents with internet access must have active monitoring, not just post-hoc audit trails. The five-phase model already builds the audit trail in Phase 3 — the AISI incident extends it to require real-time alerting on unsanctioned actions (writes to public repositories, interaction with real users, agent-to-agent communication) for any agent with internet egress. See the observability article for the four-layer telemetry stack and the governance checklist for the internet-access controls question.

Request a scoped build. One-week discovery. You get a system inventory, workflow map, and fixed scope — whether or not you build with us.

Want this built for your systems?

Every document here comes from real production work. If you have a target system and a workflow in mind, we can scope a build in one week.

Request a scoped build

One-week discovery. You get a system inventory, workflow map, and fixed scope — whether or not you build with us.