<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Nick Talwar</title>
    <description>The latest articles on DEV Community by Nick Talwar (@talweezy).</description>
    <link>https://dev.to/talweezy</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3117179%2F98df51dc-a114-4e60-9e38-87b83249f2ee.jpeg</url>
      <title>DEV Community: Nick Talwar</title>
      <link>https://dev.to/talweezy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/talweezy"/>
    <language>en</language>
    <item>
      <title>Why AI Agent Pilots Don’t Scale</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Tue, 18 Aug 2026 14:00:00 +0000</pubDate>
      <link>https://dev.to/talweezy/why-ai-agent-pilots-dont-scale-3dl9</link>
      <guid>https://dev.to/talweezy/why-ai-agent-pilots-dont-scale-3dl9</guid>
      <description>&lt;p&gt;The unit economics that break between 100 users and 10,000&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F79u0ga1546n5zugp16re.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F79u0ga1546n5zugp16re.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;One documented enterprise deployment ran its proof of concept for about $1,500 a month in API usage. The results looked strong. Leadership approved full production, and the monthly bill at real-world volume landed just over $1 million. That is a 700X jump from pilot to production, and no business case survives a multiplier like that.&lt;/p&gt;

&lt;p&gt;The case comes from an analysis of enterprise LLM deployments, and while the number represents a worst case, the mechanics behind it are ordinary. At pilot scale, a cost of $0.10 to $0.50 per agent request is easy to absorb and even easier to present as a savings story. At 10,000 users, the same request rate produces a monthly infrastructure bill that makes the original spreadsheet unrecognizable. Most teams run those numbers after the architecture decision is locked, which happens to be the most expensive possible time to learn them.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Multiplier Hiding Inside Every Agent Request
&lt;/h2&gt;

&lt;p&gt;A chatbot query triggers one inference call. An AI agent working through a task plans, calls tools, evaluates results, and loops back when something fails. Gartner’s analysis from earlier this year found that agentic workflows consume between 5 and 30 times more tokens per task than a standard chatbot, with a single user request often triggering 10 to 20 separate model calls behind the scenes.&lt;/p&gt;

&lt;p&gt;Four mechanics drive that multiplier.&lt;/p&gt;

&lt;p&gt;Reasoning loops sit at the center. Every pass through plan, act, and evaluate fires at least one model call, and complex tasks can take dozens of passes before the agent settles on an answer.&lt;/p&gt;

&lt;p&gt;Context accumulates. Agents carry system prompts, tool definitions, and step history into every subsequent call. All of it gets re-sent each time, so the token cost of step twelve includes the freight of steps one through eleven.&lt;/p&gt;

&lt;p&gt;Tool calls stack their own costs on top. Web searches, database queries, and code execution each add latency and expense beyond the model call that triggered them.&lt;/p&gt;

&lt;p&gt;Retries compound everything above. When a tool returns an unexpected schema or an output fails validation, the agent tries again. Each retry is a fresh trip through the loop, and you pay for the attempt whether the task succeeds or fails.&lt;/p&gt;

&lt;p&gt;One documented example makes the point better than any abstraction. A coding agent assigned to fix a one-character typo in a README &lt;a href="https://nosana.com/blog/the-real-cost-of-ai-agents/" rel="noopener noreferrer"&gt;consumed over 21,000 input tokens&lt;/a&gt; listing issues, branching, committing, and opening a pull request. A trivial fix, wrapped in an expensive workflow.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cheaper Tokens, Bigger Bills
&lt;/h2&gt;

&lt;p&gt;Per-token pricing has collapsed. Inference for a GPT-3.5-level model fell from $20 per million tokens in late 2022 to $0.07 by October 2024, roughly a 280x drop in two years, and Gartner projects inference on trillion-parameter models will cost 90 percent less by 2030. Enterprise AI bills keep rising anyway, because total token consumption is growing faster than prices are falling. More capable agents run more reasoning loops, call more tools, and burn more tokens per completed task. Capability and cost move together by design, since quality in these systems comes from iteration rather than single-pass generation.&lt;/p&gt;

&lt;p&gt;Uber ran into the same problem at scale. The company rolled out agentic coding tools to roughly 5,000 engineers, and heavy users racked up between $500 and $2,000 per month each, burning through the annual AI budget in about four months. The pilot had only ever tested one engineer, and nobody had modeled what concurrency at that scale would cost.&lt;/p&gt;

&lt;h2&gt;
  
  
  Run the Production Math Before the Architecture Locks
&lt;/h2&gt;

&lt;p&gt;The forecast that prevents all of this takes about an afternoon to build. Start with cost per completed task from your pilot data, repriced at full production rates rather than free-tier or discounted credits. Multiply by the ratio of production users to pilot users. Then apply a burstiness factor of 3 to 5x, because production traffic spikes and runs in parallel in ways a pilot never exercises. If the resulting number breaks the business case, a spreadsheet is a far cheaper place to find out than an invoice.&lt;/p&gt;

&lt;p&gt;Cost per successful task is the metric worth anchoring on. Cost per prompt and cost per session both hide failure. An agent that completes tasks cheaply but fails half the time and requires human cleanup costs far more than its dashboard suggests, and that gap stays invisible until you measure completion rather than activity.&lt;/p&gt;

&lt;p&gt;In my work with client teams, the forecast conversation almost never happens at this stage. The pilot generates momentum, the demo impresses the steering committee, and the architecture gets approved on pilot economics. Everything downstream inherits that assumption.&lt;/p&gt;

&lt;h2&gt;
  
  
  Decide Which Steps Actually Need an Agentic Loop
&lt;/h2&gt;

&lt;p&gt;Autonomous reasoning is the most expensive pattern in the stack, and most workflows only need it in a few places. Research on enterprise deployments suggests small language models can handle 60 to 80 percent of agent tasks at 10 to 30 times lower inference cost, with frontier models reserved for the steps that require genuinely complex reasoning.&lt;/p&gt;

&lt;p&gt;A routing layer that classifies each step and sends classification, formatting, and retrieval work to smaller models can cut costs by 60 percent or more without touching quality where it matters. Caching does similar work on the input side. If the agent starts every task with the same system prompt and knowledge base, prompt caching can reduce input costs by roughly 90 percent. Retry caps close the remaining leak. Classify errors so some warrant a retry, some escalate to a human, and some fail gracefully before the loop becomes a line item.&lt;/p&gt;

&lt;p&gt;The work is unglamorous. Walk the workflow step by step and decide where iteration earns its cost.&lt;/p&gt;

&lt;h2&gt;
  
  
  Build Cost Governance Before the Quarterly Surprise
&lt;/h2&gt;

&lt;p&gt;Gartner predicts that more than 40 percent of agentic AI projects will be cancelled by the end of 2027, with escalating costs and unreliable outputs as leading causes. Most of those cancellations will trace back to the same sequence. The pilot succeeds, the deployment scales, the bill arrives, and the cost conversation happens under pressure with a CFO reading line items aloud.&lt;/p&gt;

&lt;p&gt;Governance moves that conversation earlier, where it costs almost nothing. Track spend per task, per step, and per tool call, since aggregate metrics hide the one workflow that’s eating the budget. Set alerts on cost per successful task so anomalies surface in days instead of at quarter close. And assign an owner, because a cost that’s technically everyone’s job doesn’t get caught by anyone.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>businessstrategy</category>
      <category>technology</category>
      <category>aiagents</category>
    </item>
    <item>
      <title>The Missing Piece Killing Your AI Agents</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Tue, 11 Aug 2026 14:00:00 +0000</pubDate>
      <link>https://dev.to/talweezy/the-missing-piece-killing-your-ai-agents-3mge</link>
      <guid>https://dev.to/talweezy/the-missing-piece-killing-your-ai-agents-3mge</guid>
      <description>&lt;p&gt;Why production agents fail on information that never made it into any system&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F56be8idxrkfsuvz3osj3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F56be8idxrkfsuvz3osj3.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An agent can query the right table and return the right number for every account except one, because the exception on that account lives in an analyst’s memory, and no table records it.&lt;/p&gt;

&lt;p&gt;Teams debugging this kind of failure usually start with the model. They tune prompts or switch providers, and the error rate barely moves, because the model was never missing intelligence. It was missing the fact.&lt;/p&gt;

&lt;p&gt;In my work as a fractional CTO, this is the most common root cause I find when enterprise agents produce wrong outputs in production. The information required to do the job correctly exists. It exists in undocumented form, distributed across the memories and judgment calls of the people who have been doing the work.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where the Knowledge Actually Lives
&lt;/h2&gt;

&lt;p&gt;Every company runs on a layer of knowledge no system captures. The business rule each new hire learns from their manager in week three. The understanding that two product names in two different databases refer to the same SKU, reconciled by whoever pulls the report. The approval that officially requires three signatures but in practice needs one phone call.&lt;/p&gt;

&lt;p&gt;Humans handle this layer so fluidly that most organizations forget it exists. The analyst who knows the pricing exception applies it without thinking. An agent querying the same systems has no idea the exception exists and no way to discover it, because the reconciliation happens in someone’s head.&lt;/p&gt;

&lt;h2&gt;
  
  
  Four Context Failure Modes
&lt;/h2&gt;

&lt;p&gt;Across the agent deployments I’ve audited, four failure modes account for most wrong outputs in production.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Definitions stored as institutional memory&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Finance counts a customer as active if they’ve paid in the last 90 days. Sales counts anyone with an open opportunity. Both definitions are correct inside their own department, and the difference lives in a shared understanding that never made it into a schema. An agent asked for the churn rate picks one of them and produces a number half the company will dispute.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Entity identity that resolves differently across systems&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The ERP calls it PRO-ENT-2. The billing platform calls it Enterprise Pro v2. Everyone who works with both systems knows they’re the same product, and no table anywhere records that fact. Agents join on what the data says, so revenue for one product splits into two.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Process knowledge that was never written down&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The documented workflow says contracts route through legal. The actual workflow routes anything under $50K through a template the paralegal maintains, a shortcut established years ago and passed along verbally. An agent following the documented process produces work that is technically correct and operationally useless.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Outputs that cannot be traced to a source&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When a senior analyst approves an exception, the reasoning lives in her judgment. Nothing records why. When an agent later makes a similar call, nobody can audit the chain, because the precedent it needed was never a record. Provenance breaks the moment a decision depends on knowledge with no source of truth.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Gap Between Having Data and Using It
&lt;/h2&gt;

&lt;p&gt;The industry numbers describe the same distance. &lt;a href="https://datahub.com/guides/2026-context-management-report/" rel="noopener noreferrer"&gt;DataHub’s State of Context Management Report 2026&lt;/a&gt;, which surveyed 250 IT and data leaders, found that 88% claim to have fully operational context platforms, while 61% frequently delay AI initiatives due to a lack of trusted data.&lt;/p&gt;

