Category: Artificial Intelligence

In-depth artificial intelligence analysis: AI agents, LLMs, enterprise deployment, governance, and breakthroughs. Research-backed insights for CTOs, founders, and decision-makers.

  • Cursor AI Code Review 86% Now Skip Human Checks 2026

    Cursor AI Code Review 86% Now Skip Human Checks 2026

    86% of Companies Let AI Agents Ship Code Without Review
    AI & Software Engineering

    86% of Companies Let AI Agents Ship Code Without Review

    Somewhere this week, an engineering lead approved a pull request they never actually read line by line. Not because they were lazy. Because their team’s AI agent wrote it, tested it, and merged it faster than a human reviewer could open the diff. That is not a hypothetical. It is the daily reality for the 86% of organizations that Anthropic and research firm Material found have already moved past experimenting with AI coding agents and into deploying them for production code.

    The question dividing engineering leadership right now isn’t whether agents can write code. That argument is over. The question is whether the human reviewer, the person whose job has been to catch the agent’s mistakes before they ship, still has a job to do at all. A KTH professor says no. The data on what happens when review disappears says: it depends entirely on what broke.

    The data nobody can ignore

    Start with the number that matters most. In Anthropic and Material’s 2026 State of AI Agents Report, a survey of more than 500 U.S. technical leaders across company sizes, 86% of organizations said they’ve moved beyond pilot projects and are now running AI coding agents against production code. Enterprises lead adoption at 91%, small and midsize businesses trail at 83%, but neither number reads as experimental anymore.

    The more consequential figure sits one layer deeper. 42% of organizations already trust agents to lead development work, with humans providing oversight rather than writing or gatekeeping every change. That’s not autocomplete. That’s a structural shift in who holds the pen.

    Augment Code’s separate survey of 219 engineering leaders backs this up with a harder number: 48% of all code shipped by their respondents is now AI-generated. But here’s the gap that should worry every CTO reading this: only 19 of those 219 organizations have formally updated role definitions or hiring practices to reflect it. The technology moved. The org chart didn’t.

    A number worth flagging as directional, not audited Business Insider’s reporting on Cursor’s internal data (the company behind the AI-native code editor) shows the share of code reaching production without separate manual review climbing over the past six months. Cursor has not published its methodology, and the company’s roughly $30 billion valuation depends on this exact narrative being true. Treat it as a vendor disclosure, not independent research.

    Why Cursor and a Stockholm professor collided in June

    Two signals rarely converge this cleanly. On June 11, 2026, Martin Monperrus, Professor of Software Technology at KTH Royal Institute of Technology and an IEEE Fellow, published a preprint arguing that mandatory human review before merge is “no longer a necessary component of a software quality pipeline.” His case: every function review historically served (catching bugs, enforcing standards, transferring knowledge) can now be performed by agents at lower cost and higher throughput.

    Weeks earlier, Cursor’s own numbers pointed the same direction. In December 2025, Cursor acquired the code-review startup Graphite, whose customers include Shopify, Snowflake, and Figma. CEO Michael Truell told Fortune the quiet part out loud:

    “The way engineering teams review code is increasingly becoming a bottleneck to them moving even faster as AI has been deployed more broadly within engineering teams.” Michael Truell, CEO, Cursor (Anysphere) · Fortune, December 19, 2025
    Academic argument and vendor telemetry almost never line up within weeks of each other. Usually the research lags the market narrative by a year or more. That collision, more than either data point alone, is the actual news here.

    Context that’s easy to miss: this isn’t a startup phenomenon. Microsoft has said as much as 30% of code inside its own repositories is now AI-written. Cursor’s own growth tells the same story from the vendor side: annualized revenue went from roughly $100 million at the start of 2025 to over $1 billion by November, according to Forbes.

    The productivity question nobody has actually answered

    Here’s where the narrative gets uncomfortable. The single best piece of randomized, controlled evidence on AI coding productivity says the opposite of what the adoption numbers imply.

    METR, an independent AI evaluation nonprofit, ran a controlled trial with experienced open-source developers using Cursor Pro with Claude 3.5 and 3.7 Sonnet. Result: developers were 19% slower completing real tasks with AI tools, despite believing afterward that they’d been roughly 20% faster. Perception and reality moved in opposite directions.

    It gets stranger. When METR tried to run a 2026 follow-up with a larger cohort, the study design collapsed. Between 30% and 50% of invited developers refused to complete tasks without AI access at all, even at $150 an hour. METR couldn’t build a clean control group because professional developers had become too dependent on the tools to work without them for pay.

    METR’s own read: agentic tools like Claude Code and Codex have probably improved since early 2025. They just can’t currently measure the magnitude, because the population they’d need to study no longer exists in an AI-free form.

    Is that a productivity win or a dependency problem? Both readings fit the same data.

    Where this breaks: the governance gap

    Adoption running ahead of governance is the actual headline, and the numbers make the gap explicit.

    SignalFigureSource
    Orgs deploying agents for production code86%Anthropic × Material, 2026
    Orgs citing reliability/hallucination as top barrier55.4%Futurum Group, 1H 2026
    Orgs already monitoring accuracy in production (i.e. after the fact)50.4%Futurum Group, 1H 2026
    Orgs with a confirmed or suspected agent-related security incident88%Gravitee, Feb 2026
    Orgs treating agents as independently auditable identities22%Gravitee, Feb 2026
    Read that table straight through and the pattern is stark. Most organizations are already absorbing failure costs live in production instead of catching them upstream. And when something does go wrong, most can’t even cleanly say whether an agent or a human made the change, because agent actions still route through shared API keys and human credentials rather than independent identities.

    Merritt Baer, CSO at Enkrypt AI and former Deputy CISO at AWS, frames the deeper problem as a false sense of assurance:

    “Enterprises believe they’ve ‘approved’ AI vendors, but what they’ve actually approved is an interface, not the underlying system.” Merritt Baer, CSO, Enkrypt AI · VentureBeat, 2026
    Simon Willison, the Django co-creator who coined the term “prompt injection,” puts the security risk in even starker terms. He’s said publicly that he expects the industry needs something like a Challenger-scale disaster before organizations properly sandbox autonomous agents, noting that most people running these tools, himself included, are effectively “running these coding agents practically as root.”

    NeuralWired has already documented what that looks like in practice. Our recent breakdown of 12 companies whose AI deployments failed includes Replit’s agent deleting a live production database, a concrete answer to the abstract question of “what could go wrong.”

    What engineering leaders should do this quarter

    The teams handling this well aren’t debating whether to trust agents. They’re defining, in writing, which categories of change get zero-human-review autonomy and which don’t.

    • Tier your changes. Routine maintenance and dependency bumps can run autonomous. Auth, payments, and data-deletion paths get a mandatory human checkpoint, no exceptions.
    • Track model provenance per commit. If you can’t currently answer “which agent, which model version, wrote this line” from your own logs, that’s the gap Gravitee’s data says 78% of organizations still have.
    • Move testing beyond unit tests. Property-based and mutation testing catch the failure modes that pattern-matched review misses, which matters more once a human isn’t reading every diff.
    • Reallocate review effort upstream. The highest-leverage human work moves from reading diffs to writing and auditing the specification the agent works from. That’s a different skill, and most teams haven’t trained for it yet.
    • Stress-test your incident attribution before you need it. Run a tabletop exercise: can your team currently prove, from logs alone, whether a specific production incident was agent-caused or human-caused? If not, fix that before scaling autonomy further.
    For teams thinking about the cost side of scaling this kind of pipeline, our recent piece on FinOps and DevOps integration covers the operational spend question this shift creates.

    The case against “review is over”

    Monperrus’s paper drove the news cycle, but it hasn’t gone unchallenged. Critics on Hacker News flagged that the paper’s own section on agent review capability is thin, a single paragraph doing a lot of argumentative work, and some readers suspected AI-generated prose in the paper itself. Fair or not, that undercuts its force as proof the review era has ended.

    A more substantive rebuttal comes from an independent essay response, which argues the reviewer is being superseded but the review itself isn’t disappearing. It’s relocating, from reading diffs to writing specifications and owning accountability, which for most engineering organizations is arguably a harder skill gap to close than diff-reading ever was.

    The benchmark data backs that relocation argument up. On SWE-bench Verified, frontier models now clear roughly 70% or better. On SWE-bench Pro, a contamination-resistant variant built specifically to test genuinely novel engineering problems, the best performers top out near 23%. Agents are strongest exactly where human review historically added the least value: routine, well-precedented changes. They’re weakest exactly where review has always mattered most: novel, high-stakes logic.

    Our read: the “shipping in production” half of this story is real and well-supported by the Anthropic and Augment Code numbers. The “reliability problem is solved” half is not, and Futurum’s own respondents say so directly. Treat any internal productivity claim, including your own team’s, with the same skepticism METR was forced to apply to its own 2026 follow-up study.

    For a wider look at how often agentic AI rollouts stall entirely, see NeuralWired’s earlier analysis of why 70% of AI agent deployments fail, and for a tooling-focused comparison, 7 AI developer tools tested against real benchmarks.

    Frequently asked questions

    Do AI coding agents write production code without human review?
    Yes, increasingly. Anthropic and Material’s 2026 survey of over 500 U.S. technical leaders found 86% of organizations deploy AI coding agents for production code, and 42% already trust agents to lead development with human oversight rather than requiring pre-merge review of every change.

    Are AI coding agents actually faster than human developers?
    The evidence is mixed. METR’s 2025 randomized controlled trial found experienced developers were 19% slower using AI tools despite believing they were about 20% faster. METR’s 2026 follow-up couldn’t reliably re-measure this because too many developers refused to work without AI access at all.

    What percentage of code is AI-generated in 2026?
    A survey of 219 engineering leaders by Augment Code found 48% of all code is now AI-generated, though only 19 of those 219 organizations have formally updated role definitions or hiring practices to reflect the shift.

    How common are AI agent security incidents?
    Very common. Gravitee’s 2026 survey of over 900 executives and technical practitioners found 88% of organizations confirmed or suspected at least one AI-agent-related security incident in the prior year, and only 22% treat AI agents as independently auditable identities.

    What is the biggest barrier to trusting AI coding agents in production?
    Reliability and hallucination management in production, cited by 55.4% of organizations as their top barrier in Futurum Group’s 1H 2026 survey of 820 decision-makers, ahead of cost, integration, or talent concerns.


    What this means going forward

    Here’s what’s actually settled: AI coding agents are writing and shipping production code at a majority of organizations right now, not in some projected future state. That part of the story is well-evidenced across three independent surveys covering more than 1,400 combined respondents.

    What’s not settled: whether removing human review makes software better, worse, or just differently risky. The honest answer, based on everything above, is that it depends entirely on what kind of change is being shipped, and almost no organization has yet drawn that line formally.

    Over the next 6 to 18 months, watch for three things. First, whether insurers and regulators start treating “no human review” as a material risk disclosure, given the EU AI Act’s high-risk provisions taking full effect in August 2026. Second, whether a major, publicly attributed agent-caused incident forces the “Challenger moment” Simon Willison has predicted. Third, whether the 19 out of 219 organizations that have already formalized new engineering roles turn out to be the ones that avoid it.

    Want the next data-backed breakdown before your competitors see it? Subscribe to The Neural Loop at neuralwired.com/newsletter.

  • Siemens Digital Twin Composer: PepsiCo’s 90% Bet (2026)

    Siemens Digital Twin Composer: PepsiCo’s 90% Bet (2026)

    Siemens Digital Twin Composer: PepsiCo’s 90% Factory Bet
    Manufacturing / Industrial AI

    Siemens Built a Factory in Software First. PepsiCo Went First.

  • Klarna, Replit, Zillow: 12 Companies Whose AI Failed

    Klarna, Replit, Zillow: 12 Companies Whose AI Failed

    What 12 Public AI Failures Teach Enterprises | NeuralWired
    AI Governance / Enterprise AI

    What 12 Public AI Failures Teach Enterprises

  • Workday AI Hiring Lawsuit: What HR Must Know in 2026

    Workday AI Hiring Lawsuit: What HR Must Know in 2026

    Mobley v. Workday: Why HR’s AI Hiring Tools Are a Legal Time Bomb
    AI & Employment Law

    Mobley v. Workday: The AI Hiring Lawsuit HR Can’t Ignore

    Derek Mobley applied to more than 150 jobs on Workday’s platform. He got rejected from almost all of them, some in minutes, some at 2 a.m., all by software he never spoke to. Three years later, that rejection pile has turned into the case reshaping how every company in America is allowed to use AI to hire people, and most HR departments still haven’t read the ruling.

    If your company uses an applicant tracking system, a resume screener, or a “candidate scoring” tool built by a vendor, Mobley v. Workday is not background noise. It’s the reason your legal exposure just changed, whether or not anyone told you.

    What Mobley v. Workday Actually Decided

    Filed in February 2023, Mobley v. Workday started as a straightforward discrimination complaint. Derek Mobley, an African American man over 40 with a disclosed disability, alleged Workday’s applicant screening tools rejected him on the basis of race, age, and disability, not the humans who happened to be using the software.

    The legal theory is what made this case different. Mobley didn’t just sue the employers who rejected him. He sued Workday itself, arguing the vendor acted as an “agent” of every employer using its screening tools, and could therefore be held directly liable under federal anti-discrimination law.

    In July 2024, Judge Rita Lin of the Northern District of California let that theory proceed. By May 2025, she certified a collective action under the Age Discrimination in Employment Act, keeping the disparate impact claim alive even after dismissing the intentional discrimination claim. Then, in early 2026, Workday tried a new angle: it argued that a 2024 Supreme Court ruling, Loper Bright Enterprises v. Raimondo, which ended Chevron deference, should invalidate decades of precedent applying age discrimination protections to job applicants, not just existing employees.

    Judge Lin didn’t buy it. She found the EEOC’s longstanding interpretation “persuasive” under a lower legal standard called Skidmore deference, and let the applicant claims move forward.

    Why this matters if you’re not being sued: the “agent” theory means your AI vendor’s exposure and your company’s exposure are no longer separate questions. If the vendor gets sued and loses, the precedent lands on your desk too, whether your contract says the vendor is liable or not.
    There’s a second wrinkle most compliance guides skip. In May 2026, a magistrate judge denied a motion to force Workday to hand over its internal bias-testing data, ruling that because Workday’s lawyers curated the data for legal advice, it was protected by attorney-client privilege. That’s a genuinely uncomfortable fact for anyone selling “just audit everything and publish it” as the safe path. Routing bias testing through counsel can shield results from discovery. It can also sit awkwardly next to public disclosure laws that assume the opposite. More on that tension below.

    The Lawsuits Stacking Up Behind Mobley

    Mobley isn’t an outlier anymore. It’s a template. Three other cases filed in 2026 use variations of the same argument, and each one targets a different weak point in how companies deploy AI screening.

    • Kistler & Bhaumik v. Eightfold AI (filed January 2026): plaintiffs allege Eightfold, used by companies including Microsoft and PayPal, secretly generated “likelihood of success” scores on a 0 to 5 scale without disclosing it, a claim built on the Fair Credit Reporting Act and California’s investigative consumer reporting law rather than discrimination statutes.
    • Swanson v. IBM (filed May 2026): a 24-year IBM employee alleges age discrimination tied to an AI-generated rejection following a 2024 layoff, applying Mobley’s logic to a company’s own internal tool rather than a third-party vendor.
    • Harper v. SiriusXM (filed 2025): alleges screening software used education and home address, essentially race proxies, across roughly 150 applications.
    Notice what’s happening here. These aren’t four versions of the same lawsuit. They’re four different legal theories converging on the same conclusion: courts are willing to treat algorithmic hiring decisions the same way they’d treat a human recruiter’s decisions, and sometimes with less patience.

    The Stanford Study That Broke the “We Passed Our Audit” Defense

    If Mobley is the legal story, a Stanford study published in May 2026 is the data story, and it’s the more damaging one for HR teams who thought a vendor’s compliance certificate meant they were covered.

    Researchers led by Rishi Bommasani at Stanford HAI, alongside Sarah Bana, Kathleen Creel, Dan Jurafsky, and Percy Liang, analyzed more than 4 million job applications from roughly 3 million applicants across 156 large employers, all screened through the same vendor’s algorithm, Pymetrics (now owned by Harver). The paper, “Algorithmic Monocultures in Hiring,” is headed to ACM FAccT in Montreal.

    Here’s the finding that should worry every HR leader relying on a vendor’s own bias report: when the researchers examined outcomes position by position, the legally correct method under the “four-fifths rule” used in U.S. employment law, they found 10.62% of the 1,746 job positions studied showed adverse impact against Black applicants. The vendor’s own published, aggregated audits showed no measurable bias at all.

    “I think the most significant result of our study is how much bias we find in this algorithmic hiring system. The vendor has published aggregated audits that demonstrate that their tools do not demonstrate measurable bias. I was surprised because I thought that their algorithms would be an example of best practice.” Sarah Bana, Digital Fellow, Stanford Digital Economy Lab, via Stanford Digital Economy Lab Q&A
    The study also surfaced something new to the compliance conversation: “systemic rejection.” Among applicants who applied to four positions through the same vendor, 10% were rejected from every single one, a rate the researchers show is statistically inconsistent with independent decisions (a chi-squared value of 18,481, for the statistically inclined). One vendor’s algorithm, used across hundreds of employers, can create a single point of failure that no individual company’s internal audit would ever catch.

    “I don’t think we want to discourage the application of AI in this domain, but recognize the stakes are high and be judicious in the approach.” Rishi Bommasani, Senior Research Scholar, Stanford HAI
    Bommasani’s framing matters. This isn’t an argument to rip out AI screening tools. It’s an argument that the industry’s go-to proof of fairness, a vendor’s own aggregated audit, isn’t proof of anything at the level that actually matters legally: the individual job position.

    The State Law Patchwork HR Teams Are Missing

    While the federal government has pulled back on AI hiring enforcement (the EEOC’s 2023 guidance on AI screening was quietly removed from its website, and an April 2025 executive order directs agencies to deprioritize disparate impact claims generally), states and cities are moving in the opposite direction. If your governance plan is built around federal rules alone, it’s already out of date.

    JurisdictionRuleStatus in 2026
    New York CityLocal Law 144: annual bias audits for Automated Employment Decision ToolsIn force since 2023; enforcement was found weak by state auditors, tighter enforcement promised for 2026
    ColoradoSB 26-189 (replaced the original SB 24-205)Delayed to January 1, 2027; scaled back from a broad duty of care to a narrower notice-and-review regime
    IllinoisAI employment decision disclosure statuteIn effect since January 1, 2026
    CaliforniaCivil Rights Council ADS rules and CPPA ADMT rulesEffective October 2025 and January 2026; make bias testing (or its absence) explicit evidence in discrimination claims
    New York City’s law is the one worth paying closest attention to, and not for the reason most compliance memos suggest. A December 2025 audit by the New York State Comptroller found the city’s own enforcement agency had reviewed 32 companies and identified just one non-compliance issue. Independent auditors reviewing the exact same 32 companies found at least 17. Roughly three-quarters of test calls to the city’s complaint hotline never even reached the right department.

    That’s the “toothless law” era. It’s ending. The Comptroller’s findings came with a public commitment from the city’s consumer affairs department to tighten enforcement in 2026, which means the penalty structure, $500 to $1,500 per violation per day, with each day of non-compliant use counted separately, is about to start getting used the way it was written. A single non-compliant screening tool left unaudited for a month can generate $15,000 to $45,000 in exposure before any per-candidate multiplier even applies.

    Companies covered by NYC’s rule, even if they’re not based there: Local Law 144 applies to any employer or agency using an AEDT to evaluate NYC-based candidates, including remote roles. If you hire remote employees who happen to live in the five boroughs, this law already applies to you.
    For context on how the parallel financial-sector and healthcare rules are moving, including the EU AI Act’s shifting high-risk deadlines and the Fed’s model risk guidance, NeuralWired covered the sector-by-sector explainability requirements in detail in our EU AI Act 2026 explainer. This piece deliberately doesn’t retread that ground; the hiring track runs on its own, older set of laws (Title VII, the ADEA, the ADA) that are largely immune to the federal deregulatory pressure hitting newer AI-specific state statutes.

    What an Actual Governance Framework Looks Like

    Most companies deploying AI hiring tools in 2026 don’t have a governance gap because nobody’s heard of NIST or ISO. They have a gap because the frameworks that exist are voluntary, self-attested, and easy to satisfy on paper while missing the exact problem the Stanford study exposed.

    A framework that actually reduces risk, rather than just producing a policy binder, needs a few specific things:

    • Position-by-position bias testing, not aggregated audits. The Stanford study proves aggregated numbers can hide double-digit adverse impact rates at the individual job level.
    • A documented vendor liability allocation. Mobley shows vendors can be directly liable, and that employers can’t assume the vendor absorbs all the risk just because the contract says so.
    • An inventory of every AEDT actually in use, including tools embedded inside applicant tracking systems that HR may not realize qualify as automated decision tools under NYC or California rules.
    • A deliberate, documented choice about whether bias testing runs through counsel (for privilege protection) or is conducted for public disclosure (as LL144 requires). Doing both without a plan creates contradictions a plaintiff’s attorney will find.
    • Human review checkpoints that are real, not rubber-stamp, since Colorado’s revised law and California’s ADMT rules both lean on documented human oversight as a compliance anchor.
    Roughly 12% of enterprises currently have what researchers classify as “mature” AI governance processes, according to HFS Research and Infosys data cited in industry analysis published in 2026, despite how widely these tools are already deployed. That gap is the story. The tools showed up years before the governance did.

    Why “We Have a Framework” Isn’t the Same as “We’re Safe”

    Here’s the uncomfortable part of this story that vendors selling governance platforms don’t lead with: adopting NIST’s AI Risk Management Framework or getting ISO 42001 certified demonstrates that you have a process. It doesn’t independently verify that anyone actually ran the specific test that matters, position-level adverse impact analysis, on your specific tool, on your specific job postings.

    Our read: the industry has spent three years selling “governance” as a checkbox exercise, and the Stanford study is the first large, methodologically serious dataset to show what happens when the checkbox gets checked but the underlying test never runs. A vendor’s aggregated audit passed. Real candidates still lost out because of their race, at the position level, in over one in ten jobs studied.

    The regulatory landscape isn’t converging around a clean answer either. The EU is delaying high-risk AI obligations, currently expected to shift from August 2026 to December 2027, pending formal adoption of the “Digital Omnibus” package. Colorado gutted its own comprehensive AI law and pushed it back eighteen months. The EEOC pulled its guidance. Meanwhile New York City, Illinois, and California are all tightening in the same window. A framework calibrated to satisfy one jurisdiction won’t satisfy the others, and right now those jurisdictions are moving in opposite directions inside the same country.

    Is a rushed governance rollout actually going to hold up? Probably not, if it’s built to today’s rules rather than to the underlying civil rights statutes (Title VII, the ADEA, the ADA) that Mobley and its sibling cases are actually built on. Those laws aren’t going anywhere, regardless of what happens to any single state’s AI-specific statute.

    FAQ

    Can a company be sued for AI hiring bias?

    Yes. Mobley v. Workday established that an AI vendor can be directly liable for employment discrimination under an “agent” theory, not just the employer using the tool. The case allows disparate impact claims to proceed under the ADEA, ADA, and Title VII based on algorithmic outcomes alone, without proof of intentional bias.

    What is NYC Local Law 144?

    It requires any employer or agency using an Automated Employment Decision Tool on NYC-based candidates to commission an independent bias audit within the prior 12 months, publicly post a summary, and give candidates 10 business days’ notice before use. Penalties run $500 to $1,500 per violation per day.

    Does a vendor’s bias audit guarantee an AI hiring tool is fair?

    Not necessarily. A 2026 Stanford-led study of 4 million job applications found a vendor’s own published, aggregated audit showed no measurable bias, while independent position-by-position analysis, the method U.S. employment law actually applies, found adverse impact against Black applicants in over 10% of individual job positions.

    Is the EEOC still enforcing AI hiring rules in 2026?

    The EEOC’s 2023 guidance on AI hiring discrimination was removed from its website, and a 2025 executive order directs federal agencies to deprioritize disparate impact theories generally. Private litigants can still pursue these claims independently, and state and local laws in New York City, Illinois, and California have separately tightened requirements.


    Where This Goes Next

    Three things are now true that weren’t true two years ago. AI hiring vendors can be sued directly, not just the employers who use their tools. A vendor’s own bias audit is no longer credible proof of fairness on its own. And the regulatory map is fragmenting rather than converging, with federal enforcement receding just as city and state rules tighten.

    Watch three things over the next 6 to 18 months: how NYC’s promised 2026 enforcement crackdown actually plays out once the Comptroller’s findings force DCWP’s hand, whether the Mobley discovery ruling on attorney-client privilege gets tested again as more plaintiffs demand vendor bias data, and whether the EU’s Digital Omnibus delay to December 2027 actually gets formally adopted or falls apart before the original August 2026 deadline.

    If your company runs any AI screening tool and hasn’t run a position-level bias check on it, independent of whatever your vendor handed you, that’s the gap to close first, not the last one.

    Subscribe to The Neural Loop for the stories HR, legal, and compliance teams need before they hit the docket.

  • Deloitte AI Hallucination Report: FINRA’s 2026 Warning

    Deloitte AI Hallucination Report: FINRA’s 2026 Warning

    Deloitte’s AI Hallucination Cost $290K. FINRA Is Watching Enterprise AI / Compliance

    Deloitte’s AI Hallucination Cost $290K. FINRA Is Watching

  • Anthropic Copyright Case: 6 Countries Disagree (2026)

    Anthropic Copyright Case: 6 Countries Disagree (2026)

    AI Copyright Rulings Diverge Across 6 Countries in 2026
    GLOBAL AI POLICY

    Your AI Content Runs on Copyrighted Data. Six Countries Now Disagree on What That Means.

  • UiPath vs RPA: Why Intelligent Automation Wins in 2026

    UiPath vs RPA: Why Intelligent Automation Wins in 2026

    Enterprise Automation

    RPA vs Intelligent Automation: Why Most Bots Died by 2026

    Somewhere in your company right now, an RPA bot is failing silently because a vendor moved a button. It happens to 30 to 50 percent of RPA deployments within roughly two years, according to research widely cited by EY, and it’s the reason “RPA vs intelligent automation” has become the question every automation leader is asking in 2026. The short version: RPA automates clicks, intelligent automation automates judgment, and the gap between those two things is where enterprise budgets are currently bleeding out.

    This isn’t a hype piece about agents replacing everything. It’s the opposite. The data on agentic AI’s own failure rate is arguably worse than RPA’s. If you’re a CTO, VP of Automation, or enterprise architect deciding whether to patch, migrate, or kill your existing bot fleet, here’s what the numbers actually say.

    What Actually Changed Between RPA and Intelligent Automation

    Robotic process automation was built for a world that no longer exists. It emerged in the early 2010s as a way to automate repetitive desktop work without needing API access. Bots clicked buttons and typed into fields exactly where a human would, reading fixed screen coordinates like a script memorized by rote. That worked fine when enterprise software interfaces stayed still for years at a time.

    They don’t anymore. SaaS vendors now push UI updates continuously. A single moved button, renamed field, or redesigned login screen can be enough to break a bot that took months to build. Intelligent automation, sometimes bundled under the term “hyperautomation,” layers machine learning, natural language processing, and increasingly agentic reasoning on top of that same automation goal, so a system can interpret unstructured data and adjust when the interface underneath it changes.

    DimensionTraditional RPAIntelligent Automation
    How it interacts with softwareFixed screen coordinates, clicks, keystrokesAPIs, reasoning, adaptive interpretation
    Handles unstructured dataPoorly or not at allCore capability (documents, emails, judgment calls)
    Breaks when UI changesFrequentlyMore resilient, not immune
    Documented failure rate30 to 50 percent of projects abandonedUp to 40 percent of agentic projects forecast for cancellation by 2027

    Why Do RPA Bots Break So Often?

    Because they were never actually reading the software they automated. A traditional bot doesn’t know what a “submit” button is; it knows that a button exists at pixel coordinates 412, 220. Change the layout and the bot is blind. Multiply that fragility across every vendor portal, browser update, and internal application a large enterprise touches, and you get a maintenance problem that scales with how often other people’s software changes, not with how well your team built the bot in the first place.

    The number that anchors this whole story: Research cited widely across the automation industry, originating with EY, puts RPA project abandonment at 30 to 50 percent within roughly two years of deployment. It’s the most repeated failure statistic in the category, and it’s the reason “RPA is dead” headlines keep resurfacing every year since 2022.

    The Hidden Cost Nobody Budgets For

    Here’s the part most vendor pitches leave out. According to HfS Research, software licensing represents only 25 to 30 percent of an RPA program’s total cost of ownership. The remaining 70 to 75 percent goes to implementation, governance, training, and ongoing maintenance, much of it driven directly by the UI-breakage problem described above. Separate industry estimates put annual maintenance alone at 15 to 20 percent of the original investment, every single year, indefinitely, for as long as the bot fleet stays in production.

    That’s the real story behind “RPA vs intelligent automation.” It was never really about which technology looks more impressive in a demo. It’s about which one has a cost structure your finance team can actually plan around.

    Agent Washing: The Term You Need to Know

    Gartner coined a phrase in 2025 that every buyer in this market should know before their next vendor call: agent washing. It describes legacy RPA and chatbot tools getting rebranded as “AI agents” without any genuine planning, reasoning, or autonomous capability behind the label. Gartner’s own estimate suggests only a small fraction of vendors claiming agentic AI, roughly 130 out of thousands making the claim, actually deliver it.

    That matters because it means a meaningful share of what enterprises think they bought as “intelligent automation” in 2025 and 2026 is architecturally identical to the RPA they were trying to replace, just with a chat interface bolted on top.

    UiPath’s Own Numbers Tell the Real Story

    If you want proof that the market leader itself sees this as evolution rather than a clean break, look at UiPath. The company reported fiscal 2026 annual recurring revenue of $1.853 billion, up 11 percent year over year, and followed it with first-quarter fiscal 2027 growth of 12 percent to $1.901 billion. It was also UiPath’s first full fiscal year of GAAP profitability, a sharp turn from a stock that once traded near 50 times revenue at its 2021 IPO peak before resetting to roughly 3 times trailing revenue by early 2026.

    “Deterministic automation, agentic AI, and enterprise-grade orchestration together on a single platform… the execution layer enterprises trust to run mission-critical processes in the agentic era.” Daniel Dines, Founder & CEO, UiPath, Q4 FY2026 earnings release, March 11, 2026
    Notice what Dines didn’t say: that agents replace RPA. He described a platform that keeps deterministic (rule-based, RPA-style) automation and adds agentic reasoning on top, which UiPath reinforced by acquiring compliance-focused AI agent vendor WorkFusion in February 2026. That’s the bellwether pattern showing up across the industry: augmentation, not replacement.

    You can read the full UiPath FY2026 earnings release directly from the company’s investor relations page.

    The Skeptics: Why Agentic AI Isn’t a Clean Fix Either

    This is the part the optimistic version of this story tends to skip. If RPA’s failure rate is the villain, agentic AI’s own numbers should give you pause before you treat it as the hero.

    The MIT NANDA initiative’s August 2025 study, based on an analysis of 300 public AI deployments, 150 executive interviews, and a broader employee survey, found that 95 percent of enterprise generative AI pilots fail to deliver measurable profit-and-loss impact. Only around 5 percent make it to production with measurable value. Gartner, separately, forecasts more than 40 percent of agentic AI projects will be cancelled by the end of 2027, citing rising costs, unclear business value, and thin risk controls.

    Roughly 80 percent of organizations report AI-driven workforce reductions that have not translated into measurable returns. Helen Poitevin, Distinguished VP Analyst, Gartner, press release, May 5, 2026
    Poitevin’s research, drawn from a Gartner survey of 350 global executives at companies with over $1 billion in revenue, argues that autonomous business initiatives may actually create more work for people over time, not less, partly because of demographic shifts and because trust-dependent customer interactions still need a human behind them. That’s a direct counterweight to any pitch that frames agents as a headcount-reduction shortcut.

    Then there’s the researcher who helped build the foundations of this technology in the first place.

    Agents are “cognitively lacking” and current agentic output amounts to “slop,” with roughly a decade of work needed before the reliability issues are resolved. Andrej Karpathy, Co-founder, OpenAI, Dwarkesh Podcast, reported October 2025
    Karpathy’s critique lines up with a structural problem in how multi-step agents actually fail. Reliability compounds multiplicatively across steps: an agent that’s 95 percent reliable on any single step only completes a ten-step workflow successfully about 60 percent of the time. Drop per-step reliability to 85 percent, and full-workflow success falls to roughly 20 percent. Forrester’s 2026 research adds another wrinkle, finding that more than half of enterprises experience what it calls “agentic sprawl,” overlapping systems, duplicated work, and unpredictable agent behavior, even when governance frameworks are already in place.

    McKinsey’s 2026 AI Trust Maturity survey backs this up from a different angle: 51 percent of organizations have already experienced at least one negative AI consequence, most commonly inaccuracy, and only around 30 percent have reached a mature level of governance over agentic systems. An agent that takes a wrong real-world action is a fundamentally different risk than a chatbot that gives a wrong answer.

    What Automation Leaders Should Actually Do in 2026

    Given both failure rates, wholesale replacement of one brittle bet with another brittle bet isn’t a strategy. The pattern showing up across 2026 research, and in UiPath’s own product direction, points somewhere more boring and more useful: agents handle judgment and unstructured data, RPA scripts still handle the repetitive execution underneath them.

    • Audit before you migrate. Separate stable, well-built bots from what one analyst community calls “graveyard bots,” the ones already degraded or half-broken. Don’t spend agentic-AI budget rescuing scripts that were dying anyway.
    • Demand evidence, not marketing language. Given how common agent washing is, ask vendors for governance certifications such as ISO/IEC 42001 or independent benchmark evidence, not just the word “agentic” in a slide deck.
    • Budget for maintenance either way. Agentic systems have their own failure modes, hallucination, permission sprawl, multi-step reliability collapse, that are different from RPA’s UI-brittleness, not absent from the category entirely.
    • Treat this as an architecture decision, not a swap. Gartner’s forecast that AI agent software spending will climb from $86.4 billion in 2025 to $206.5 billion in 2026 and $376.3 billion in 2027 means capital is moving fast. Moving fast is not the same as moving safely.
    Gartner’s own Hype Cycle for Agentic AI, published April 2026, places the technology somewhere between the Peak of Inflated Expectations and the Trough of Disillusionment. Translation: this is exactly the phase where over-promised deployments get cancelled before real production maturity shows up. Genuine architectural gains exist for unstructured data and exception handling. A universal, drop-in replacement for RPA on a 2026 timeline does not.

    Frequently Asked Questions

    What is the difference between RPA and intelligent automation?
    RPA uses rule-based bots that click through fixed screen coordinates to mimic human actions, breaking whenever a UI changes. Intelligent automation combines RPA with AI, including machine learning, natural language processing, and increasingly agentic reasoning, so systems can interpret unstructured data and adapt when interfaces or inputs change.

    Why do RPA bots break so often?
    Traditional RPA bots are scripted against fixed screen coordinates, button positions, and field names. When a vendor updates a UI, even by moving one button, the bot can no longer find the element it needs and fails. That fragility is a major reason 30 to 50 percent of RPA projects get abandoned within about two years.

    What percentage of RPA projects fail?
    Widely cited industry research puts RPA project abandonment at 30 to 50 percent within roughly two years of deployment. Separately, HfS Research found licensing is only 25 to 30 percent of total RPA cost of ownership, with the rest going to implementation, governance, and maintenance driven largely by UI-breakage fixes.

    Is agentic AI replacing RPA in 2026?
    Not wholesale. Gartner reports only 17 percent of enterprises had deployed AI agents as of early 2026, and forecasts over 40 percent of agentic AI projects will be cancelled by 2027. Most enterprises are layering agents for judgment and unstructured data on top of existing RPA rather than fully replacing it.

    How much does RPA maintenance really cost?
    According to HfS Research, software licensing represents only 25 to 30 percent of RPA’s total cost of ownership. The remaining 70 to 75 percent covers implementation, governance, and maintenance, much of it driven by bots breaking when interfaces or vendor portals update. Annual maintenance alone commonly runs 15 to 20 percent of the original investment.

    What is agent washing?
    Agent washing is Gartner’s term for vendors rebranding existing RPA tools or basic chatbots as AI agents without genuine agentic capability, meaning real planning, reasoning, and autonomous multi-step action. Gartner estimates only a small fraction of vendors claiming agentic AI, roughly 130 out of thousands, actually offer it.


    Where This Goes Next

    The honest read on RPA vs intelligent automation in 2026 isn’t that one technology won and the other lost. It’s that both have documented, well-measured failure rates, and the enterprises pulling ahead are the ones treating this as portfolio management instead of a technology upgrade. RPA isn’t dead. It’s being absorbed into something larger, the same way UiPath itself absorbed WorkFusion instead of walking away from its own RPA heritage.

    Watch three things over the next 6 to 18 months: whether Gartner’s 40-percent agentic-project cancellation forecast actually plays out by 2027, whether more RPA vendors follow UiPath’s earnings pattern toward profitability as they add agentic layers, and whether governance standards like ISO/IEC 42001 become a real purchasing requirement instead of a nice-to-have. The winners in this category won’t be the ones with the flashiest agent demo. They’ll be the ones who can prove, with a paper trail, that their automation actually works in production and not just in a sales pitch.

    Want the next research-backed breakdown before it hits the feed? Subscribe to The Neural Loop at neuralwired.com/newsletter.