<?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: Himanshu Vaghela</title>
    <description>The latest articles on DEV Community by Himanshu Vaghela (@himanshu-vaghela9).</description>
    <link>https://dev.to/himanshu-vaghela9</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%2F3992641%2Fa4a931bb-efd0-40f4-a26f-6a412f30fb35.png</url>
      <title>DEV Community: Himanshu Vaghela</title>
      <link>https://dev.to/himanshu-vaghela9</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/himanshu-vaghela9"/>
    <language>en</language>
    <item>
      <title>The Human in the Loop Fallacy: Why 'Someone Will Check' Is Not a Control</title>
      <dc:creator>Himanshu Vaghela</dc:creator>
      <pubDate>Mon, 27 Jul 2026 19:30:04 +0000</pubDate>
      <link>https://dev.to/himanshu-vaghela9/the-human-in-the-loop-fallacy-why-someone-will-check-is-not-a-control-54ca</link>
      <guid>https://dev.to/himanshu-vaghela9/the-human-in-the-loop-fallacy-why-someone-will-check-is-not-a-control-54ca</guid>
      <description>&lt;p&gt;There is a moment in every AI deployment conversation that should make security people flinch.&lt;/p&gt;

&lt;p&gt;Someone says: "Don't worry, there's a human in the loop."&lt;/p&gt;

&lt;p&gt;And everyone nods.&lt;/p&gt;

&lt;p&gt;Let me tell you why that nod is dangerous.&lt;/p&gt;

&lt;h2&gt;
  
  
  What "Human in the Loop" Actually Means
&lt;/h2&gt;

&lt;p&gt;Let's look at how AI output becomes business action in most organisations today:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;LLM generates a summary of a customer support ticket&lt;/li&gt;
&lt;li&gt;Human reads it quickly between meetings&lt;/li&gt;
&lt;li&gt;Human clicks "send" because it looks fine&lt;/li&gt;
&lt;li&gt;Output becomes action, the customer gets that response&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Was there a human in the loop? Yes. Was there verification? Barely.&lt;/p&gt;

&lt;p&gt;The gap between "a human saw this" and "a human verified this with the right context, authority, and accountability" is where most AI risk lives.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Three Illusions of "Human in the Loop"
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Illusion 1: Presence = Verification
&lt;/h3&gt;

&lt;p&gt;Just because a human sees AI output doesn't mean they verified it. Research shows that humans in AI assisted workflows:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Accept AI suggestions 80%+ of the time (automation bias)&lt;/li&gt;
&lt;li&gt;Spend under 3 seconds reviewing AI generated content before acting&lt;/li&gt;
&lt;li&gt;Are more likely to approve output when it's well formatted, even if factually wrong&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The control is not working if the human isn't really checking.&lt;/p&gt;

&lt;h3&gt;
  
  
  Illusion 2: Familiarity = Authority
&lt;/h3&gt;

&lt;p&gt;The person reviewing AI output is rarely the person who should be making the decision.&lt;/p&gt;

&lt;p&gt;In practice:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A junior support agent reviews an AI drafted escalation recommendation&lt;/li&gt;
&lt;li&gt;A developer approves an AI generated code change their manager won't see&lt;/li&gt;
&lt;li&gt;A compliance officer signs off on AI drafted regulatory filings&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The "human in the loop" is often the wrong human, present but not authorised.&lt;/p&gt;

&lt;p&gt;Presence without authority is theatre, not control.&lt;/p&gt;

&lt;h3&gt;
  
  
  Illusion 3: Retrospective Oversight = Prevention
&lt;/h3&gt;

&lt;p&gt;Some teams interpret "human in the loop" as: "We'll audit AI decisions after they happen."&lt;/p&gt;

&lt;p&gt;This is not a control. This is a post mortem.&lt;/p&gt;

&lt;p&gt;When AI output has already triggered a payment, sent a regulatory communication, or modified a production configuration, reviewing it afterwards doesn't undo the action.&lt;/p&gt;

&lt;p&gt;If you can only detect the failure after it executes, you don't have a loop. You have a log.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Actually Works: Verification Before Execution
&lt;/h2&gt;

&lt;p&gt;The difference between human in the loop and human verification is simple:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Dimension&lt;/th&gt;
&lt;th&gt;Human in the Loop&lt;/th&gt;
&lt;th&gt;Human Verification&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;When&lt;/td&gt;
&lt;td&gt;During or after&lt;/td&gt;
&lt;td&gt;Before execution&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;What's checked&lt;/td&gt;
&lt;td&gt;Output looks fine&lt;/td&gt;
&lt;td&gt;Claims are true, authority is valid, scope is correct&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Who checks&lt;/td&gt;
&lt;td&gt;Available human&lt;/td&gt;
&lt;td&gt;Authorised human with context&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Evidence&lt;/td&gt;
&lt;td&gt;None kept&lt;/td&gt;
&lt;td&gt;Verifiable record&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Can fail?&lt;/td&gt;
&lt;td&gt;Yes, by design&lt;/td&gt;
&lt;td&gt;Failures are blocked&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;In an AI verification system:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;AI produces output, a recommendation, a draft, an analysis&lt;/li&gt;
&lt;li&gt;Verification checks execute, is the source cited real? Does the human have authority for this action? Is the scope within policy?&lt;/li&gt;
&lt;li&gt;Human reviews with context, not just the output, but the verification findings&lt;/li&gt;
&lt;li&gt;Human makes an informed decision, approve, reject, or escalate&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is what we call Execution Assurance at LumiRosh. The output is not the evidence. The verification before execution is the evidence.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Matters Now
&lt;/h2&gt;