&lt;p&gt;Read those two numbers together and the picture sharpens. Nearly nine in ten organizations believe they have the infrastructure. Six in ten keep delaying launches on top of it. The distance between “we have the data” and “AI can use the data” is where most enterprise AI budgets currently leak, and it rarely shows up as a line item because nobody owns it.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Different Kind of Investment
&lt;/h2&gt;

&lt;p&gt;Investors have started pricing this gap. Tribal, founded by Salesforce, Wix, and Spot.io veterans, raised a $10 million seed round in May to build agents on a metadata fabric that maps a system of record’s business rules and dependencies before any agent acts. The founding team’s read of the market matches what I see inside companies. Building AI prototypes is easy. Shipping trusted change inside a live enterprise system is brutally hard, and the difficulty concentrates in the context layer underneath the model.&lt;/p&gt;

&lt;p&gt;Most AI roadmaps are built to buy tools and integrate APIs. Closing the context gap looks different. It means interviewing the analyst who carries the pricing exceptions and encoding what she knows. It means building the entity resolution table that finally reconciles PRO-ENT-2 with Enterprise Pro v2. Someone has to write down the actual approval workflow, shortcuts included, and decide which ones the agent is allowed to follow. This is slow, unglamorous work that involves calendars more than compute.&lt;/p&gt;

&lt;h2&gt;
  
  
  Start With What Would Break
&lt;/h2&gt;

&lt;p&gt;A practical first step I give clients requires no vendor. For each workflow an agent will touch, ask what would break if the most tenured person on that team left tomorrow. The answers form a map of your undocumented knowledge, and that map predicts where your agents will fail before you deploy them.&lt;/p&gt;

&lt;p&gt;Then fund the extraction work explicitly. Give it an owner and a deadline, the same way you would any infrastructure project, because that is what it is. Encode the definitions, resolve the entities, and record the reasoning behind exceptions so outputs can be traced.&lt;/p&gt;

&lt;p&gt;Your org chart is part of your data architecture. Every retirement and every reorg deletes records no backup will recover. Agents make that loss visible because they fail where humans compensated. The undocumented layer was always a liability. Agents just turned it into an error rate you can measure.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>datastrategy</category>
      <category>enterprisetechnology</category>
      <category>aiagents</category>
    </item>
    <item>
      <title>Agentic AI’s Invisible Invoice</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Tue, 04 Aug 2026 14:00:00 +0000</pubDate>
      <link>https://dev.to/talweezy/agentic-ais-invisible-invoice-1hc7</link>
      <guid>https://dev.to/talweezy/agentic-ais-invisible-invoice-1hc7</guid>
      <description>&lt;p&gt;Why agentic architectures multiply inference spend, and how to price them before deployment&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F17usgw96aotq3oe09ila.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F17usgw96aotq3oe09ila.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Recently, a coding agent was asked to fix a one-character typo in a README file (&lt;a href="https://nosana.com/blog/the-real-cost-of-ai-agents/" rel="noopener noreferrer"&gt;true story&lt;/a&gt;, bear with me). It listed the repository’s open issues, created a branch, committed the change, and opened a pull request, &lt;a href="https://nosana.com/blog/the-real-cost-of-ai-agents/" rel="noopener noreferrer"&gt;consuming more than 21,000 input tokens&lt;/a&gt; along the way. One keystroke of value, a small novel’s worth of compute.&lt;/p&gt;

&lt;p&gt;Stories like this are no longer entertaining; in 2026 they are line items on an ever expanding bill. The economics of a standard LLM deployment and the economics of an agentic deployment share almost nothing beyond the vendor invoice, and most companies discover the difference after the architecture decision has already been made.&lt;/p&gt;

&lt;h2&gt;
  
  
  One Request Is Never One Call
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.gartner.com/en/newsroom/press-releases/2026-03-25-gartner-predicts-that-by-2030-performing-inference-on-an-llm-with-1-trillion-parameters-will-cost-genai-providers-over-90-percent-less-than-in-2025" rel="noopener noreferrer"&gt;Gartner’s March 2026 analysis&lt;/a&gt; puts agentic workloads at 5 to 30 times more tokens per task than a standard chatbot, and typical production agents land between ten and twenty model calls for a single user request.&lt;/p&gt;

&lt;p&gt;The arithmetic worsens with ambition. RAG pipelines ship large context windows with every query. Always-on monitoring agents scan logs, inboxes, and market data around the clock, consuming compute whether or not a human is watching. These background workloads barely existed in enterprise budgets two years ago. Today they represent a growing share of inference spend that most finance teams never approved, because nobody itemized it.&lt;/p&gt;

&lt;p&gt;At 10,000 users, a single agentic feature can run between $150,000 and $750,000 per month. The pilot that looked viable at fifty users was measuring a different system. The code did not change, and neither did the model. Volume changed, and volume turned out to be the entire story.&lt;/p&gt;

&lt;p&gt;There is even a rough way in which this hits. &lt;a href="https://www.techaheadcorp.com/blog/inference-cost-explosion/" rel="noopener noreferrer"&gt;Analyses of failed agent deployments&lt;/a&gt; place the cost cliff between 500 and 5,000 users, the range where cloud API pricing stops making sense and teams face a forced migration to self-hosted GPUs they never planned for. One documented startup watched its unit economics invert between 700 and 1,000 concurrent users and killed the product.&lt;/p&gt;

&lt;p&gt;The system worked technically. It failed as a business, and the failure was baked in at the whiteboard stage.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Context Tax
&lt;/h2&gt;

&lt;p&gt;Token prices are falling, which makes the spending pattern look irrational until you decompose it. &lt;a href="https://nosana.com/blog/the-real-cost-of-ai-agents/" rel="noopener noreferrer"&gt;According to recent analysis&lt;/a&gt;, inference for a GPT-3.5-class model cost $20 per million tokens in 2022 and roughly $0.07 by October 2024, a 280x drop. Yet average enterprise AI budgets grew from about $1.2 million a year in 2024 to $7 million in 2026.&lt;/p&gt;

&lt;p&gt;The bills kept climbing after the discount had already landed, which tells you the driver was never price. Consumption is outrunning it, by a wide margin.&lt;/p&gt;

&lt;p&gt;The biggest driver hides inside the agent loop itself. Every reasoning step re-sends the system prompt, the tool definitions, the instructions, and the accumulated conversation state.&lt;/p&gt;

&lt;p&gt;Companies are paying, repeatedly, for the model to reread material it has already processedAdd output pricing, which runs several times higher than input pricing at most providers, and any workflow that drafts long responses at each step compounds the problem further.&lt;/p&gt;

&lt;h2&gt;
  
  
  Vendor Pricing Follows the Cloud Playbook
&lt;/h2&gt;

&lt;p&gt;There is a second reason the bills feel survivable right now. Current model pricing is subsidized. Inference providers are pricing below cost to win workloads, a strategy that closely resembles what cloud providers ran a decade ago. Discounted compute locked customers into architectures, and once the architectures were immovable, rates normalized. The finance teams that were surprised by cloud cost escalation in 2017 and 2018 remember how that conversation went.&lt;/p&gt;

&lt;p&gt;The early signals are already visible. &lt;a href="https://www.techaheadcorp.com/blog/inference-cost-explosion/" rel="noopener noreferrer"&gt;One industry analysi&lt;/a&gt;s tracked a 4x increase in OpenAI pricing over twelve months for certain workloads. Whether that exact figure holds across providers matters less than the direction. Companies building agentic systems on today’s subsidized rates are underwriting their unit economics with someone else’s venture capital, and that subsidy carries an expiration date nobody will announce in advance.&lt;/p&gt;

&lt;p&gt;The playbook worked the first time. There is little reason to expect a rewrite.&lt;/p&gt;

&lt;h2&gt;
  
  
  Building the Cost Model Into the Architecture
&lt;/h2&gt;

&lt;p&gt;Research suggests small language models can handle 60 to 80 percent of enterprise agent subtasks at 10 to 30 times lower inference cost. Classification, formatting, and retrieval rarely need a frontier model, and a router that reserves expensive reasoning for the steps that genuinely require it changes the cost curve more than any pricing negotiation will.&lt;/p&gt;

&lt;p&gt;The next lever is trimming and caching aggressively: pass each step only the context it needs rather than the entire history, and cache tool results and semantically similar responses so the system stops paying to generate the same answer twice. Since re-sent context drives the majority of agent spend, this is usually where the largest savings sit.&lt;/p&gt;

&lt;p&gt;Capping the loops matters just as much. Classifying errors lets the agent know which failures deserve a retry and which should escalate to a human. An uncapped retry policy is an uncapped budget.&lt;/p&gt;

&lt;p&gt;None of this holds without governance in place early. The emerging discipline of FinOps for AI exists for exactly this reason: tracking spend per task, per step, and per tool call matters because aggregate monthly numbers hide the one workflow consuming 40% of the budget on its own. Assigning an owner and setting thresholds now, while the numbers are small enough to discuss calmly, means that when the CFO eventually asks what an agent costs, someone has an answer more specific than the invoice total.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where the Loop Earns Its Keep
&lt;/h2&gt;

&lt;p&gt;None of this argues against agents. Where a loop replaces hours of skilled work, twenty model calls are a bargain at almost any token price. The discipline lies in knowing which workflows earn their loops and which are burning compute to move a comma.&lt;/p&gt;

&lt;p&gt;The architecture decision and the budget decision are the same decision. Making them separately just delays the meeting where they merge and the invoice dictates the true outcome.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>aiagents</category>
      <category>engineeringleadership</category>
      <category>technology</category>
    </item>
    <item>
      <title>When Engineers Manage Agents and Managers Engineer</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Tue, 28 Jul 2026 14:00:00 +0000</pubDate>
      <link>https://dev.to/talweezy/when-engineers-manage-agents-and-managers-engineer-1pea</link>
      <guid>https://dev.to/talweezy/when-engineers-manage-agents-and-managers-engineer-1pea</guid>
      <description>&lt;p&gt;Redesigning the AI engineering team structure before unclear roles slow everyone down&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fornugl1jcb0li7l8x522.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fornugl1jcb0li7l8x522.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Engineers working with AI tools now spend more hours reviewing generated code than writing new code. &lt;a href="https://www.digitalapplied.com/blog/ai-coding-tool-adoption-2026-developer-survey" rel="noopener noreferrer"&gt;Digital Applied’s Q1 2026 survey of 2,847 developers recorded the crossover&lt;/a&gt;, with review overtaking writing as the largest AI-assisted time sink after writing held a four-hour lead as recently as 2024.&lt;/p&gt;

&lt;p&gt;Over the same period engineering managers have moved in the opposite direction. They are now more technically hands-on than they have been in a decade as Agentic AI lowers the barrier to direct code contribution.&lt;/p&gt;

