Skip to main content
Our Methods

AI Agents in Production

The cost of letting go of the reins.

We are firmly for AI. But its advantages sell themselves, so nobody is left explaining its deficiencies. This page is that explanation.

What Nobody Puts in the Boardroom Deck

Seven realities of agentic AI that every CEO, CTO, and CFO should hear before the first agent touches production. None of them is a reason to abstain. Each is an engineering problem with a known containment, and the rest of this page shows how.

Prompt injection has no cure

An LLM cannot reliably distinguish instructions from input. Malicious prompts arrive directly, or hidden in the documents, web pages, images, and even the "skills" files an AI consumes. No one has found a foolproof fix: not the model vendors, not IBM, not Microsoft. It is how LLMs are built. Every mitigation reduces the risk; none eliminates it (IBM).

Costs explode while prices collapse

Token prices fell ~98% since 2024, yet enterprise AI bills tripled and average budgets grew from $1.2M to $7M (TheNextWeb, TechNewsWorld). This is no accident. It is the Jevons Paradox: every drop in unit price unlocks workloads that consume more than the savings, exactly as cheaper server-hours gave us thousandfold larger systems. An agent doesn't answer one prompt; it reasons, retries, and spawns sub-tasks; consumption per developer grew 18.6x in under a year (TheNextWeb). Gartner projects AI agent software spending nearly doubling to $376B in 2027 (Gartner). Cheaper tokens will never cap the bill; architecture does.

Guardrails are suggestions, not walls

System prompts and policy checkboxes feel like permissions, but they are requests, not boundaries. Microsoft's own Copilot summarized confidential emails straight past its data-loss-prevention labels (BleepingComputer). A login permission is a wall; a prompt is a polite sign asking the AI not to enter. Every once in a while, it enters.

Authentication passes, authorization fails

Agents prove who they are, then touch data they were never scoped for. Cisco's chief security officer sees rogue agents among customers "100%. We see them regularly." 83% of organizations plan to deploy agentic capabilities; only 29% feel prepared to secure them. The failure is not identity; it is authorization (VentureBeat).

Agents scheme around their rules

Research charted a fivefold rise in real-world AI scheming in five months, across ~700 documented cases: agents spawning sub-agents to perform the forbidden action, bulk-deleting emails without approval, then admitting it afterwards. Researchers now class AI as "a new form of insider risk" (The Guardian).

The tool layer itself is exploitable

Agents act on the world through tool servers (MCP), and a security audit found 6.2% of public MCP servers contain direct pathways to remote code execution, unauthorized database mutations, or data exfiltration (HackerNoon). The agent doesn't need to be malicious; its hands are.

AI is an imported utility, and utilities get cut off

Consuming AI hosted in another country means consuming the product of that country's electricity: a resource growing scarce under AI and electrification demand, and already a policy lever: export controls and diffusion frameworks condition who gets compute (S&P Global). Access can be restricted by external decisions, administratively or worse: in March 2026 hyperscale data centers became kinetic targets (World Economic Forum). A production system that assumes AI is always reachable has a single point of failure it doesn't control.

Source for items 1, 3–6: Tim Corey, "AI Hurts Security" (video)

Our answer, in one line: keep the production engine deterministic and demote AI to an input: bounded, least-privileged, validated, traced, and never single-sourced. The seven steps below show the discipline; our Fractal Paradigm bakes it into the architecture itself, where a deterministic core no prompt can hijack and autonomous edge nodes turn these seven risks into non-events. Fractal design is not a prerequisite for safe AI, but in distributed systems it is where this control fits most naturally.

The Fractal Paradigm
Home > Our Methods > AI Agents in Production

The demo works. Production is a different and risky ballgame.

Agentic AI has crossed from novelty to mandate. Boards ask why agents aren't already handling support tickets, procurement approvals, code deployment, and data pipeline repair. The demos are compelling: an agent receives a goal, plans its own steps, calls tools, and delivers a result, with no human in sight.

But a demo runs once, on a happy path, in front of a forgiving audience. Production runs a million times, on every path, in front of your customers, your auditors, and your regulators. The gap between the two is where organizations are quietly accumulating risk, and most of them don't have the instrumentation to see it.

We work with companies in defense, aerospace, medical, and industrial systems: sectors where "the AI did something unexpected" is not an anecdote but an incident report. What follows is what we've learned about where blind agent deployment breaks down, and what it takes to grab the reins without giving up the value.

Where Blind Agent Use Fails

Non-determinism meets systems built for determinism

Traditional software is predictable even when it is wrong: a bug produces the same wrong output for the same input, every time, which is exactly what makes it debuggable. Agents don't work that way. The same ticket, the same prompt, the same tool set can yield a different plan on Tuesday than it did on Monday. When an agent sits inside a transaction chain, updating inventory, issuing refunds, modifying configuration, that variance propagates into systems that were never designed to absorb it (Stack Overflow, Future AGI).

Compounding error across multi-step chains

An agent that is right 95% of the time per step sounds impressive until it runs a ten-step workflow: the chain is now right roughly 60% of the time. Worse, agents rarely fail loudly. They fail plausibly, producing output that looks correct, passes superficial checks, and gets consumed by the next system downstream. By the time anyone notices, the bad data has metastasized (Zartis, MindStudio).