&lt;p&gt;We are in a period where AI deployment is accelerating faster than control design.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;73% of production AI deployments are vulnerable to prompt injection, and only 11% of organisations have implemented governance frameworks for AI agents (OWASP 2026)&lt;/li&gt;
&lt;li&gt;Automated AI decisions are doubling every 6 months&lt;/li&gt;
&lt;li&gt;Regulatory pressure (EU AI Act Article 14) now mandates meaningful human oversight&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The organisations that treat "human in the loop" as a checkbox will be the ones discovering compliance gaps the hard way.&lt;/p&gt;

&lt;p&gt;The ones that build real verification will have the audit trail to prove it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Bottom Line
&lt;/h2&gt;

&lt;p&gt;If your AI deployment has a human somewhere in the vicinity of the output, you do not have a control.&lt;/p&gt;

&lt;p&gt;You have a false sense of one.&lt;/p&gt;

&lt;p&gt;Verification is a design problem, not a seating chart. If the human is not equipped, authorised, and required to check before action, they are not in the loop. They are in the way.&lt;/p&gt;

&lt;p&gt;I work on AI Execution Verification at LumiRosh Research, mapping where output becomes action, and where human judgment needs a stronger control point.&lt;/p&gt;

&lt;p&gt;Connect:&lt;br&gt;
&lt;a href="https://linkedin.com/in/himanshu-vaghela9" rel="noopener noreferrer"&gt;linkedin.com/in/himanshu-vaghela9&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>security</category>
      <category>governance</category>
      <category>verification</category>
    </item>
    <item>
      <title>The Architecture Of Execution Assurance</title>
      <dc:creator>Himanshu Vaghela</dc:creator>
      <pubDate>Fri, 19 Jun 2026 13:30:50 +0000</pubDate>
      <link>https://dev.to/himanshu-vaghela9/the-architecture-of-execution-assurance-2p3e</link>
      <guid>https://dev.to/himanshu-vaghela9/the-architecture-of-execution-assurance-2p3e</guid>
      <description>&lt;p&gt;A team deploys AI into a real workflow.&lt;/p&gt;

&lt;p&gt;Output starts flowing. Speed increases. Everyone feels progress.&lt;/p&gt;

&lt;p&gt;Then something breaks. A decision was made but no one can explain why. The AI approved an expense, rejected a candidate, or escalated a ticket. And when someone asks "why did it do that?" the answer is silence.&lt;/p&gt;

&lt;p&gt;This is unverified execution. And it is the single biggest risk in AI adoption today.&lt;/p&gt;

&lt;p&gt;At LumiRosh, we built the AI Execution X-Ray a 5-day forensic diagnostic that answers three questions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;What is your AI actually deciding?&lt;/li&gt;
&lt;li&gt;Can you verify those decisions?&lt;/li&gt;
&lt;li&gt;Is there an audit trail?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The answer for most companies: they have speed, but zero accountability.&lt;/p&gt;

&lt;p&gt;Here is what we have found across 30+ organizations:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Pattern&lt;/strong&gt;&lt;br&gt;
Every team follows the same arc. They start with a pilot one workflow, one AI tool. The output looks good. They expand. Within weeks, AI is embedded in decisions they never intended. No governance. No verification layer. Just trust.&lt;/p&gt;

&lt;p&gt;And trust is not an audit trail.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Fix&lt;/strong&gt;&lt;br&gt;
Execution Assurance is not about slowing down. It is about building a verification layer into the workflow a zero-trust checkpoint that says: every AI decision must be reproducible, verifiable, and attributable.&lt;/p&gt;

&lt;p&gt;No governance theater. No compliance paperwork. Just evidence.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Result&lt;/strong&gt;&lt;br&gt;
Companies that implement Execution Assurance catch hallucinations before they reach the customer. They sleep better at night because they know not hope that their AI is doing what it was told.&lt;/p&gt;

&lt;p&gt;We wrote the full Architecture of Execution Assurance on Medium. Link in bio.&lt;/p&gt;

&lt;p&gt;Find me at &lt;br&gt;
&lt;a href="//himanshu-vaghela9.medium.com"&gt;Himanshu Vaghela&lt;/a&gt; or &lt;a href="https://www.linkedin.com/in/himanshu-vaghela9/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>security</category>
      <category>verification</category>
      <category>governance</category>
    </item>
  </channel>
</rss>