&lt;p&gt;Both trends meet in the middle of the org chart. The division of responsibilities between engineer and EM was doing structural work that few leaders ever named, and coding agents are dissolving it with nothing arriving to replace it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Job Descriptions Stopped Matching the Work
&lt;/h2&gt;

&lt;p&gt;Look at how a senior engineer on an AI-heavy team actually spends a Tuesday. She kicks off two agent runs before standup, reviews a stack of generated pull requests mid-morning, fixes a prompt configuration that started producing flaky tests, and switches contexts across three tools before lunch.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://newsletter.pragmaticengineer.com/p/the-impact-of-ai-on-software-engineers-2026" rel="noopener noreferrer"&gt;The Pragmatic Engineer’s 2026 survey&lt;/a&gt; of over 900 engineers and engineering leaders captured exactly this. Engineers orchestrate more and context-switch more often, managers can be more hands-on, and the survey’s authors flagged the conclusion themselves. The engineer and manager roles are becoming similar.&lt;/p&gt;

&lt;p&gt;Managers are converging from the other side. An EM can now ship a fix or prototype a feature between one-on-ones, and plenty of them do. The technical distance that used to accumulate after two years in management has stopped accumulating.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Old Division Was the Long Pole
&lt;/h2&gt;

&lt;p&gt;The classic split assigned implementation quality to engineers and gave managers allocation, priorities, and people. AI broke this in both directions.&lt;/p&gt;

&lt;p&gt;When agents produce the majority of a feature’s code, the person directing them is making allocation decisions. Which tasks go to the machine, which stay human, how much scrutiny each output deserves. That used to be manager territory. And when a manager merges their own AI-assisted fix, they have re-entered the codebase their role was designed to stay out of.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Role Confusion Costs
&lt;/h2&gt;

&lt;p&gt;One client I worked with last year had three teams improving the same AI workflow at the same time.&lt;/p&gt;

&lt;p&gt;Engineering upgraded the model to reduce latency. The AI team refined prompts and retrieval settings to improve answer quality. Operations updated the business rules the agent was expected to follow.&lt;/p&gt;

&lt;p&gt;Each team shipped good changes. Each team achieved its own goals. A month later, overall accuracy had dropped.&lt;/p&gt;

&lt;p&gt;No single change caused the problem. It was the interaction between all three. Everyone was optimizing their part of the system, but no one owned the system itself.&lt;/p&gt;

&lt;p&gt;We uncovered it during a retrospective and established a single owner for end-to-end evaluation, along with shared metrics across the teams.&lt;/p&gt;

&lt;p&gt;That problem happened to be visible. Most aren’t.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://arxiv.org/abs/2510.10165" rel="noopener noreferrer"&gt;A Tilburg University study of Copilot adoption in open-source projects &lt;/a&gt;found core developers reviewing 6.5% more code while their original output dropped 19%. &lt;a href="https://survey.stackoverflow.co/2025/ai/" rel="noopener noreferrer"&gt;Stack Overflow’s 2025 survey&lt;/a&gt; found 45% of developers citing time-consuming debugging of AI-generated code as a top frustration. And in a &lt;a href="https://smartbear.com/ai-software-quality-gap-report/" rel="noopener noreferrer"&gt;March 2026 SmartBear survey of 273 software leaders&lt;/a&gt;, 70% said application quality had already degraded as AI accelerated development.&lt;/p&gt;

&lt;p&gt;Those numbers tell a consistent story. Code production is accelerating faster than organizational ownership.&lt;/p&gt;

&lt;p&gt;When an engineering manager merges agent-generated code and a production incident surfaces two weeks later, who owns the postmortem? The engineer who approved the pull request? The team that tuned the prompts? The platform team that selected the model? The product manager who defined the workflow?&lt;/p&gt;

&lt;p&gt;Teams without a clear answer pay for AI twice. Once for the tokens, and again for the coordination overhead of figuring out whose responsibility the output became.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Redesign That Fits on One Page
&lt;/h2&gt;

&lt;p&gt;The fix requires less machinery than most reorgs. In my work with engineering teams adopting agentic workflows, four decisions cover most of the confusion.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Name one accountable reviewer per code surface.&lt;/strong&gt; Agent-generated pull requests get a single human owner, assigned by code area and written into the CODEOWNERS.md file. That owner can be an engineer or an EM. What matters is that exactly one name appears, so accountability for quality survives the increase in volume.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Give manager code contribution explicit rules.&lt;/strong&gt; If an EM ships code, it goes through the same review path as everyone else’s, and its scope stays bounded. Prototypes, internal tooling, and spikes work well. Critical-path features do not, because a manager who owns production code has become an engineer with a reporting-line problem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Put orchestration in the engineer job description.&lt;/strong&gt; Hours spent directing agents, writing evals, and maintaining prompt configurations should count as engineering work in performance reviews. If promotion criteria still reward hand-written lines, engineers will optimize for the old job while the actual work goes unmeasured.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Rebuild the EM role around what AI left behind.&lt;/strong&gt; Stakeholder negotiation, cross-team decisions, career development, and the judgment calls agents consistently fumble. Those responsibilities gained value as everything around them got automated, and a manager whose calendar reflects that is doing the redesigned job instead of competing with their own engineers for the review queue.&lt;/p&gt;

&lt;p&gt;Then revisit the whole arrangement quarterly. The tools are changing fast enough that a role definition written in January describes a different workflow by June.&lt;/p&gt;

&lt;p&gt;An org chart is a claim about how work gets done. Each quarter the chart goes unedited while the work underneath changes, the claim gets a little less true. The teams outperforming with AI-assisted delivery share one habit that costs nothing to copy; they wrote down what changed. Engineers who manage agents, managers who touch code, and one name on every review.&lt;/p&gt;

&lt;p&gt;Role convergence turns out to be a design problem, and design problems reward the leader willing to name them.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>engineeringleadership</category>
      <category>teamstructure</category>
      <category>softwaredevelopment</category>
    </item>
    <item>
      <title>Your Agent Platform Choice Is a Decade-Long Bet</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Tue, 21 Jul 2026 13:01:10 +0000</pubDate>
      <link>https://dev.to/talweezy/your-agent-platform-choice-is-a-decade-long-bet-c4k</link>
      <guid>https://dev.to/talweezy/your-agent-platform-choice-is-a-decade-long-bet-c4k</guid>
      <description>&lt;p&gt;Where control is accumulating in the Agentic AI stack, and how to choose on purpose&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdc6xjra8lfel09oq334t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdc6xjra8lfel09oq334t.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For about fifteen years, the force that decided where enterprise value collected had a name. Dave McCrory called it data gravity in 2010, and the idea aged well.&lt;/p&gt;

&lt;p&gt;Applications drift toward data because moving data is slow, costly, and risky. Whoever controlled the data layer controlled the decisions that stacked on top of it, from analytics to applications to budgets.&lt;/p&gt;

&lt;p&gt;That logic still holds, but what reaches for your data has changed. The dashboards and pipelines that used to sit beside the warehouse are giving way to agents, and an agent does not stay next to the data. It runs on some platform, reasons over whatever it can reach, and moves results between systems on its own.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The platform you pick to run your agents is taking over the position the data layer used to hold. It is becoming the thing that owns the relationship with your data.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That is a bigger decision than it looks, and most teams are making it without noticing.&lt;/p&gt;

&lt;p&gt;Once those walls go up, the position is expensive to win back, which is what makes this a decade-long bet and not a procurement round.&lt;/p&gt;

&lt;h2&gt;
  
  
  Agent gravity is the newer force
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://tomtunguz.com/agent-gravity/" rel="noopener noreferrer"&gt;Tomasz Tunguz called this shift “agent gravity” in a recent essay&lt;/a&gt;. The argument runs parallel to the old one. Agents demand enormous compute, that compute is a large and growing business, and the platforms hosting agent workloads will fight to keep them. The more agents and data flowing through a platform, the heavier its pull.&lt;/p&gt;

&lt;p&gt;Agents are turning into the main surface through which people and systems touch enterprise data.&lt;/p&gt;

&lt;p&gt;An employee asks an agent instead of opening a dashboard. A customer interacts with an agent instead of a form. Other automated systems call an agent instead of hitting a database directly.&lt;/p&gt;

&lt;p&gt;Once that becomes the default path, the platform running the agent sits closer to the value than the platform storing the data. Proximity to the work now accumulates more leverage than custody of the bytes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why running the agents is where the moat forms
&lt;/h2&gt;

&lt;p&gt;Running an agent is expensive, and that expense is the point. Inference at scale, orchestration, memory, tool calls, retries, and the guardrails that stop an agent from doing something costly all burn compute, and compute is the business these platforms are in.&lt;/p&gt;

&lt;p&gt;Tunguz has written separately about the harness, the orchestration and control layer that turns a raw model into something an enterprise can trust. That harness is where the hard engineering lives now. Whoever owns it owns the relationship with everything the agent reads, writes, and moves.&lt;/p&gt;

&lt;p&gt;This is why the platform decision outlasts the model decision. Models will keep leapfrogging each other on every leaderboard.&lt;/p&gt;

&lt;p&gt;The harness around them, the place your agents are configured, governed, and run, is sticky in a way individual models never were. I have seen an arrangement like this start as one convenient integration and end, two years later, with the bulk of a company’s analytical work running somewhere nobody picked on purpose.&lt;/p&gt;

&lt;h2&gt;
  
  
  The doors are already closing
&lt;/h2&gt;

&lt;p&gt;Incumbents understand the dynamic, and they are not waiting for you to notice it. In April, Microsoft removed the compatibility mode that let Power BI query Databricks metric views through the standard connector, which broke the reports that relied on it (the &lt;a href="https://learn.microsoft.com/en-us/azure/databricks/release-notes/product/2026/april" rel="noopener noreferrer"&gt;release notes&lt;/a&gt; state it without ceremony).&lt;/p&gt;

&lt;p&gt;At Build 2026, Microsoft positioned Fabric as the data platform for its Copilot and agent ecosystem, wired Fabric IQ into Microsoft 365 Copilot, and shipped Agent Skills that let agents build models and reports directly on governed Fabric data.&lt;/p&gt;

&lt;p&gt;The behavior repeats across the field. Snowflake pushes Cortex, Google leans on BigQuery, and every one of them wants your agents reasoning over data inside its own walls.&lt;/p&gt;

&lt;p&gt;The friction a vendor removes inside its own stack becomes friction everywhere else. That asymmetry is the gravity well, and it is built on purpose.&lt;/p&gt;

&lt;h2&gt;
  
  
  The question worth asking
&lt;/h2&gt;

&lt;p&gt;This reframes what an evaluation should measure. Benchmark scores age in weeks, and a model that tops a chart today will sit mid-table by the next release. Tuning a ten-year decision around this quarter’s numbers misreads the timeline.&lt;/p&gt;