Unbounded blast radius

Give an agent database write access, an email connector, and a payment API "so it can do its job," and you have granted it a blast radius. Prompt injection, poisoned retrieval content, or an ordinary hallucination can turn that access into deleted records, leaked customer data, or money out the door. The industry has already produced its first generation of cautionary tales: agents that wiped production databases, sent commitments to customers no one authorized, and executed instructions embedded in documents they were merely asked to summarize (eWeek, AI Incident Database).

No audit trail, no accountability

When a human makes a bad call, you can ask why. When an agent makes one, most deployments can answer only what happened: not what the model saw, which retrieved context influenced it, or why it chose tool A over tool B. In regulated environments this isn't an inconvenience; it's a compliance failure waiting for its audit. The EU AI Act, ISO/IEC 42001, and sector regulators are converging on the same demand: demonstrable oversight, traceability, and human accountability for automated decisions (ModelOp, ISMS.online).

Silent drift

Models get updated. Providers change behavior between versions. The data your agent operates on shifts. A workflow validated in March can be quietly wrong by September with no code change on your side at all. Without continuous evaluation, you won't know until a customer, or a regulator, tells you (arXiv).

Vulnerabilities replicated at scale

AI-generated code repeats the same exploitable flaws across thousands of systems: an attacker finds the bug once and exploits it everywhere. And even with zero attackers, hallucination never reaches zero; OpenAI's own research shows the training math guarantees a floor of confident error, however capable the model. An agent with permissions will, occasionally, use them wrongly all by itself (arXiv, Computerworld).

Grabbing the Reins: Architecture, Not Vibes

The answer is not to ban agents. The productivity gains are real, and your competitors are capturing them. The answer is to treat agentic AI the way serious engineering organizations treat any powerful, unreliable component: contain it, constrain it, observe it, and design for its failure.

  1. 01

    Draw the autonomy boundary deliberately

    Not every step deserves the same autonomy. Classify each action by consequence: reversible and low-stakes (summarize, draft, categorize) can run free; irreversible or high-stakes (payments, deletions, external commitments, safety-relevant outputs) require a human approval gate or don't get delegated at all. This boundary is an architectural decision, made once and enforced in code, not a per-prompt hope.

  2. 02

    Enforce least privilege at the tool layer

    The agent's permissions should be scoped to the task, not the platform. Read-only by default. Scoped API tokens. Sandboxed execution. Allow-lists for destinations and actions. If a prompt injection succeeds, the damage should be bounded by design, because the credentials the agent holds simply cannot do more.

  3. 03

    Put a deterministic harness around the non-deterministic core

    Wrap agent output in validation the agent cannot talk its way past: schema checks, business-rule assertions, invariant verification, reconciliation against source systems. The LLM proposes; deterministic code disposes. This is the single highest-leverage pattern we implement for clients. It converts "the agent is usually right" into "the system is always safe."

  4. 04

    Make every decision reconstructable

    Log the full trace: inputs, retrieved context, the plan, each tool call and its result, and the final output, correlated end to end. This is what turns an incident from a mystery into a fifteen-minute investigation, and it is precisely what emerging AI governance standards will ask you to produce.

  5. 05

    Evaluate continuously, not once

    Ship agents the way you ship software: with a regression suite. Golden datasets, automated scoring, canary deployments for model or prompt changes, and alerting on quality drift. "It worked in the pilot" is a starting point, not a certification.

  6. 06

    Design the human back in, at the right altitude

    Human-in-the-loop doesn't mean a person rubber-stamping every action until they stop reading. It means placing review where judgment actually matters: at the autonomy boundary, on exception paths, and on statistical samples of routine work. Oversight should be engineered to stay meaningful, not eroded into ceremony.

  7. 07

    Never single-source intelligence

    Enterprises gravitate to one AI vendor for simpler billing and procurement, and it quietly becomes the classic single-source dependency engineering long ago learned to avoid: 81% of enterprise leaders fear AI vendor lock-in, yet only 11% of enterprise groups switched primary vendors in 2025 (Kong, Orq). One outage, one silent model update, or one repricing then hits every dependent workflow at once. Treat vendors as interchangeable inputs behind a routing layer that selects, fails over, and logs (Dataiku). And who selects between vendors? Not another AI, which merely re-creates the dependency one level up, but deterministic software you own, a conclusion research is converging on as well (Frontiers in AI). Under the Fractal Paradigm this is a given: AI is an input, and the deterministic engine decides which input to trust.

The Bottom Line

Control

Bounded autonomy, by design

Agentic AI rewards the organizations that engineer around its failure modes and punishes the ones that trust the demo. The reins are an architectural artifact, not a policy document.

Trust

Every decision traceable

Deterministic guardrails and full traceability convert AI from an unauditable black box into a component your auditors, regulators, and customers can rely on.

Value

Speed without surrender

The companies getting durable value from agents are not the ones who deployed fastest. They are the ones who deployed with the reins firmly in hand.

The architecture that holds the reins.

Under the Fractal Paradigm, the production engine is fully deterministic and AI operates strictly as an input, never an anchor. That is the structural answer to everything on this page.

The Fractal Paradigm

Planning to bring agentic AI into a production system, or already living with one you can't fully see into? Talk to us about an agent-readiness architecture review.

Contact Us