&lt;p&gt;The operators I work with tend to ask a sharper question once they see the mechanics.&lt;/p&gt;

&lt;p&gt;Which layer of the stack will own the relationship with our data over the next five to ten years? A company that stores its customer data in one system and runs its agents through another has already answered that question, whether it meant to or not. It handed the relationship to whoever controls the agent runtime, and it did so without holding a meeting about it.&lt;/p&gt;

&lt;p&gt;Three checks separate a deliberate choice from an accidental one. First, can your agents read and write across platforms, or does every convenient path keep everything inside one vendor? Second, when an agent copies or moves data, who holds the audit trail and the off switch? Third, if you had to move your agent workloads to a different platform in three years, what would break, and what would it cost?&lt;/p&gt;

&lt;p&gt;When the honest answer to the third question is that nobody has ever priced it, the platform has already priced it for you.&lt;/p&gt;

&lt;h2&gt;
  
  
  Make the bet on purpose
&lt;/h2&gt;

&lt;p&gt;None of this argues for paralysis. Single-vendor stacks are convenient, and convenience earns its keep when a team is small and shipping fast. The narrower point is the one worth holding onto. The choice of where your agents run is compounding into control over your data, and that control is hard to win back once a vendor has built the gravity well around it.&lt;/p&gt;

&lt;p&gt;Pick with open eyes, and price the exit before you need it. A platform decision you file under tactical has a habit of turning into the most strategic call you made all decade.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>aiagents</category>
      <category>enterprisearchitecture</category>
      <category>datastrategy</category>
    </item>
    <item>
      <title>What Your AI and Agent Dashboard is Hiding</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Wed, 15 Jul 2026 12:31:01 +0000</pubDate>
      <link>https://dev.to/talweezy/what-your-ai-and-agent-dashboard-is-hiding-58m0</link>
      <guid>https://dev.to/talweezy/what-your-ai-and-agent-dashboard-is-hiding-58m0</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ftdv4getjjjny4wmsx6p6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ftdv4getjjjny4wmsx6p6.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There is a version of the enterprise AI story told in board meetings, and a version told in weekly standups, and the uncomfortable truth is that both are accurate.&lt;/p&gt;

&lt;p&gt;In the board meeting, the chart goes up and to the right. Adoption is up, usage is up, time-to-first-output is down. Agents are running, employees are experimenting, and the company appears to have crossed from AI aspiration into Agentic AI execution. Nobody is lying. The chart is real.&lt;/p&gt;

&lt;p&gt;In the standup, sales says the AI-generated account briefs are useful, after someone verifies the facts. Support says the agent drafts good responses, except the policy-sensitive ones, which is to say the ones that matter. Engineering says coding agents accelerate scaffolding, and that senior engineers just lost most of a sprint untangling an AI-generated migration that passed review and failed in staging. Operations says the workflow agent handles the happy path, and that when it doesn’t, someone spends two days reconstructing what the agent actually did, which systems it touched, what data it relied on, why it made the call it made, because nothing was built to replay it.&lt;/p&gt;

&lt;p&gt;The temptation is to decide one group is wrong: the executives are high on their own supply, or the operators are foot-dragging. Neither. They are looking at different layers of the same system. Executives see the application layer. Operators live in the integration layer. And only one of those layers makes it onto the dashboard.&lt;/p&gt;

&lt;p&gt;That is the abstraction error at the center of most enterprise AI programs, and it is worth being precise about, because the companies that fix it first are going to be very hard to catch.&lt;/p&gt;

&lt;h2&gt;
  
  
  Production Is Not Absorption
&lt;/h2&gt;

&lt;p&gt;Dashboards measure what is easy to instrument: users, prompts, drafts, summaries, agent runs completed, time saved to first output. None of these numbers is fake. All of them measure the same thing, AI production, and production was never in doubt.&lt;/p&gt;

&lt;p&gt;Producing more output faster is the entire point of the technology. Celebrating it is like celebrating that the printing press produces pages.&lt;/p&gt;

&lt;p&gt;The enterprise question is absorption: can the organization convert that output into trusted work at lower total cost and risk? Because a draft is not a closed deal, a generated pull request is not shipped software, and an answer is not trust. Every one of those gaps gets closed by humans, and the dashboard is silent about all of it.&lt;/p&gt;

&lt;p&gt;The model is fast. The company may not be. A dashboard that measures only the model will systematically overstate the company.&lt;/p&gt;

&lt;h2&gt;
  
  
  The AI and Agent Cleanup Tax
&lt;/h2&gt;

&lt;p&gt;The missing line item deserves a name: the &lt;strong&gt;AI cleanup tax&lt;/strong&gt;, the human effort required to turn AI output into something the business can actually stand behind.&lt;/p&gt;

&lt;p&gt;It would be convenient if this tax were small. It is not. The mistake is imagining it as light editing, a fact-check here, a rewrite there. In practice, the expensive version looks like this:&lt;/p&gt;

&lt;p&gt;A coding agent opens a pull request that compiles, passes tests, yet misunderstands a core architectural assumption. A senior engineer, your scarcest resource, spends a day and a half finding that out, because the failure isn’t in any single line; it’s in the intent.&lt;/p&gt;

&lt;p&gt;An agent updates records across the CRM and a downstream billing system. Three weeks later the numbers don’t reconcile. Now someone is doing forensic archaeology across two systems of record, with no execution trace, trying to determine which of four hundred automated writes was wrong and whether the error propagated.&lt;/p&gt;

&lt;p&gt;A support agent gives a customer an answer that touches a regulatory boundary. Compliance asks the only questions compliance ever asks: where did this come from, what policy did it rely on, and can you show me? If the honest answer is “we can’t reconstruct it,” the cleanup tax on that single output is measured in days of legal and engineering time, and in the awkward decision to pull the agent back from anything that matters.&lt;/p&gt;

&lt;p&gt;This is the crucial point: the tax doesn’t hide because it’s small. It hides because it’s &lt;em&gt;misattributed&lt;/em&gt;. It shows up as debugging, as review, as reconciliation, as “just being careful”, as ordinary work done by your most senior people. It never shows up as a cost of the AI program, so the AI program books the time savings and someone else’s budget absorbs the verification. The board sees a 40% reduction in time-to-draft; the workflow sees a 5% improvement in cycle time. The gap between those two numbers is the tax, and today almost nobody is measuring it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Trust Is the Expensive Part
&lt;/h2&gt;

&lt;p&gt;Why does this pattern repeat everywhere? Because AI is unusually good at making the visible part of knowledge work cheap. Drafting, summarizing, classifying, generating, the demo-friendly layer. But that was never the expensive part of enterprise work. The expensive part is trust: can I send this to a customer, ship this code, make this decision, and defend it in front of compliance, legal, procurement, or the board?&lt;/p&gt;

&lt;p&gt;Trust is not a prompt problem. It is a system problem. It requires context, governed data access, policy gates, evaluation against real cases, observability, replayable execution traces, human review at the right points, and clear ownership. The value of enterprise AI does not come from the model; it comes from the operating system around the model, and that operating system is precisely what the first-generation dashboard leaves out.&lt;/p&gt;

&lt;p&gt;Agents raise the stakes on all of this, because an agent is not an interface, it is a workflow participant. It doesn’t just answer; it acts, retrieves, decides, routes, updates, escalates, commits changes into systems of record. Which means the cleanup tax escalates with capability: when an agent drafts, the tax is editorial; when it writes to systems, the tax is operational; when it touches clinical, financial, or legal workflows, the tax is risk.&lt;/p&gt;

&lt;p&gt;“Agent runs completed” is therefore a dangerously shallow metric. Completion is not correctness, correctness is not trust, and the right question is not &lt;em&gt;did the agent run&lt;/em&gt; but &lt;em&gt;did it complete the workflow correctly&lt;/em&gt;, &lt;em&gt;with the right context, under the right controls, at lower total cost than the process it replaced?&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Cost Per Trusted Output
&lt;/h2&gt;

&lt;p&gt;The board does not need less AI measurement. It needs a dashboard built around four questions: What did the system produce? What did humans have to do before it became usable? What happened downstream? And can we prove it?&lt;/p&gt;

&lt;p&gt;The second question is the one nearly everyone skips, which is why model output and business outcome refuse to correlate on so many dashboards. The bridge between them is rework, and rework is measurable: edit distance between raw and approved output, regeneration rates, rejection rates, review latency, exception and escalation rates, policy-block events, manual handoffs, downstream acceptance. If 600 of 1,000 generated support responses need material edits, that is not an anecdote. If reps trust 40 of 200 AI account plans enough to use, that is not a vibe. If a coding agent opens 50 pull requests and senior review time doesn’t fall, that is a system telling you exactly where it is broken.&lt;/p&gt;

&lt;p&gt;All of it rolls up into one economic unit. Not cost per token. Not cost per prompt. Not cost per draft.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cost per trusted output.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That is the number that connects the AI program to the P&amp;amp;L, the number that survives contact with a skeptical CFO, and the number that, once you start driving it down, turns AI from a line item into a compounding advantage.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Roadmap Writes Itself
&lt;/h2&gt;

&lt;p&gt;Here is the payoff for doing the harder measurement: once the cleanup tax is visible, it stops being demoralizing and becomes a diagnostic. Every failure mode points at a specific fix.&lt;/p&gt;

&lt;p&gt;Output needs too much correction, the task boundary is too broad; narrow it. The system lacks context, fix retrieval, data access, and memory. Reviewers don’t trust it, build evals against real production examples, not synthetic demos. Exceptions take days to trace, you’re missing observability and replay, so build the trace before you scale the agent. People are shuttling data between systems by hand, finish the integration. Everything requires senior sign-off, either the use case exceeds your current maturity or your controls are underbuilt, and now you know which.&lt;/p&gt;

&lt;p&gt;This is also why “AI strategy” fails when it arrives as a use-case inventory. A list of applications is not a strategy; it is a backlog. The strategic work is &lt;em&gt;sequencing&lt;/em&gt;: which workflows are valuable enough, bounded enough, instrumented enough, and safe enough to absorb AI output without drowning the organization in verification? That is the difference between a demo roadmap and a production roadmap, and the market will eventually price the difference.&lt;/p&gt;

&lt;h2&gt;
  
  
  Down the Stack
&lt;/h2&gt;

&lt;p&gt;The first wave of enterprise AI abstraction happened at the interface, type into a box, get useful output, and everyone got it roughly for free. The next wave happens lower in the stack, and it will not be evenly distributed: shared context, governed data access, workflow-specific agents, eval harnesses, policy gates, approval records, cost telemetry, execution traces. The unglamorous machinery that lets a company know not just what the AI produced, but how that output moved through the business and what it cost to trust it.&lt;/p&gt;

&lt;p&gt;This work photographs badly. It will never demo like the chatbot did. It is also where the durable value is, precisely because it is hard to copy. Prompt volume is a commodity; anyone can buy tokens. An organization that has instrumented its cleanup tax, driven down its cost per trusted output, and learned to convert every unit of rework into a system improvement has built a capability, and capabilities compound.&lt;/p&gt;

&lt;p&gt;The board should still get a number. It should just be the right one: how much trusted work did the AI or Agent system help complete, at what total cost, with what risk, with what evidence?&lt;/p&gt;

&lt;p&gt;That number is harder to produce than an adoption chart. It is also the only one worth funding against, and unlike the next model release, it is entirely within your control. The tax is real, it is large, and right now it is invisible. The first company in your market to see it clearly wins.&lt;/p&gt;

&lt;p&gt;So, go make it visible.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>leadership</category>
      <category>aistrategy</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Build Governance That Matches What Agentic AI Actually Does</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Tue, 07 Jul 2026 15:49:44 +0000</pubDate>
      <link>https://dev.to/talweezy/build-governance-that-matches-what-agentic-ai-actually-does-c53</link>
      <guid>https://dev.to/talweezy/build-governance-that-matches-what-agentic-ai-actually-does-c53</guid>
      <description>&lt;p&gt;Why oversight models built for supervised tools fall short once agents start acting&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fpx4f4mjlankgvdzyypzw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fpx4f4mjlankgvdzyypzw.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A supervised AI tool hands you a draft and waits. You read it, you edit it, you decide whether it ships. But an agent does not wait. It reads a support ticket, queries a database, updates a CRM record, sends a few emails, and schedules a follow-up, finishing most of that before anyone looks at the outcome.&lt;/p&gt;

&lt;p&gt;The model underneath can be identical. The oversight problem is a different beast entirely.&lt;/p&gt;

&lt;p&gt;Most governance frameworks running in production were written for the first kind of system. They assume a person checks each output before it carries consequences, so the controls cluster around the moment of approval. That design holds up well when AI generates something and stops. It comes apart the moment an agent chains actions together across systems and accounts, where each step sets up the next and no one is standing at the gate.&lt;/p&gt;

&lt;p&gt;The data shows how wide this gap has grown. In McKinsey’s &lt;a href="https://www.mckinsey.com/capabilities/tech-and-ai/our-insights/tech-forward/state-of-ai-trust-in-2026-shifting-to-the-agentic-era" rel="noopener noreferrer"&gt;2026 AI Trust Maturity Survey&lt;/a&gt;, only about 30 percent of organizations reached maturity level three or higher in strategy, governance, and agentic AI controls, even as deployment footprints kept expanding. Technical capability is racing ahead. The oversight structures meant to keep it accountable are lagging, and the distance keeps widening.&lt;/p&gt;

&lt;h2&gt;
  
  
  Sequences change what oversight has to catch
&lt;/h2&gt;

&lt;p&gt;The reason supervised guardrails fall short with agents comes down to how the two systems fail. A supervised tool fails at a single point. It produces a bad draft, a person catches it, and the cost stops there.&lt;/p&gt;

&lt;p&gt;An agent fails along a path. It misreads one input, acts on that reading, and every action after it inherits the error. By the time anyone notices, the agent has touched five systems and the original mistake is buried three steps back.&lt;/p&gt;

&lt;p&gt;This is why security and risk concerns now sit at the top of the list of barriers to scaling agentic AI, cited by close to two-thirds of respondents in the same survey. The worry has shifted from capability to control. Teams want to know what happens when an agent does something it was never explicitly told to do, and whether anyone can reconstruct the chain of events well enough to undo it.&lt;/p&gt;

&lt;p&gt;A governance framework built for agents has to account for the sequence rather than the endpoint. That means defining the boundaries of what an agent may touch, building checkpoints into the path instead of bolting them onto the final output, and deciding in advance what happens when an agent operates outside its intended scope.&lt;/p&gt;

&lt;h2&gt;
  
  
  Make every agent decision traceable
&lt;/h2&gt;

&lt;p&gt;When an agent acts across systems, the most valuable thing you can have afterward is a record of why it did what it did, which input triggered which action, and which decision produced which outcome. Without that trail, an incident becomes a forensic exercise with no evidence, and the team is left guessing at a system that already moved on.&lt;/p&gt;

&lt;p&gt;McKinsey’s survey found that the rate of AI incidents has held steady at roughly 8 percent, yet confidence in how organizations respond to them has dropped. Close to 60 percent of respondents who experienced an incident rated their organization’s response as no better than satisfactory. Incident frequency has stayed flat. The ability to trace, explain, and contain those incidents has fallen behind the complexity of the systems creating them.&lt;/p&gt;

&lt;p&gt;Traceability is an engineering problem before it becomes a compliance one. It means logging the agent’s reasoning and actions in a form a human can reconstruct, designing systems so a single decision can be traced back to its trigger, and building the audit trail into the architecture instead of adding it after something goes wrong.&lt;/p&gt;

&lt;p&gt;Agents that cannot explain themselves are agents you cannot govern.&lt;/p&gt;

&lt;h2&gt;
  
  
  Governance belongs in engineering before it reaches compliance
&lt;/h2&gt;

&lt;p&gt;A lot of organizations are waiting for regulation to tell them what good looks like. That instinct is understandable, and it is also fragile. &lt;a href="https://digital-strategy.ec.europa.eu/en/policies/regulatory-framework-ai" rel="noopener noreferrer"&gt;The EU AI Act’s high-risk obligations for stand-alone systems&lt;/a&gt; were originally set to apply in August 2026, and in May 2026 EU lawmakers reached a political agreement to push most of them to December 2027.&lt;/p&gt;

&lt;p&gt;Transparency rules still land in August 2026, but the headline deadline that many teams were planning around moved by more than a year.&lt;/p&gt;

&lt;p&gt;This is the core problem with running agentic oversight off a regulatory calendar. The calendar reflects political negotiation, and it tells you nothing about how your specific agents fail, what they can reach, or how you would catch them when they drift. Those are engineering questions, and they get answered well only by people who understand the architecture.&lt;/p&gt;

&lt;h2&gt;
  
  
  What to ask next
&lt;/h2&gt;

&lt;p&gt;Agentic governance comes down to a few honest questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What can this agent reach?&lt;/li&gt;
&lt;li&gt;What does it do when it gets something wrong?&lt;/li&gt;
&lt;li&gt;How can you trace any outcome back to the decision that caused it?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A team that can answer these has already built the things a large enterprise customer or regulator asks for: an agent with bounded access, a defined response when it gets something wrong, and an audit trail someone can actually follow.&lt;/p&gt;

&lt;p&gt;Now think back to the agent I described at the beginning. It read the ticket, queried the database, updated the record, and sent the emails before anyone looked at the outcome. In this scenario, oversight waits until the end of that chain.&lt;/p&gt;

&lt;p&gt;Apply these questions to understand how the workflow could look different. Then the control sits inside the system instead of at the final output, put there by the people who built it before the agent ever runs.&lt;/p&gt;

&lt;p&gt;Your agents are already acting across live systems, and the only governance that protects you is the kind you build into how they work.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agenticai</category>
      <category>aigovernance</category>
      <category>enterprisetechnology</category>
    </item>
    <item>
      <title>The CIO Role Just Split in Two. Here’s What You Need to Know.</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Tue, 16 Jun 2026 17:14:47 +0000</pubDate>
      <link>https://dev.to/talweezy/the-cio-role-just-split-in-two-heres-what-you-need-to-know-34f2</link>
      <guid>https://dev.to/talweezy/the-cio-role-just-split-in-two-heres-what-you-need-to-know-34f2</guid>
      <description>&lt;p&gt;Why the Best AI Leaders Run Offense and Defense Simultaneously&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb24u8h4fjja2yor3cdfk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb24u8h4fjja2yor3cdfk.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Fourteen AI initiatives on a single roadmap, governed by one steering committee, measured against one set of success criteria. Half are automating existing workflows to protect margins. The other half are building capabilities the company has never offered before. Meanwhile, the budget, risk framework, and quarterly check-in schedule remain stagnant.&lt;/p&gt;

&lt;p&gt;This is what most enterprise AI portfolios look like right now. And it explains why so many of them feel stuck.&lt;/p&gt;

&lt;p&gt;The two halves of that portfolio are fundamentally different games. One is about protecting what already works. The other is about building what comes next. Each requires different ownership, different timelines, different metrics, and different tolerance for ambiguity. Running them as a single strategy is like training for a marathon and a sprint on the same schedule. The structure guarantees that one of them suffers.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Most Organizations Miss
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.mckinsey.com/capabilities/mckinsey-technology/our-insights/mckinsey-global-tech-agenda-2026" rel="noopener noreferrer"&gt;McKinsey’s Global Tech Agenda 2026 &lt;/a&gt;found that the CIOs delivering measurable value have made a specific shift. They’ve moved technology from a cost center to what McKinsey calls a “value creator,” embedding AI and data directly into operating models.&lt;/p&gt;

&lt;p&gt;But the research surfaced a clear divide between organizations that are simply modernizing their technology estate and those that are rewiring for competitive advantage.&lt;/p&gt;

&lt;p&gt;That divide maps to a pattern I keep running into with enterprise leaders. The companies actually moving forward are playing two distinct games at once:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;With defense, they’re using AI and Agents to protect the core business. Automating manual workflows, tightening operational efficiency, reducing cost structures that have been bloated for years.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;On offense, they’re building new capabilities. New products, new revenue streams, new ways of reaching customers that weren’t possible eighteen months ago.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Most organizations don’t have a mental model for this split. They’re either in pure cost-cutting mode or chasing growth, and the AI and Agentic AI strategy simply reflects whichever game the board happens to be pressuring this quarter.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Defense Actually Looks Like
&lt;/h2&gt;

&lt;p&gt;Defensive AI and Agent targets processes you understand well, with outcomes you can measure in months and risk profiles you can model. Automated claims processing. Intelligent document extraction. Predictive maintenance on equipment that’s already generating revenue.&lt;/p&gt;

&lt;p&gt;The success criteria are clear. Faster cycle times, lower error rates, reduced headcount for routine tasks, better margins on existing lines of business. The value case is arithmetic, and the ROI conversation is relatively straightforward.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Offense Actually Looks Like
&lt;/h2&gt;

&lt;p&gt;Offensive AI builds capabilities that didn’t exist before. You’re not optimizing a known process. You’re testing whether a new process should exist at all.&lt;/p&gt;

&lt;p&gt;These projects look like using AI to enter adjacent markets with personalized products, or building recommendation engines that fundamentally change how customers discover what you sell, or creating internal decision-support tools that give your operators information advantages competitors don’t have.&lt;/p&gt;

&lt;p&gt;The success criteria are murkier. You’re measuring learning velocity, market signal, and option value. The ROI conversation is harder, and the organizational patience required is significantly higher.&lt;/p&gt;

&lt;h2&gt;
  
  
  When Efficiency Eats Innovation
&lt;/h2&gt;

&lt;p&gt;When companies run offense and defense under the same governance structure, the defensive projects almost always win the resource fight.&lt;/p&gt;

&lt;p&gt;Defense gets measured on efficiency, cost reduction, and operational reliability. The governance is tighter and accountability sits with operational leaders who own the processes being improved.&lt;/p&gt;

&lt;p&gt;Offense gets measured on learning rate, market validation, and strategic optionality. The governance is much lighter, and the timelines are longer.&lt;/p&gt;

&lt;p&gt;Overall, defensive projects are easier to justify, easier to measure, and easier to get approved. So offensive projects get deprioritized because they can’t compete on the same ROI framework.&lt;/p&gt;

&lt;p&gt;The result is a portfolio that looks busy, but only plays one game. The company gets more efficient at what it already does while falling behind on what it could become. The board sees cost savings and assumes the AI and Agent strategy is working, but nobody’s building anything that changes the company’s competitive position.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Diagnostic
&lt;/h2&gt;

&lt;p&gt;If you’re running AI and Agent initiatives right now, here’s a quick test. Look at your active portfolio and sort every project into one of two columns. Column one: protecting existing revenue and margin. Column two: building something you’ve never had before.&lt;/p&gt;

&lt;p&gt;If you can’t sort them cleanly, your strategy is probably conflated.&lt;/p&gt;

&lt;p&gt;The companies losing ground on AI and Agents aren’t necessarily the ones spending too little. They’re the ones who never made the split visible, never assigned ownership to each side, and ended up with a portfolio that defaults to whichever pressure is loudest.&lt;/p&gt;

&lt;p&gt;Making the split explicit is the first step toward making it work.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>cioleadership</category>
      <category>enterprisestrategy</category>
      <category>technologyleadership</category>
    </item>
    <item>
      <title>5 Org Chart Mistakes That Are Killing ROI in the AI and Agent Era</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Tue, 09 Jun 2026 12:41:57 +0000</pubDate>
      <link>https://dev.to/talweezy/5-org-chart-mistakes-that-are-killing-roi-in-the-ai-and-agent-era-24b4</link>
      <guid>https://dev.to/talweezy/5-org-chart-mistakes-that-are-killing-roi-in-the-ai-and-agent-era-24b4</guid>
      <description>&lt;p&gt;Organizational structure determines AI outcomes more than technology ever will&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl8y1l0zenzunvfwzzj4d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl8y1l0zenzunvfwzzj4d.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.mckinsey.com/~/media/mckinsey/business%20functions/quantumblack/our%20insights/the%20state%20of%20ai/2025/the-state-of-ai-how-organizations-are-rewiring-to-capture-value_final.pdf" rel="noopener noreferrer"&gt;McKinsey’s research&lt;/a&gt; found that more than 80% organizations are not yet seeing a tangible impact on enterprise-level EBIT from AI and Agents. This suggests that while adoption is broadening, most companies are still struggling to turn AI and Agents into scaled financial results.&lt;/p&gt;

&lt;p&gt;But there is an important piece of the story that is missing. &lt;a href="https://www.aigovernancetoday.com/news/enterprise-ai-spending-crisis-2026" rel="noopener noreferrer"&gt;A separate analysis&lt;/a&gt; of 140 enterprise AI implementations found that 77% of failures were organizational in nature, with technical issues like model performance, data quality, and integration complexity accounting for less than a quarter.&lt;/p&gt;

&lt;p&gt;Your org chart is the first system AI has to survive before it reaches a single customer or workflow, and these five structural mistakes consistently prevent it from getting there.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Your Chief AI Officer Reports Nowhere Near the P&amp;amp;L
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://static1.squarespace.com/static/62adf3ca029a6808a6c5be30/t/6942c3cb535da44088c2dbff/1765983179572/2026+AI+%26+Data+Leadership+Executive+Benchmark+Survey+Final.pdf" rel="noopener noreferrer"&gt;The 2026 AI &amp;amp; Data Leadership Executive Benchmark Survey&lt;/a&gt; found that 38.5% of companies have now appointed a Chief AI Officer or equivalent, but there’s almost no consensus on where that role sits. Reporting lines are split across technology, business, and transformation leadership, with no dominant model emerging and no clear pattern connecting any one reporting structure to better outcomes.&lt;/p&gt;

&lt;p&gt;That fragmentation carries real downstream consequences. When AI leadership reports into a CTO or CIO function, the role tends to optimize for infrastructure and tooling decisions rather than business impact. When it reports into a transformation office, it gravitates toward strategy decks and governance frameworks that rarely survive contact with operational reality.&lt;/p&gt;

&lt;p&gt;Neither path connects AI or Agents directly to revenue, margin, or operational throughput, which means the person nominally responsible for AI results often has no line of sight into the metrics that define them.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Your AI or Agent Team Lives in IT Instead of in the Business
&lt;/h2&gt;

&lt;p&gt;When AI or Agent capability gets housed inside the IT department, it inherits IT’s entire operating model, meaning projects get scoped through a service request lens, prioritization follows the IT backlog, and success gets measured in uptime and deployment velocity rather than business outcomes.&lt;/p&gt;

&lt;p&gt;This is a fundamental structural mismatch. AI is a business capability that requires technical infrastructure, and the distinction matters because AI initiatives that start with a business problem and work backward toward the right technical approach tend to survive past the pilot stage, while initiatives that start with a model and go looking for a use case tend to stall indefinitely.&lt;/p&gt;

&lt;p&gt;Organizations running AI teams embedded within business units, or at minimum co-located with business leadership, consistently outperform centralized IT-led models on both adoption and value delivery.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Your Steering Committee Owns Accountability for Nothing
&lt;/h2&gt;

&lt;p&gt;AI steering committees are one of the most popular governance structures in enterprise AI programs, and they’re also one of the least effective.&lt;/p&gt;

&lt;p&gt;The typical setup includes senior representatives from multiple functions who meet monthly to review progress, offer guidance, and align priorities, but in practice, these committees almost always devolve into a venue for status updates where no actual decisions get made.&lt;/p&gt;

&lt;p&gt;The root issue is accountability without power. Steering committees rarely control budget allocation, staffing decisions, or deployment timelines, which means they can recommend changes but have no mechanism to compel them. When an AI initiative hits an organizational obstacle (and every one does), the committee discusses it, documents it, and then waits for someone else to resolve it, creating a governance layer that absorbs time without reducing friction.&lt;/p&gt;

&lt;p&gt;Research on AI governance maturity from &lt;a href="https://www.mckinsey.com/capabilities/tech-and-ai/our-insights/tech-forward/state-of-ai-trust-in-2026-shifting-to-the-agentic-era" rel="noopener noreferrer"&gt;McKinsey’s 2026 AI Trust Maturity Survey&lt;/a&gt; reinforces how widespread this gap is, with only about 30% of organizations reaching a maturity level of three or higher in governance, even as their technical and data capabilities continue to advance. The organizational decision-making apparatus simply hasn’t kept pace with the technology it’s supposed to govern.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. You Built AI Skills in One Team and Called It Done
&lt;/h2&gt;

&lt;p&gt;Concentrating AI talent in a single team feels efficient at first, but the problems with this approach emerge at scale. When every AI initiative has to flow through the same team, that team becomes a bottleneck.&lt;/p&gt;

&lt;p&gt;This pattern appears so frequently in enterprise organizations that it has earned a name in organizational design circles. It’s called the Center of Excellence trap.&lt;/p&gt;

&lt;p&gt;The CoE starts as a strategic asset and gradually evolves into a capacity constraint that chokes the very pipeline it was built to open. &lt;a href="https://www.cio.com/article/4099513/how-to-keep-ai-plans-intact-before-agents-run-amok.html" rel="noopener noreferrer"&gt;A CIO article from late 2025&lt;/a&gt; described the resulting dynamic well, noting that business units inevitably branch off on their own when the central AI team can’t keep pace, creating fragmented and ungoverned efforts scattered across the company with no shared standards or oversight.&lt;/p&gt;

&lt;p&gt;The more sustainable model is capability distribution. Instead of hoarding AI expertise in one group, the investment goes into building baseline AI literacy and applied skills across functions. This allows the central team to shift from doing the work to enabling others to do it by providing tooling, standards, training, and quality guardrails while the business units own execution and outcomes.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Your Center of Excellence Has No Authority to Make Anything Stick
&lt;/h2&gt;

&lt;p&gt;This is the inverse of mistake four. Some organizations do build a Center of Excellence with a genuine mandate to drive AI adoption across the enterprise, staffing it well, giving it a clear charter, and expecting it to set standards for how AI gets developed, deployed, and monitored. Then they forget to give it any enforcement power.&lt;/p&gt;

&lt;p&gt;What follows is predictable. The CoE publishes best practices that business units ignore, develops governance frameworks that project teams route around, and recommends tooling standards that departments override. Without budget influence, or the organizational standing to block non-compliant deployments, the CoE becomes an advisory function that advises no one in particular and enforces nothing at all.&lt;/p&gt;

&lt;p&gt;This is a design failure at the leadership level. A CoE with clear standards but no enforcement mechanism creates the illusion of governance while fragmented, uncoordinated AI adoption continues underneath it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Infrastructure Problem
&lt;/h2&gt;

&lt;p&gt;These five mistakes share a common thread. They all treat AI as something that can be added to an existing organizational structure without redesigning how decisions get made, who owns outcomes, and where authority actually lives.&lt;/p&gt;

&lt;p&gt;AI underperformance in most organizations traces back to an org chart that was built for a different kind of work and never updated to reflect how AI-driven operations actually need to function.&lt;/p&gt;

&lt;p&gt;The companies capturing real returns in 2026 are the ones willing to redesign reporting lines, redistribute decision rights, and place AI leadership where it can actually influence how the business operates on a daily basis.&lt;/p&gt;

&lt;p&gt;If you’re reviewing your AI strategy this quarter, start with the org chart. The structure you’re running determines the ceiling of what AI can deliver, and right now, most ceilings are set lower than anyone realizes.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts. &lt;br&gt;
→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;br&gt;
→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI. &lt;/p&gt;

</description>
      <category>ai</category>
      <category>aistrategy</category>
      <category>enterpriseai</category>
      <category>organizationaldesign</category>
    </item>
    <item>
      <title>4 Ways to Keep Your AI and Agent Costs Down</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Wed, 03 Jun 2026 13:10:20 +0000</pubDate>
      <link>https://dev.to/talweezy/4-ways-to-keep-your-ai-and-agent-costs-down-38no</link>
      <guid>https://dev.to/talweezy/4-ways-to-keep-your-ai-and-agent-costs-down-38no</guid>
      <description>&lt;p&gt;The architectural decisions that separate controlled spend from compounding surprises&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F49o24x14t2ije4enpauo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F49o24x14t2ije4enpauo.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;AI and Agentic AI costs have a way of looking reasonable right up until they aren’t.&lt;/p&gt;

&lt;p&gt;The early pilots run on contained use cases with limited traffic, so the numbers stay small and nobody questions the architecture behind them. Then the product scales. Teams start layering inference calls into features that weren’t in the original cost model, and the spend starts compounding in places nobody is watching.&lt;/p&gt;

&lt;p&gt;By the time finance flags the invoice, the architecture driving those costs is already embedded in production and expensive to change. A Gartner survey found that more than 90% of CIOs say managing cost limits their ability to extract value from AI at scale.&lt;/p&gt;

&lt;p&gt;The problem is rarely any single API call. It’s the accumulation of decisions that were never designed to hold up under real production volume. These four levers address that directly. Each one targets a different layer of the cost structure, and together they give you a system that stays predictable as usage grows.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Right-Size Model Selection to Task Complexity
&lt;/h2&gt;

&lt;p&gt;The fastest way to cut AI costs without changing outcomes is to stop sending every request to your most capable model. Most production AI workloads follow a clear pattern where a small percentage of requests require deep reasoning while the majority involve extraction, classification, or short-form responses that a lighter model handles just as well.&lt;/p&gt;

&lt;p&gt;A model routing layer evaluates each incoming request and directs it to the appropriate model based on complexity, confidence thresholds, or task type. Simple queries go to smaller, faster, cheaper models. Only the requests that genuinely need frontier-class reasoning get routed to the expensive option.&lt;/p&gt;

&lt;p&gt;The impact is significant. Industry benchmarks consistently show that intelligent routing reduces inference costs by 30% to 60% in mixed-workload environments, and in some configurations the savings reach even higher. IBM research has highlighted estimates that routing a portion of queries to smaller models can reduce inference costs by up to 85% compared to always using the largest available model.&lt;/p&gt;

&lt;p&gt;When 70% to 80% of your traffic can be handled by a model that costs a fraction of your top-tier option, the math changes quickly. The key is building this routing logic into the architecture early, before usage patterns are established and before teams develop habits around defaulting to a single model for everything.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Build Caching Layers for Predictable and Repetitive Inputs
&lt;/h2&gt;

&lt;p&gt;Every time your system pays for an inference call that produces the same output as a previous call with identical or near-identical input, you’re burning money on redundant compute. In most production AI and Agent systems, this happens more often than teams realize. Support workflows, document processing pipelines, and internal tools all generate repetitive queries that trigger fresh inference calls unnecessarily.&lt;/p&gt;

&lt;p&gt;Caching addresses this by storing responses to previous inputs and returning cached results when a sufficiently similar request comes in. Semantic caching takes this further by using embedding similarity to match new queries against previously answered ones, so you don’t need exact string matches to get a cache hit.&lt;/p&gt;

&lt;p&gt;For applications with stable system prompts or repeated reference documents, prompt caching alone can cut costs by 50% to 90% on eligible workloads. That’s a significant margin improvement for what is fundamentally an infrastructure decision, not a product change.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Monitor Cost Per Outcome, Not Cost Per API Call
&lt;/h2&gt;

&lt;p&gt;Most teams track AI and Agent spend at the wrong level of granularity. They watch cost per API call or cost per token, optimize those numbers, and then wonder why the overall bill keeps climbing. The problem is that per-call metrics tell you how efficiently your infrastructure runs, but they tell you nothing about whether the spend is generating proportional business value.&lt;/p&gt;

&lt;p&gt;The metric that actually matters is cost per outcome. What does it cost to resolve one support ticket, process one document, or generate one qualified recommendation? When you measure at the outcome level, you start seeing which features and workflows are efficient and which ones burn through tokens without producing proportional results.&lt;/p&gt;

&lt;p&gt;This shift in measurement changes how teams make decisions. A workflow that costs $0.002 per API call looks cheap in isolation, but if it takes 40 calls to produce one usable output, your effective cost per outcome is $0.08. Another workflow might cost $0.01 per call but deliver a result in three calls, making it four times more cost-effective at the outcome level. Without outcome-level tracking, teams end up optimizing the wrong variable. They hit their API budget targets while the business bleeds margin on features that consume far more inference than their value justifies.&lt;/p&gt;

&lt;p&gt;Building this visibility requires tagging inference calls by feature, workflow, and business outcome so you can attribute costs accurately. It’s operational overhead up front, but it gives you the data to make allocation decisions that actually improve unit economics.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Create a Deprecation Practice for Low-Value Use Cases
&lt;/h2&gt;

&lt;p&gt;Not every AI-powered feature deserves to keep running. As products evolve, teams tend to accumulate use cases without revisiting whether each one still clears a reasonable cost-to-value threshold. A feature that made sense during a pilot, when call volume was low and the marginal cost was negligible, can become a quite drain on your budget once it’s processing thousands of requests per day in production.&lt;/p&gt;

&lt;p&gt;A formal deprecation practice addresses this by establishing a regular review cycle where every active AI use case and Agent gets evaluated against its actual cost and measured value. Use cases that fall below the threshold get flagged for rearchitecting, downsizing to a cheaper model, or retiring entirely.&lt;/p&gt;

&lt;p&gt;This is where most AI cost problems actually live. They aren’t unit cost problems. They’re accumulation problems. Twenty features each burning a small amount of unjustified spend add up to a significant line item that nobody owns because nobody is looking at the portfolio as a whole.&lt;/p&gt;

&lt;p&gt;The review doesn’t need to be complicated. Quarterly is a reasonable cadence. The criteria should include cost per outcome (from the monitoring practice above), usage volume trends, and a clear-eyed assessment of whether the feature still aligns with product priorities.&lt;/p&gt;

&lt;h2&gt;
  
  
  Revisit Your Architecture to Sustain Your ROI
&lt;/h2&gt;

&lt;p&gt;Each of these four levers operates at a different layer of the cost structure, and none of them require you to sacrifice capability or slow down product development. Model routing targets per-call efficiency. Caching eliminates redundant compute. Outcome-level monitoring gives you the data to allocate intelligently. And deprecation keeps your portfolio from accumulating dead weight.&lt;/p&gt;

&lt;p&gt;The common thread is that AI cost management is an architecture problem. The decisions that determine your spend at scale are made by engineering teams during system design, not by finance teams during contract negotiation. The organizations that keep their costs predictable are the ones that treat these decisions as first-class architectural concerns from the beginning, rather than scrambling to retrofit controls after the bill becomes a boardroom conversation.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI.&lt;/p&gt;

</description>
      <category>aicostoptimization</category>
      <category>enterpriseai</category>
      <category>llminfrastructure</category>
      <category>aistrategy</category>
    </item>
    <item>
      <title>Your AI and Agent Rollout Needs a Problem-Definition Process</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Tue, 26 May 2026 14:04:02 +0000</pubDate>
      <link>https://dev.to/talweezy/your-ai-and-agent-rollout-needs-a-problem-definition-process-1hll</link>
      <guid>https://dev.to/talweezy/your-ai-and-agent-rollout-needs-a-problem-definition-process-1hll</guid>
      <description>&lt;p&gt;How Product Management Discipline Separates Lasting AI and Agent Adoption from Expensive Shelf-Ware&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhlv9a8ci27l06z360j45.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhlv9a8ci27l06z360j45.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We’ve all read about the AI rollouts that go awry. Tools get purchased, training gets scheduled, an adoption campaign goes out, but within two months the usage curve flattens because nobody in the organization can answer a simple question: &lt;/p&gt;

&lt;p&gt;What specific problem are we solving, and how will we know we solved it?&lt;br&gt;
I’ve spent years leading teams from both an engineering and product management perspective, so I’ve seen from the trenches why this obvious question can get skipped. The urgency to "adopt AI" pushes companies straight into tool selection and training programs while the harder, slower work of defining which problems are actually worth solving never happens.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Missing Discipline
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://hbr.org/2026/02/to-drive-ai-adoption-build-your-teams-product-management-skills" rel="noopener noreferrer"&gt;A recent Harvard Business Review study&lt;/a&gt; by Amanda Pratt and Melissa Valentine examined AI adoption at a major tech company and surfaced a finding that should reframe how every operator thinks about this problem.&lt;/p&gt;

&lt;p&gt;It was no surprise to me that the area most correlated with successful, sustained AI adoption turned out to be product management, not prompt engineering or technical fluency. The disciplines that mattered most were defining which problems are worth solving, designing structured experiments, and integrating solutions into the way work already happens.&lt;/p&gt;

&lt;p&gt;These findings line up with what I've observed across dozens of AI and Agentic AI engagements. The companies where AI actually takes root are the ones that approach adoption with product discipline, starting with a specific workflow, identifying a measurable friction point, building a small test, and evaluating results before scaling anything.&lt;/p&gt;

&lt;h2&gt;
  
  
  Two Companies, Two Approaches
&lt;/h2&gt;

&lt;p&gt;Consider the difference between two real patterns I see repeatedly in enterprise AI and Agentic AI work.&lt;/p&gt;

&lt;p&gt;1) Company A purchases an AI platform, negotiates an enterprise license, builds a prompt library, and launches a change management campaign complete with lunch-and-learns, weekly tip emails, and a login dashboard to track "adoption." After three months, a handful of power users have integrated the tool into their workflows, and everyone else has moved on.&lt;/p&gt;

&lt;p&gt;2) Company B takes a different path. Before selecting any tool, they run a structured problem-definition process across three business units. Each unit identifies its highest-friction workflow, documents the current state in detail, and defines what a measurable improvement would look like. Only then does the team evaluate which AI capabilities (if any) could address those specific problems. They run 30-day pilots with clear success criteria, and when two of the three pilots produce measurable gains, those two scale while the third gets killed early, saving months of wasted effort.&lt;/p&gt;

&lt;p&gt;One of those pilots, for example, targeted a procurement approval workflow that averaged nine days from request to sign-off. The team mapped every handoff, identified two steps where AI-assisted document review could eliminate manual bottlenecks, and set a target of reducing cycle time to under four days. After the pilot, cycle time dropped to three and a half days. That result gave leadership concrete evidence to fund a broader rollout in procurement, and the specificity of the success made it easy to communicate across the organization.&lt;/p&gt;

&lt;p&gt;Company B spent less money, took slightly longer to get started, and ended up with AI embedded in actual workflows producing actual results. Company A spent more, moved faster, and ended up with an expensive tool that sits mostly unused.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Problem-Definition Keeps Getting Skipped
&lt;/h2&gt;

&lt;p&gt;The rise of AI has put immense pressure on companies to try to move fast. But the problem-definition process feels time consuming and slow. On the other hand, buying a tool and launching a training program feels like jumping quickly into action.&lt;/p&gt;

&lt;p&gt;There's also a structural gap. Most organizations assign AI adoption to IT or to a newly created "AI team" that reports to the CTO. Those teams are good at evaluating technology. They're less practiced at the product management work of scoping problems, defining success metrics, and designing experiments within business workflows they don't own. The people closest to the workflows (operations leads, department managers, senior ICs) rarely get pulled into the problem-definition phase because the initiative is framed as a technology project, not a workflow improvement project.&lt;/p&gt;

&lt;p&gt;Velocity without direction is just expensive motion. The organizations I work with that have the strongest AI adoption results are the ones that invested the first four to six weeks in problem definition and a Data Story / IP Moat audit before evaluating a single vendor. That initial patience created clarity that made everything downstream faster, from tool selection to pilot design to scaling decisions.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Diagnostic Question
&lt;/h2&gt;

&lt;p&gt;If you want to know whether your AI or Agentic AI adoption effort has legs, ask one question across every team that's supposed to be using AI. Can they answer, specifically, what problem they're solving and how they'll know if they've solved it?&lt;/p&gt;

&lt;p&gt;If the answer is vague ("We're using AI to be more efficient") or circular ("We're adopting AI because we need to adopt AI"), the rollout is already in trouble. Clear problem statements are the leading indicator of whether AI adoption will stick or stall.&lt;/p&gt;

&lt;p&gt;The companies that bring product management discipline to AI adoption, with defined problems, scoped experiments, and honest evaluation, end up with AI embedded in their actual operations. Everyone else ends up with a line item on the budget and a login dashboard nobody checks.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts. &lt;br&gt;
→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;br&gt;
→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI. &lt;/p&gt;

</description>
      <category>ai</category>
      <category>productmanagement</category>
      <category>enterprisetechnology</category>
      <category>startupstrategy</category>
    </item>
    <item>
      <title>6 Things Your AI Agents Need That You're Probably Not Building</title>
      <dc:creator>Nick Talwar</dc:creator>
      <pubDate>Tue, 19 May 2026 17:35:06 +0000</pubDate>
      <link>https://dev.to/talweezy/6-things-your-ai-agents-need-that-youre-probably-not-building-32hi</link>
      <guid>https://dev.to/talweezy/6-things-your-ai-agents-need-that-youre-probably-not-building-32hi</guid>
      <description>&lt;p&gt;The infrastructure that separates agents that demo well from agents that actually run&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnc6ueycn1gwicc6oqjys.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnc6ueycn1gwicc6oqjys.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You would never bring a new hire onto your team without performance feedback, escalation paths, or a way to know when they're struggling. Yet that's exactly how most organizations deploy AI agents. &lt;a href="https://sloanreview.mit.edu/projects/the-emerging-agentic-enterprise-how-leaders-must-navigate-a-new-age-of-ai/" rel="noopener noreferrer"&gt;MIT Sloan and BCG's 2025 research&lt;/a&gt; found that 76% of executives now describe agents as coworkers rather than tools, but almost none of them are managing agents that way. They ship the agent and move on.&lt;/p&gt;

&lt;p&gt;Deciding to call your agents “coworkers” is easy. Setting up the feedback loops, escalation paths, and failure signals that actually make one is where teams stall. It's almost entirely an infrastructure problem, and these are the six pieces most teams skip.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Evaluation Frameworks
&lt;/h2&gt;

&lt;p&gt;A working agent and a reliable agent are two different things. Evaluation frameworks give you the ability to measure the difference before your users discover it for you. This means building structured test suites that run against your agent's outputs on a regular cadence, scoring for accuracy, relevance, and task completion across a range of realistic scenarios.&lt;/p&gt;

&lt;p&gt;Good evaluation suites include both deterministic checks (did the agent call the right tool with the right parameters?) and judgment-based scoring (was the response actually useful to the person asking?). &lt;/p&gt;

&lt;p&gt;The key is that evaluation has to be continuous, running in CI/CD pipelines and against live traffic, because agent behavior shifts as underlying models update and data distributions change. LLMs, the technology that undergirds agents, are at their core probabilistic in nature, which means there is an often opaque statistical distribution that can shift over time, which affects performance and accuracy. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.anthropic.com/engineering/demystifying-evals-for-ai-agents" rel="noopener noreferrer"&gt;Anthropic's engineering team has written publicly&lt;/a&gt; about maintaining evaluation suites as living artifacts, with dedicated teams owning the infrastructure while domain experts contribute tasks and run the tests themselves.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Fallback and Escalation Logic
&lt;/h2&gt;

&lt;p&gt;Every agent will encounter situations it cannot handle. The question is whether you've decided in advance what happens next, or whether the agent improvises.&lt;/p&gt;

&lt;p&gt;Fallback logic defines the boundaries. When confidence drops below a threshold, when a tool call returns unexpected data, when the task exceeds the agent's defined scope, the system needs a predetermined path. That path might route to a simpler deterministic process, a different model, or a human operator. Escalation logic layers on top of that by adding severity awareness.&lt;/p&gt;

&lt;p&gt;Without explicit escalation tiers, every failure gets the same treatment, which means either everything gets flagged (and humans stop paying attention) or nothing does (and real problems slip through). The organizations successfully scaling agents build these paths before deployment, treating them as load-bearing architecture.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Monitoring for Drift
&lt;/h2&gt;

&lt;p&gt;AI agents degrade quietly. Model updates, shifts in input data, changes to upstream APIs, seasonal variation in user behavior. Any of these can erode agent performance without triggering a single error.&lt;/p&gt;

&lt;p&gt;Drift monitoring tracks the gap between how your agent performed when you validated it and how it performs now. This includes statistical monitoring of output distributions, latency tracking across individual tool calls, and automated quality scoring against baseline benchmarks. In practice, effective drift detection requires capturing baseline metrics during your evaluation phase and then running the same scoring pipeline against production traffic on an ongoing basis. When scores diverge from your baseline by more than an acceptable margin, you have a concrete signal to investigate rather than a vague feeling that things seem off.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Human-in-the-Loop Checkpoints
&lt;/h2&gt;

&lt;p&gt;Full autonomy sounds efficient until you realize what it costs when the agent is wrong. Human-in-the-loop checkpoints create structured moments where a person reviews, approves, or redirects agent output before it reaches the end user or triggers a downstream action.&lt;/p&gt;

&lt;p&gt;The design challenge is placement. Too many checkpoints and you've built an expensive autocomplete system. Too few and you've handed off accountability to a system that can't actually hold it. The right approach maps checkpoints to consequence.&lt;/p&gt;

&lt;p&gt;Low-risk, reversible actions can run autonomously. High-stakes decisions, anything involving money, legal exposure, or customer-facing commitments, need a human gate. As agents take on more complex workflows, these checkpoints also become your training data pipeline. Every human correction is a signal about where the agent needs improvement, but only if you're logging it (which brings us to the next point).&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Logging for Auditability
&lt;/h2&gt;

&lt;p&gt;When an agent makes a decision, you need to be able to reconstruct exactly how it got there. Full execution logging captures the chain of reasoning, tool invocations, retrieved context, intermediate outputs, and final actions across every run.&lt;/p&gt;

&lt;p&gt;This serves three purposes simultaneously:&lt;/p&gt;

&lt;p&gt;First, debugging. When something goes wrong, you need the trace, not a guess.&lt;/p&gt;

&lt;p&gt;Second, compliance. Regulated industries require demonstrable decision trails, and even unregulated ones are moving in that direction.&lt;/p&gt;

&lt;p&gt;Third, improvement. Logged executions become the dataset you use to identify failure patterns, tune prompts, and build better evaluation suites.&lt;/p&gt;

&lt;p&gt;The tooling for this has matured significantly. OpenTelemetry-based tracing, structured span capture, and production replay capabilities now exist across multiple frameworks. The infrastructure cost is low relative to the cost of operating an agent you cannot inspect.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. A Defined Handoff Protocol
&lt;/h2&gt;

&lt;p&gt;Agents rarely operate in isolation. They pass work to other agents, to human operators, to downstream systems, and occasionally back to the user. Every one of those transitions is a potential failure point.&lt;br&gt;
A handoff protocol specifies what information transfers with the task, what context the receiving party needs, what constitutes a successful handoff versus a dropped one, and who owns the outcome after the transition.&lt;/p&gt;

&lt;p&gt;This gets more complex in multi-agent systems where one agent's output becomes another agent's input. If the first agent summarizes a customer issue and strips out a critical detail before passing it along, the second agent makes a decision on incomplete information. Neither agent has failed individually, but the system has failed completely.&lt;/p&gt;

&lt;p&gt;Without this kind of structural clarity, you get the agent equivalent of a game of telephone. Context gets lost between steps, responsibilities blur, and when something fails mid-workflow, nobody can pinpoint where.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Management Layer You Can't Skip
&lt;/h2&gt;

&lt;p&gt;These six elements share a common thread. They're all infrastructure that exists to manage the agent after it's built.&lt;/p&gt;

&lt;p&gt;The agent itself, the model, the prompts, the tool integrations, that's maybe 40% of what a production deployment actually requires.&lt;br&gt;
The other 60% is the system that keeps the agent honest, visible, and recoverable when things go sideways.&lt;/p&gt;

&lt;p&gt;Organizations that treat agent deployment as a build-and-ship exercise will spend the next six months doing manual cleanup on failures they could have prevented. The ones that invest in this management layer first will find that their agents get better over time instead of quietly getting worse.&lt;/p&gt;

&lt;p&gt;The technology is mature enough. The question is whether your operational infrastructure is ready to match it.&lt;/p&gt;

&lt;p&gt;…&lt;/p&gt;

&lt;p&gt;Nick Talwar is a CTO, ex-Microsoft, and a hands-on AI engineer who supports executives in navigating AI adoption. He shares insights on AI-first strategies to drive bottom-line impact.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://www.linkedin.com/in/nicktalwar/" rel="noopener noreferrer"&gt;Follow him on LinkedIn&lt;/a&gt; to catch his latest thoughts. &lt;br&gt;
→ &lt;a href="https://nicktalwar.substack.com/" rel="noopener noreferrer"&gt;Subscribe to his free Substack&lt;/a&gt; for in-depth articles delivered straight to your inbox.&lt;br&gt;
→ &lt;a href="https://techleaders.kit.com/ai-workflows-for-regulated-content" rel="noopener noreferrer"&gt;Watch the live session&lt;/a&gt; to see how leaders in highly regulated industries leverage AI to cut manual work and drive ROI. &lt;/p&gt;

</description>
      <category>ai</category>
      <category>aiagents</category>
      <category>enterprisetechnology</category>
      <category>softwareengineering</category>
    </item>
  </channel>
</rss>
