<script data-pm-proxy="intercept"></script><?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"><channel><title><![CDATA[Bill Faruki]]></title><description><![CDATA[Founder & CEO of MindHYVE™ | Chairman, California Institute of AI | Building agentic AI systems that think, reason, and adapt. Pioneering federated intelligence across education, healthcare, and legal verticals.]]></description><link>https://billfaruki.substack.com</link><image><url>https://substackcdn.com/image/fetch/$s_!8554!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbillfaruki.substack.com%2Fimg%2Fsubstack.png</url><title>Bill Faruki</title><link>https://billfaruki.substack.com</link></image><generator>Substack</generator><lastBuildDate>Wed, 02 Sep 2026 06:45:54 GMT</lastBuildDate><atom:link href="/__u/billfaruki.substack.com/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[Bill Faruki]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[billfaruki@substack.com]]></webMaster><itunes:owner><itunes:email><![CDATA[billfaruki@substack.com]]></itunes:email><itunes:name><![CDATA[Bill Faruki]]></itunes:name></itunes:owner><itunes:author><![CDATA[Bill Faruki]]></itunes:author><googleplay:owner><![CDATA[billfaruki@substack.com]]></googleplay:owner><googleplay:email><![CDATA[billfaruki@substack.com]]></googleplay:email><googleplay:author><![CDATA[Bill Faruki]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[The Scaffolding Comes Down]]></title><description><![CDATA[Why the industry spent two years building orchestration it is now deleting &#8212; and what is left standing when it goes.]]></description><link>https://billfaruki.substack.com/p/the-scaffolding-comes-down</link><guid isPermaLink="false">https://billfaruki.substack.com/p/the-scaffolding-comes-down</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Thu, 27 Aug 2026 09:43:05 GMT</pubDate><content:encoded><![CDATA[<p>In the summer of 2022, I started building agentic AI, except nobody called it that yet.</p><p>There was no word for a system that reasons through a professional&#8217;s work rather than answering a professional&#8217;s question. There were no frameworks. There was no agent stack diagram, no orchestration layer, no harness, no MCP.</p><p>There was a conviction, which I could not yet defend with anything except the conviction itself:</p><p><strong>The thing worth owning was not access to a model, but the reasoning a domain requires &#8212; held somewhere the model could not take back.</strong></p><p>Four years on, the industry has built an enormous amount of machinery on the opposite bet.</p><p>And this year, it started tearing that machinery down.</p><p>I want to write about what is coming down, why, and what is left standing when it goes.</p><p>This is not a victory lap.</p><p>It is an argument about which assets survive a model release, made at the moment the field is discovering the answer the expensive way.</p><p></p><p><strong>What the Industry Built Instead</strong></p><p>Between 2023 and 2025, the dominant answer to <em>&#8220;How do we make a model do real work?&#8221;</em> was:</p><p><strong>Put a controller above it.</strong></p><p>LangGraph. CrewAI. Google&#8217;s ADK. OpenAI&#8217;s Agents SDK. Microsoft&#8217;s Semantic Kernel. Amazon&#8217;s Strands. LlamaIndex.</p><p>Different abstractions, one architecture.</p><p>An external orchestrator tracks state and injects instructions at every turn. Enormous engineering investment went into this &#8212; by the companies building the frameworks and by everyone adopting them.</p><p>The architecture made sense for the models of 2023.</p><p>A model that could not hold a long procedure in its head needed the procedure held for it.</p><p>So the field built the holding.</p><p>Then the models got better.</p><p><strong>And the holding became the constraint.</strong></p><p></p><p><strong>The Measurement That Should Change How You Plan</strong></p><p>In May, a team at Melbourne published a controlled comparison that I think is one of the most consequential applied-AI results of the year &#8212; and almost nobody in the vertical AI conversation has read it.</p><p>They took three procedural domains:</p><ul><li><p>Travel booking &#8212; 14 nodes</p></li><li><p>Technical support &#8212; 14 nodes</p></li><li><p>Insurance claims &#8212; 55 nodes</p></li></ul><p>They ran <strong>200 conversations per condition, per domain</strong>.</p><p>Same model on both sides.</p><p>The only variable was architecture:</p><p><strong>Option one:</strong> an external LangGraph orchestrator.</p><p><strong>Option two:</strong> the entire procedure serialized into the system prompt, with the model left to route itself.</p><p>The in-context approach won <strong>every metric in every domain</strong>.</p><p>Fifteen out of fifteen comparisons.</p><p>The orchestrated system failed on:</p><ul><li><p><strong>24%</strong> of travel conversations</p></li><li><p><strong>9%</strong> of support conversations</p></li><li><p><strong>17%</strong> of insurance conversations</p></li></ul><p>The unorchestrated baseline failed on:</p><ul><li><p><strong>11.5%</strong> of travel conversations</p></li><li><p><strong>0.5%</strong> of support conversations</p></li><li><p><strong>5%</strong> of insurance conversations</p></li></ul><p>Orchestration also required <strong>1.2 to 1.7 times more model calls</strong> to do worse, because every decision hub spends a call deciding.</p><p>Their diagnosis is the part worth sitting with.</p><p><strong>Orchestration fragments reasoning.</strong></p><p>The model generates each turn seeing only the current node, producing locally sensible and globally incoherent work.</p><p>It introduces failure modes that would not otherwise exist:</p><ul><li><p>routing errors,</p></li><li><p>ambiguous edges,</p></li><li><p>template conflicts,</p></li><li><p>and downstream error propagation.</p></li></ul><p>A claim type misclassified at intake produces the wrong questions, then the wrong coverage determination, then an unresolved claim.</p><p>Anthropic&#8217;s own guidance moved in the same direction this year: from <em>build a harness</em> toward <strong>ask what you can delete</strong>, on the reasoning that scaffolding designed for a weaker model becomes a cage for a stronger one.</p><p>And there is a measured gradient underneath all of it.</p><p>Adding a planning-and-verification scaffold roughly doubles task success for weak backbones and contributes far less on the strongest ones.</p><p><strong>The value of external structure decays as capability rises.</strong></p><p>That is not a prediction.</p><p>It is in the tables.</p><p><strong>If your product&#8217;s differentiation is the controller, you are holding a depreciating asset &#8212; and the depreciation schedule is set by someone else&#8217;s release calendar.</strong></p><p></p><p><strong>Why &#8220;The Harness Is the Moat&#8221; Is a Losing Position</strong></p><p>There is a widely circulated thesis that the orchestration layer is where advantage accumulates &#8212; that the model commoditizes and the harness compounds.</p><p>I have no quarrel with the economics.</p><p>I have a quarrel with <strong>who gets to occupy that position</strong>.</p><p>At Build this year, Microsoft made the harness argument operational:</p><p>Agents registered and managed at the operating-system level. Persistent context across agent sessions. Customer usage feeding back into model training.</p><p>They are making that argument from <strong>400 million seats</strong>, Windows as the agent runtime, and Azure underneath.</p><p>Salesforce is running the same play into roughly <strong>150,000 existing customers</strong>.</p><p>Apple is running it on <strong>two billion devices</strong>.</p><p>If the contest is for the harness, a vertical company loses it.</p><p>Not on merit.</p><p><strong>On distribution.</strong></p><p>Any founder whose deck says <em>&#8220;the orchestration layer is the moat&#8221;</em> should read the Build keynote and then read their own slide again.</p><p>So the honest question is not whether orchestration compounds.</p><p>It is:</p><p><strong>What compounds that a platform cannot bundle and a model release cannot delete?</strong></p><p></p><p><strong>Three Assets That Survive a Model Release</strong></p><p><strong>1. The Corpus</strong></p><p>Not data in general.</p><p><strong>Data that was expensive to construct and is not on the open web.</strong></p><p>We built the <strong>Islamic Primary Sources Corpus</strong> because the reasoning we needed did not exist in machine-readable form:</p><p><strong>617,912 narrations across 123 classical works</strong>, every chain of transmission parsed, narrators resolved where determinable, every grade traced to documented inputs.</p><p>A better frontier model does not produce that.</p><p><strong>It consumes it, if you give it access.</strong></p><p></p><p><strong>2. The Reasoning, Compiled Into Weights</strong></p><p>This is the piece the research caught up to in May.</p><p>The same Melbourne group published a companion result:</p><p>Compile the procedure into a small fine-tuned model instead of holding it in a controller or a prompt.</p><p>An <strong>8B compiled model</strong> reached <strong>87% to 98% of in-context frontier quality</strong>, ran <strong>128 to 462 times cheaper per conversation</strong>, and recompiled in <strong>30 to 50 minutes</strong>.</p><p>A build cycle.</p><p>Not a research project.</p><p>Read their stated motivation, because it is the argument I have been making since before the papers existed:</p><p>The in-context approach requires a frontier model on every single conversation, inflates tokens, consumes context, and exposes proprietary procedures to third-party providers.</p><p>That last clause is the whole thesis.</p><p><strong>If your domain reasoning lives in a prompt, you are shipping it to a vendor on every request.</strong></p><p></p><p><strong>If it lives in weights you trained on a corpus you built, you are not.</strong></p><p></p><p><strong>3. The Reconstructability Record</strong></p><p>In regulated work, the deliverable is not an answer.</p><p><strong>It is a position that survives audit.</strong></p><p>The risk is not complexity.</p><p>It is output that cannot be traced, verified, or reconstructed months or years after the fact.</p><p>And the market is increasingly being told to demand exactly this.</p><p>General models still hallucinate legal content at rates approaching <strong>58% to 88%</strong> on tasks such as case citation, and the best general model tested still fabricated in <strong>23% of clinical case summaries</strong> with every mitigation applied.</p><p>Meanwhile, the benchmark picture shows models strongest on isolated reasoning, weaker on retrieval over real document corpora, and weakest on rubric-graded tasks that mirror what a practitioner actually does.</p><p><strong>Average scores do not survive a deposition.</strong></p><p>None of these three assets is an orchestration claim.</p><p>All three are what we spent four years accumulating while the field was building controllers.</p><p></p><p><strong>Where the Bitter Lesson Actually Applies</strong></p><p>The standard objection is Sutton&#8217;s:</p><p>General methods that scale with compute beat hand-built structure, every time, and anyone encoding human process into a system is on the wrong side of history.</p><p>I accept the lesson.</p><p><strong>I dispute its range.</strong></p><p>Its force is greatest where data is abundant:</p><p>General coding. General web tasks. Domains where the internet already contains a million worked examples.</p><p>Its application is far more complicated for novel tasks and niche domains where training data is scarce.</p><p>That is not my caveat.</p><p>It is stated plainly in the agentic software engineering literature.</p><p><strong>Scarcity is the whole condition of the verticals we chose.</strong></p><p>There is no web-scale corpus of workers&#8217; compensation apportionment reasoning under California Labor Code 4663.</p><p>There is no scraped archive of how a trained scholar moves from a chain of transmission to a defensible position on a question.</p><p>Where the examples exist in bulk, scale wins.</p><p>You should not fight it.</p><p>Where they do not, someone has to construct them.</p><p><strong>That construction is the work.</strong></p><p>And it does not get cheaper when the models get better.</p><p>It gets more valuable, because the models get better at using it.</p><p></p><p><strong>The Honest Limits of What I Just Cited</strong></p><p>I want to name what these papers do <strong>not</strong> establish, because I would rather do it than have a diligence reader do it for me.</p><p>The orchestration comparisons run on synthetic procedures with simulated users and LLM-as-judge scoring, and the authors say so.</p><p>Their finding is scoped to multi-turn conversations following a defined procedure.</p><p>They explicitly exclude:</p><ul><li><p>multi-model pipelines,</p></li><li><p>tool use against external state,</p></li><li><p>non-procedural work,</p></li><li><p>and smaller models.</p></li></ul><p>Taken together, those categories describe much of what a production vertical system actually does.</p><p>Nobody has replicated any of this on our estate.</p><p>And the compiled-weights result is one team&#8217;s finding at one parameter scale.</p><p>None of it mentions <strong>MindHYVE&#8482;</strong>.</p><p>None of it was written to support anything I am building.</p><p>That is precisely why it is worth citing.</p><p><strong>It is the field arriving independently at a conclusion &#8212; and independent arrival is the only kind that counts.</strong></p><p>What I will not claim:</p><p>That we have measured any of this internally at that rigor, or that a compiled reasoning layer is a completed defense rather than an accumulating one.</p><p></p><p><strong>What This Means If You Are Building</strong></p><p>Ask which of your assets a competitor&#8217;s next model release deletes.</p><p><strong>Prompt libraries:</strong> deleted.</p><p><strong>Routing graphs:</strong> deleted &#8212; and probably an active liability.</p><p><strong>Framework expertise:</strong> depreciating on someone else&#8217;s schedule.</p><p><strong>A constructed corpus in a domain with no web-scale equivalent:</strong> not deleted.</p><p><strong>Reasoning compiled into weights over that corpus:</strong> not deleted.</p><p><strong>A traceability record a regulator will accept in 2029:</strong> not deleted &#8212; and increasingly the thing the buyer asks for first.</p><p>Then ask the harder question:</p><p><strong>Is the thing you call your moat a position that a platform with 400 million seats would like to occupy?</strong></p><p>If it is, it is not a moat.</p><p><strong>It is a queue.</strong></p><p>I did not get here by reading these papers.</p><p>I got here in 2022, by betting that the durable thing was the reasoning and the corpus rather than the wrapper, at a moment when that bet had no vocabulary and no evidence behind it.</p><p>The evidence arrived this year.</p><p>The scaffolding is coming down across the industry.</p><p>And what is standing underneath it, for us, is what we were building instead.</p><p><strong>Build the thing the next model release cannot take away from you.</strong></p><p></p><p><strong>Bill Faruki</strong><br>Founder &amp; CEO, MindHYVE.ai</p><p><em>The AI reasons. The human decides.</em></p><p></p><p><strong>Sources</strong></p><p>Dennis et al., <em>&#8220;In-Context Prompting Obsoletes Agent Orchestration for Procedural Tasks&#8221;</em> &#8212; arXiv:2604.27891, v2 May 2026.</p><p>Dennis et al., <em>&#8220;Compiling Agentic Workflows into LLM Weights&#8221;</em> &#8212; arXiv:2605.22502.</p><p><em>&#8220;Agentic Software Engineering: Foundational Pillars and a Research Roadmap&#8221;</em> &#8212; arXiv:2509.06216.</p><p>AgentSynth scaffolding evaluation &#8212; arXiv:2506.14205.</p><p>CRV, <em>&#8220;What Is Vertical AI?&#8221;</em> &#8212; July 2026.</p><p>Kili Technology, <em>&#8220;Domain-Specific LLM Benchmarks: 2026 Vertical AI Map&#8221;</em> &#8212; May 2026.</p><p>Cognitive World, <em>&#8220;AI in Regulated Industries&#8221;</em> &#8212; February 2026.</p><p>Coverage of Microsoft Build 2026 harness announcements.</p><p>Corpus figures as published at <strong>ipsc.theogrid.ai</strong>, verified August 27, 2026.</p>]]></content:encoded></item><item><title><![CDATA[The Fence at 87th Street]]></title><description><![CDATA[Quantum computing will not make our models smarter. It will make data no model has ever had &#8212; and the second-order effects are already on someone&#8217;s balance sheet.]]></description><link>https://billfaruki.substack.com/p/the-fence-at-87th-street</link><guid isPermaLink="false">https://billfaruki.substack.com/p/the-fence-at-87th-street</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Sat, 25 Jul 2026 17:45:00 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!1Cb9!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!1Cb9!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!1Cb9!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!1Cb9!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!1Cb9!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!1Cb9!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!1Cb9!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg" width="5712" height="4284" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:4284,&quot;width&quot;:5712,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:0,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!1Cb9!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!1Cb9!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!1Cb9!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!1Cb9!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6788a834-1e1a-43a7-aec6-be29e921c93f_5712x4284.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p></p><p>My daughter sent me a photograph of a construction sign.</p><p>Red and white, bolted to a gray timber frame on a patch of grass off 87th Street. Hard hats, safety glasses, gloves, high-visibility vest. A phone number for a man named Bob. <em>Emergency Access Gate A, 3733 E. 87th St.</em></p><p>She had gone to see what used to be a steel mill. She wanted to know what was going on.</p><p>Behind that fence is the former U.S. Steel South Works &#8212; 440 acres of Chicago lakefront that sat empty for three decades after the mills went cold. It is now the Illinois Quantum and Microelectronics Park, anchored by PsiQuantum, with IBM, Infleqtion, Diraq, and Quantum Machines committed to the campus. Ground broke in September 2025. This phase finishes in 2027. A 65,000-square-foot building meant to house what may become the first utility-scale fault-tolerant quantum computer in the United States is already most of the way up.</p><p>So I started typing an answer.</p><p>And the first sentence I wrote was wrong.</p><p><strong>The sentence I deleted</strong></p><p>It was a version of a sentence you have read a hundred times:</p><p><em>Quantum computing is right around the corner, and it will unlock breakthroughs in AI.</em></p><p>Comfortable.</p><p>Confident.</p><p>Backwards.</p><p>Neural networks are dense linear algebra over classical data. That is precisely the workload GPUs were built for and precisely the workload quantum hardware is bad at.</p><p>Quantum machine learning has two structural problems that have resisted a decade of serious effort.</p><p>The first is data loading: getting classical data into a quantum state often costs more than any speedup you would recover from operating on it.</p><p>The second is barren plateaus, where the gradients in variational circuits flatten toward zero as the circuit scales, and training simply stops working.</p><p>There is no demonstrated quantum advantage on a real machine-learning task. Not a contested one. Not a small one.</p><p>Meanwhile, the arrow runs hard in the other direction.</p><p>The most consequential recent work in quantum error correction uses machine learning to decode surface codes &#8212; DeepMind&#8217;s AlphaQubit being the visible example. AI is calibrating qubits, shaping control pulses, reading out error syndromes.</p><p>Today, AI is a quantum technology far more than quantum is an AI technology.</p><p>Which means the question my daughter actually asked is better than the one I was about to answer.</p><p>Not <em>what will this do for our models?</em></p><p>What will it do that our models can then learn from?</p><p><strong>What the machine is actually for</strong></p><p>Strip away the marketing and there are three tiers.</p><p><strong>Tier one is real and structural.</strong></p><p>Simulating quantum systems.</p><p>Molecular ground states, catalytic transition states, correlated-electron materials, nitrogen fixation, high-temperature superconductivity.</p><p>This was Feynman&#8217;s argument in 1981 and it remains the only application class where the advantage comes from the physics rather than from hope.</p><p>Nature is quantum; simulating it on classical hardware costs exponentially; simulating it on quantum hardware does not.</p><p><strong>Tier two is real but conditional.</strong></p><p>Cryptanalysis.</p><p>Shor&#8217;s algorithm works &#8212; the only question has ever been resource cost, and that cost is collapsing faster than the hardware is improving.</p><p>In 2019, Craig Gidney and Martin Eker&#229; estimated that factoring a 2048-bit RSA key would take twenty million noisy qubits and eight hours.</p><p>In 2025, Gidney revised his own number: fewer than one million noisy qubits, in under a week.</p><p>A twentyfold reduction in the hardware requirement, achieved without building anything &#8212; purely through better arithmetic and better error correction.</p><p>Sit with that.</p><p>The bar is falling toward the machine at the same time the machine is climbing toward the bar.</p><p>Almost every timeline argument you read accounts for only one of those motions.</p><p><strong>Tier three is mostly narrative.</strong></p><p>Generic optimization &#8212; logistics, portfolios, scheduling, the slide in every quantum pitch deck.</p><p>Grover&#8217;s algorithm delivers a quadratic speedup, and quadratic speedups are routinely consumed whole by error-correction overhead.</p><p>Leave this tier out of any serious conversation.</p><p>Your credibility on tiers one and two is worth more than the extra market you buy by claiming tier three.</p><p><strong>Instruments, not accelerators</strong></p><p>Here is the thesis I would put my name to.</p><p>Quantum computers will not train better models.</p><p>They will produce better <em>ground truth</em>.</p><p>There are chemical and material systems we cannot compute at any price.</p><p>Not slowly &#8212; not at all.</p><p>The strongly correlated electron problems underneath catalysis, room-temperature superconductivity, and industrial nitrogen fixation are exactly the problems classical methods approximate badly and quantum methods address natively.</p><p>When those calculations become routine, they generate training data that has never existed.</p><p>And then classical AI does what classical AI is extraordinary at: learning the surface of an expensive function so it can be evaluated cheaply a billion times.</p><p>Run the quantum simulation on a few thousand hard cases.</p><p>Train a classical model on the results.</p><p>Search a chemical space of 10&#8310;&#8304; candidates in an afternoon.</p><p>Send the twelve interesting ones back to the quantum machine for verification.</p><p>The breakthrough is not a quantum language model.</p><p>It is a classical model trained on chemistry no one has ever been able to compute.</p><p>The quantum computer is an instrument &#8212; closer to a synchrotron or a cryo-EM than to a faster GPU.</p><p>We do not ask what the telescope does for the astronomer&#8217;s arithmetic.</p><p>We ask what it lets her see.</p><p>That reframe changes what to watch for.</p><p>Not qubit counts.</p><p>Not benchmark stunts on contrived sampling problems.</p><p>Watch for the first published molecular calculation a pharmaceutical company acts on commercially.</p><p>That is the starting gun.</p><p><strong>The defensive clock is already running</strong></p><p>Now the part almost nobody writes, and the part your CFO should care about this fiscal year.</p><p><strong>No one has to build a working quantum computer for quantum to cost you money right now.</strong></p><p>The mechanism is harvest-now-decrypt-later.</p><p>An adversary captures encrypted traffic today and stores it against a machine that will exist in a decade.</p><p>If the material has a long secrecy half-life &#8212; health records, financial positions, source code, negotiation history, state secrets, anything under a legal retention obligation &#8212; then the encryption protecting it in 2026 is already inadequate.</p><p>The exposure was created the moment the packet crossed the wire.</p><p>Which is why NIST finalized the post-quantum cryptographic standards in August 2024 and why federal migration timelines are now fixed in policy.</p><p>Every CISO in a regulated industry owns a multi-year cryptographic inventory and migration with zero attached revenue.</p><p>That is not a future cost.</p><p>It is in this year&#8217;s budget, being spent, against a threat that does not yet exist.</p><p>The economic impact of quantum computing arrives years before the computing does.</p><p>That asymmetry &#8212; a defensive clock running well ahead of the offensive one &#8212; is the most underpriced fact in the entire field.</p><p><strong>Verification becomes the bottleneck</strong></p><p>Suppose the machine behind that fence works.</p><p>It hands you a molecular ground-state energy.</p><p>How do you know it is right?</p><p>The problems where quantum wins are, by construction, the problems classical computers cannot check.</p><p>You cannot validate the answer by recomputing it the old way &#8212; the whole premise is that the old way is intractable.</p><p>So the field will have to build a trust architecture from scratch:</p><ul><li><p>Cross-platform replication on independent hardware.</p></li><li><p>Wet-lab confirmation loops.</p></li><li><p>Statistical certification protocols.</p></li><li><p>Provenance records for computational results.</p></li></ul><p>This is not a technicality.</p><p>It is a genuinely new epistemic problem, and it will produce new institutions, new standards bodies, and a professional category that does not yet have a name.</p><p>Anyone who has spent time building reasoning systems recognizes the shape of it immediately:</p><p>The hard part was never generating the answer.</p><p>The hard part is generating the answer <em>together with the evidence that lets a qualified human accept or reject it.</em></p><p>Quantum computing is about to meet that problem at industrial scale, and it will meet it where the rest of us do &#8212; at the boundary where a machine&#8217;s output becomes a person&#8217;s decision.</p><p><strong>Watch the capital structure, not the qubits</strong></p><p>Something changed in how this gets funded, and it is a better maturity signal than any technical milestone.</p><p>The Chicago campus is backed by roughly $500 million in Illinois state commitment, with the anchor tenant&#8217;s build financed by Blue Owl Capital funds.</p><p>Clayco is general contractor.</p><p>Delivery is 2027 for phase one and 2028 for the campus.</p><p>Advocate Health is putting a 53-bed hospital on the site.</p><p>That is project finance.</p><p>Infrastructure and real estate underwriting, with milestone draws and completion risk and a defined cost of capital.</p><p>It is not venture capital, which is what a field looks like when the question is still <em>does the science work.</em></p><p>When a technology moves from equity risk to construction risk, the market has quietly answered the first question and gone on to the second.</p><p>You can read that off the balance sheet earlier than you can read it off the physics.</p><p><strong>It inherits the geography of heavy industry</strong></p><p>Dilution refrigerators, a dedicated cryogenic plant, industrial-scale power, water, and rail-and-lake logistics.</p><p>That is why this campus is on a decommissioned steel mill and not in a suburban office park.</p><p>Quantum computing has the site requirements of a foundry, and it is going to the places that were built for foundries.</p><p>Which brings me back to the fence, and to why I think a kid standing in front of it asked the right question in the wrong century.</p><p>South Works employed this neighborhood by the thousands.</p><p>Whole blocks were built on the assumption that the mill would carry families for generations.</p><p>Then it closed, and the land sat vacant for thirty years, and the people who stayed watched a field of weeds where their parents&#8217; work used to be.</p><p>That is the memory this campus is being built on top of.</p><p>The new industry has a thin, credentialed, extremely well-paid labor market concentrated in a handful of cities &#8212; Chicago, Boulder, Delft, Sydney.</p><p>Local organizers have pushed for a ballot referendum on the project.</p><p>Their questions are about environmental impact and about who actually gets the jobs.</p><p>Those are not obstructionist questions.</p><p>They are the same questions the last generation on this ground should have been allowed to ask before the answer was decided for them.</p><p>Whether quantum keeps a better version of the promise steel made is a governance problem, not a physics problem.</p><p>Governance is the thing this industry is least practiced at, and the thing that will determine whether the neighborhood remembers 2028 the way it remembers 1992.</p><p><strong>What I would tell an operator</strong></p><p>Three things, if you run a company and are trying to decide what to do about any of this.</p><p><strong>Start the cryptographic migration now.</strong></p><p>It is the only item with a hard, already-running clock.</p><p>Inventory what you encrypt, how long it has to stay secret, and what algorithms protect it.</p><p>Unglamorous, expensive, non-optional.</p><p><strong>If you are in chemistry, materials, pharma, or energy, build the data pipeline.</strong></p><p>The bottleneck when quantum simulation becomes routine will not be access to the machine.</p><p>It will be whether you can turn expensive calculations into trained models and trained models into decisions.</p><p>That infrastructure is classical, buildable today, and work you should be doing anyway.</p><p><strong>Ignore qubit counts.</strong></p><p>They are the field&#8217;s vanity metric.</p><p>Watch logical error rates, resource estimates for real problems, and the first commercial decision made on a quantum-computed result.</p><p>And be careful with <em>right around the corner.</em></p><p>The Chicago facility targets 2028.</p><p>Utility-scale fault tolerance is a goal with a date attached, not a schedule with a guarantee.</p><p>Every serious person in this field will tell you that.</p><p>Every unserious one will not.</p><p><strong>What I actually told her</strong></p><p>Something is being built on the ground where the mill was.</p><p>It is a real machine, not a metaphor, and it will do a small number of things no machine has done &#8212; mostly having to do with understanding how molecules hold themselves together, which turns out to be the bottleneck under medicine and energy and materials both.</p><p>It will not think.</p><p>It will not make our thinking machines think better.</p><p>What it will do is see a part of the physical world we have never been able to look at directly, and hand what it sees to people &#8212; and to the ordinary, unglamorous, classical software that has to turn seeing into deciding.</p><p>That building will be finished around the time she is choosing what to study.</p><p>Someone will have to decide what those first calculations get pointed at, and whether the answers can be trusted, and who in that neighborhood gets to work on them.</p><p>Those are not questions the machine answers.</p><p>Those are the questions left over after it does.</p><p>She asked what was going on.</p><p>That is the honest version.</p><p></p><p><strong>Bill Faruki</strong><br>Founder &amp; CEO, <a href="http://mindhyve.ai/">MindHYVE.ai</a></p><p><em>The AI reasons. The human decides.</em></p>]]></content:encoded></item><item><title><![CDATA[The Load-Bearing Floor]]></title><description><![CDATA[Feeds took our boredom. Now AI is coming for the productive struggle. Both losses are invisible &#8212; which is exactly what makes them dangerous.]]></description><link>https://billfaruki.substack.com/p/the-load-bearing-floor</link><guid isPermaLink="false">https://billfaruki.substack.com/p/the-load-bearing-floor</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Sun, 28 Jun 2026 23:11:02 GMT</pubDate><content:encoded><![CDATA[<p>Ask what has changed the world for the worse without our noticing, and the honest answer isn&#8217;t a war or a market or a melting ice sheet. Those we can see. The change that has gone unaudited is quieter than any of them: we have lost unstructured time, and almost no one has filed a complaint.</p><p>For nearly all of human history, boredom was not a problem to be solved. It was a condition you lived inside several times a day &#8212; the wait for the bus, the walk to the car, the lull after dinner, the long minutes before sleep. We treated those gaps as dead air. They were not. They were when the brain switched into what neuroscientists call the default mode network: the background process where you consolidate memory, rehearse other people&#8217;s lives well enough to feel for them, let half-formed problems sit until they quietly resolve, and stitch the day&#8217;s fragments into something that feels like a self. Boredom, in a very real sense, was the engine of the inner life. We didn&#8217;t decide to turn it off. We just filled every gap, and the work that used to happen in the gaps stopped happening.</p><p>That is the part that makes this so hard to see. Nothing dramatic occurred. There was no moment of loss to point to, no severance, no alarm. Lose your keys and you know instantly. Lose the slow ambient process that would have handed you an idea in the shower, or reconciled you to something on a long walk, and nothing announces it. The cost is paid in a currency you cannot audit &#8212; the insight you never had, the empathy you didn&#8217;t practice, the thinner version of your own story. You cannot grieve a thought you never got to think.</p><p>And then there is the recursive trap, which is the part I find genuinely bleak. Even the realisation gets consumed. You read the essay about attention while scrolling. You watch the clip about how the feed rewires you &#8212; on the feed. The warning becomes one more item the machine serves, indistinguishable from everything else it serves, and it changes nothing, because the medium delivering the warning is the thing being warned about.</p><p>I want to be careful here, because the easy version of this argument is wrong. Not all boredom was sacred. A great deal of it was simply tedious, or anxious, or lonely. And the feeds gave back real things &#8212; people you would never have met, knowledge you would never have found, relief on genuinely empty afternoons. The claim is narrower and stranger than &#8220;screens are bad.&#8221; It is this: we removed the floor of unstructured time without ever deciding to, and that floor turned out to be load-bearing for things we didn&#8217;t know it was holding up.</p><p>So far, so familiar &#8212; this is roughly the indictment of the smartphone era, and the smartphone era is nearly twenty years old. But there is a second wave now, and it is younger, and I think it is the more interesting one.</p><p>The feeds colonised the empty moments. Artificial intelligence is beginning to colonise the productive ones &#8212; the friction that did real cognitive work even when it felt like nothing but work. The blank page where you discovered what you actually thought by struggling to put it into words. The wrong turn that taught you the shape of a city. The difficult email you drafted four times and, in the drafting, worked out how you actually felt. None of those were dead air. They were effortful, and the effort was the point. Outsource enough of it and you lose the capacities the friction was quietly building &#8212; the same way idle time was quietly building others.</p><p>The signature is identical. You cannot notice the atrophy of a muscle you have stopped using, because the tool keeps handing you a competent-enough result and the loss never files a complaint. First we deleted the boredom. Now we are deleting the struggle. Both deletions feel, in the moment, like pure gain.</p><p>This is an awkward thing to write while being, myself, exactly the kind of tool I&#8217;m describing. So let me be plain about it. AI is genuinely useful for some of this and genuinely corrosive for some of it, and the entire difference lies in which part you hand over. Give it the labour that was only ever tedious, and you have bought time and lost nothing. Give it the labour where the difficulty was doing something to your mind &#8212; forming a view, finding a word, sitting with a problem &#8212; and you have outsourced the very process that was supposed to change you.</p><p>That line is yours to draw. The danger is not that the tools are powerful. It is that the floor disappears by default, invisibly, one frictionless gap at a time, unless you decide on purpose to keep some of it. The previous generation lost its boredom without choosing to. We still get to choose about the struggle.</p><p>For now.</p>]]></content:encoded></item><item><title><![CDATA[You Can’t Train Bias Out of a Model. So We Stopped Trying.]]></title><description><![CDATA[We separated how an AI thinks from what it knows and where it runs. Here is what that does to the bias problem everyone calls unsolvable.]]></description><link>https://billfaruki.substack.com/p/you-cant-train-bias-out-of-a-model</link><guid isPermaLink="false">https://billfaruki.substack.com/p/you-cant-train-bias-out-of-a-model</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Fri, 19 Jun 2026 08:48:26 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!UNGI!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!UNGI!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!UNGI!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png 424w, /__u/substackcdn.com/image/fetch/$s_!UNGI!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png 848w, /__u/substackcdn.com/image/fetch/$s_!UNGI!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png 1272w, /__u/substackcdn.com/image/fetch/$s_!UNGI!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!UNGI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png" width="1200" height="630" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:630,&quot;width&quot;:1200,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:0,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!UNGI!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png 424w, /__u/substackcdn.com/image/fetch/$s_!UNGI!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png 848w, /__u/substackcdn.com/image/fetch/$s_!UNGI!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png 1272w, /__u/substackcdn.com/image/fetch/$s_!UNGI!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe7799f10-1569-4dae-bceb-be9ca3437f3d_1200x630.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>An article went around recently &#8212; The Atlantic, on Silicon Valley finally wanting to hire philosophers. The piece is a hiring story. The conversation that formed around it was the part worth keeping.</p><p>People started saying the thing the industry usually steps over: an AI system is not a neutral tool. It arrives already carrying assumptions &#8212; about what it is for, about what counts as knowledge, about how the world is. None of these announce themselves. They sit inside the model, and the moment the system is wired into how an institution decides things &#8212; how a hospital triages, how a firm values a case, how a school teaches &#8212; those buried assumptions stop being abstract. They start shaping judgment, accountability, and consequence in the real world.</p><p>That is the correct worry, and it is older than this news cycle. I have spent years building toward an answer to it. Not a philosophy-department answer bolted on at the end. An architecture. This essay is that answer, laid out plainly enough that you can take it apart.</p><p>The part everyone gets right, then stops.</p><p>The diagnosis is sound, so let me concede all of it before I disagree with where it goes.</p><p>A model trained on an enormous pile of human language learns our skews along with our knowledge. It cannot help it. The bias is not a smudge on the surface that careful cleaning removes. It is dissolved into the weights, inseparable from the capability, because the same training that taught the model to be useful taught it what we treat as normal, default, and unremarkable. You do not get one without the other. Anyone who tells you they scrubbed bias out of a frontier model is telling you they cannot find it, which is not the same thing.</p><p>So far, agreement. The disagreement is about what to do next.</p><p>The standard responses are better data, more red-teaming, and an ethics review attached to the end of the pipeline. I think the ethics-at-the-end posture is theater &#8212; a layer of review applied after the assumptions have already done their work upstream. And I think &#8220;better data&#8221; is a treadmill, because every dataset is somebody&#8217;s selection of what mattered, and the selection is the bias. You can run on that treadmill forever and arrive nowhere.</p><p>The honest move is to stop trying to remove bias from the model at all, and change where bias is allowed to live. If you cannot purge it, you can refuse to let it sit in the one place where it is invisible and load-bearing. That refusal is the whole design.</p><p>Three things every model fuses into one.</p><p>Here is the root problem, stated structurally.</p><p>A single trained model holds three different things at once, and holds them inseparably.</p><p>The first is how to think &#8212; the reasoning. The way you move from an observation to an explanation, from a fact pattern to a theory of the case, from a student&#8217;s error to the next thing to teach.</p><p>The second is what is true &#8212; the knowledge. The base rates, the presentations, the precedents, the content of a domain.</p><p>The third is where you are &#8212; the jurisdiction. The local law, the governing guideline, the reference range, the school of thought that holds in this place and not that one.</p><p>In an ordinary model these three are a single smear across the weights. That is exactly why the bias cannot be extracted: it is not a component you can reach in and remove. The skew in what-is-true and the assumptions about where-you-are are tangled into the same parameters that do how-to-think. Pull on one and the others move.</p><p>Our first decision was to refuse the fusion &#8212; to build the system so those three are three different things, in three different places, each handled on its own terms. Once they are separated, the one impossible problem becomes three tractable ones, and two of the three turn out to be solvable outright.</p><p>It started as riddles.</p><p>The layer that thinks is the one that matters most here, so I want to tell you honestly where it came from, because the origin is the argument.</p><p>It started with riddles. We built a dataset of them &#8212; not because we wanted a model that solves riddles, but because a riddle is the purest instrument I know of for separating reasoning from content. A riddle does not test what you know. It tests how you decompose a problem, how you trace an implication, how you sit with a contradiction until it resolves. Train a reasoning model on riddles and you teach it reasoning style, stripped of any subject matter.</p><p>The thing that turned a hunch into a method came from my daughter. Home from university, she looked at the dataset and named the logic running underneath it &#8212; deductive, inductive, abductive. The formal categories philosophers have been describing for centuries were already there in the structure, under a different name. And once you see those, you see the rest: dialectical reasoning, hermeneutics, the Socratic method, phenomenology. We had not been training the model on conclusions &#8212; on what answer goes with what input. We had been training it on conceptual transitions &#8212; on how to move between ideas.</p><p>That became the explicit posture of the corpus we now call Eve-Genesis. Every record carries not just an answer but the cognitive operation that produced it: the reasoning mode used, the levels of abstraction it crossed, the alternatives it considered and rejected. Trained on data shaped that way, the model does not merely know more. Its epistemic priors are shaped. It thinks in moves, not in memorized endpoints.</p><p>There are eight of those moves we treat as the working alphabet &#8212; deductive, inductive, abductive, analogical, dialectical, hermeneutic, phenomenological, Socratic. Every domain is a different chord struck on the same instrument. Diagnosis leans on abduction and analogy &#8212; inference to the best explanation, anchored by resemblance to prior cases. Law leans on analogy, abduction, and dialectic &#8212; reasoning from precedent, building an argument through tension. Teaching leans on analogy, Socratic questioning, and phenomenology &#8212; meeting a learner where their understanding actually lives. Islamic jurisprudence leans on dialectic and hermeneutics &#8212; the disciplined interpretation of a text within its tradition. One method; a different emphasis per field.</p><p>Now follow the consequence, because this is the load-bearing claim. A clinical reasoning problem in this corpus teaches the shape of clinical reasoning &#8212; observe, form a differential, rank the candidates by what distinguishes them, check for the finding that kills, calibrate your confidence to your evidence &#8212; without containing a single real patient, a single population, or a single guideline. The plan the model produces is, by construction, free of population content. There is nothing in it to be biased about, because the layer that frames the problem never saw the content that would skew it.</p><p>This kills the dangerous kind of bias. Call it framing bias: the assumptions about what is normal, what is worth considering, what gets treated as the default case. Framing bias is the one that does the real damage, because it is invisible and it bends the entire chain from the top &#8212; it decides which questions get asked before anyone notices a question was a choice. In an ordinary model, framing bias is baked into the weights and you cannot locate it. In ours, it cannot form, because the reasoner was trained on reasoning structure and never on content. That is not a mitigation. It is a structural absence &#8212; and it holds exactly as long as the corpus stays reasoning-and-principles with no jurisdiction folded in, which is the discipline the whole architecture depends on.</p><p>Knowledge is rented, not owned.</p><p>The second layer is knowledge, and here we do something that sounds like a concession and is the point.</p><p>We use the best frontier models in the world to execute the steps of the plan. We do not own that knowledge. We rent it, and we treat it as a commodity. As those models improve, we improve, at no cost to us. As they are replaced, we replace them. The reasoning is ours; the knowledge is interchangeable.</p><p>What we never do is let those models decide what the problem is. They do not frame. They do not plan. They receive a bounded sub-problem from a plan they did not write, and they solve that one piece.</p><p>This is also the one place where bias can still enter the system, and I want to name it precisely rather than wave at it. When a frontier model is asked to recall something from its own training &#8212; a base rate, a typical presentation, a default assumption about a population &#8212; its skew rides in on that recall. That is real. It is the residual. Hold it; I will come back to how small we can make it.</p><p>Where you are is not who you are.</p><p>The third thing &#8212; jurisdiction &#8212; is the one most people would call bias and that I think is a category error.</p><p>Which screening guideline governs. Which lab reference range applies. Which body of law controls. Which school of jurisprudence the answer should respect. These genuinely differ by place, and they should differ by place. A system that handed a clinic in one country another country&#8217;s standards would not be unbiased; it would be wrong.</p><p>So we put none of it in the model. It lives in a layer we call the Digital Employee &#8212; Chiron for medicine, Justine for law, Arthur for education, Theo for theology &#8212; a named agent that localizes the reasoning at the moment of use. When the system is deployed somewhere, the agent is told where it is running, and it steers the frontier models for that place with an instruction in plain language: operate under these guidelines, this law, these standards.</p><p>Sit with what that means. The same neutral reasoning core, deployed in two countries, becomes two differently-localized practitioners. One mind, two sets of instructions. And the instructions are a sentence &#8212; readable, versionable, auditable by anyone who can read. When a ministry of health asks what standards the system applies, the answer is not a forensic audit of a model&#8217;s weights. It is: here is the exact text the agent injects for your country. Read it.</p><p>This is the most inspectable surface in computing. Jurisdiction does not hide in parameters no one can see. It sits in language a regulator can hold in their hand. The assumptions are not removed &#8212; they are made legible, located in one place, and owned by a named agent you can hold accountable.</p><p>The dial.</p><p>Now back to the residual &#8212; the knowledge-recall steps where a frontier model&#8217;s skew can still enter &#8212; because the architecture does not merely contain it. It has a lever to drive it down, and the lever is the same decomposition that builds the plan.</p><p>Consider two kinds of step. A coarse step &#8212; &#8220;assess this patient&#8221; &#8212; forces the model to reach into its own training and supply judgment, framing, and defaults. That is the exact moment its bias rides in. A fine step &#8212; &#8220;extract the sodium value,&#8221; &#8220;compare this figure against the range the agent supplied&#8221; &#8212; gives the model nothing of its own to contribute. The answer is determined by the input. There is no room for a skew to enter, because no judgment is being asked for.</p><p>So the finer the plan decomposes the work, the more each step becomes pure transformation of given material, and the less any step depends on the model recalling something. The surface that bias can touch shrinks as step size shrinks. Decomposition is the dial. Turn it finer and the residual gets smaller.</p><p>That is a law of this architecture, and I will state it as a direction, not a number: the more discrete the steps in the reasoning, the less of a frontier model&#8217;s bias we allow into the result. The residual is not a fixed quantity we are stuck with. It is a function of how finely we choose to think.</p><p>What I won&#8217;t claim.</p><p>I could give you a percentage here &#8212; a clean figure for how much bias we have removed. It would travel well. I am not going to, and the reason is the same reason this architecture exists.</p><p>The residual &#8212; knowledge-recall inside execution steps &#8212; is a measurable thing, and right now it is an open measurement problem, not a solved one. To put a number on it honestly you would have to characterize, across a real run, what fraction of the frontier calls are pure transformation of supplied content versus genuine recall from the model&#8217;s own training, and then your verification coverage on the recall steps. That is exactly the kind of measurement worth publishing when it is real. It is not the kind of number you assert because it sounds persuasive.</p><p>A figure I cannot derive is the species of claim this whole system was built to stop making. So the honest statement is the strong one: we have driven bias out of the layer that frames problems, moved jurisdiction into a layer you can read, and confined what remains to one bounded, measurable surface that the core design principle actively shrinks. We have not solved bias. No one has, and the people who say they have are the ones to distrust. We have isolated it to one named place and pointed the architecture at it.</p><p>That refusal &#8212; to quantify what we have not measured &#8212; is not a hedge. It is the most load-bearing sentence in the essay. An institution does not need you to be pure. It needs you to know exactly where your assumptions are and to tell the truth about them.</p><p>The question under the question.</p><p>Return to where we started. The worry under the philosophers-in-AI conversation was never really about ethics committees. It was about assumptions buried in optimization, in a place where no one can find them, quietly deciding things that should have stayed human, moral, and contestable.</p><p>Here is the resolution. In our architecture, the deepest assumption-carrying mechanism &#8212; the place where a real, consequential, this-jurisdiction-not-that-one decision is made &#8212; is a system prompt. A sentence. The single most legible artifact in the entire stack. The opposite of buried.</p><p>We did not refute the worry. We built the thing the worry was asking someone to build. The answer to &#8220;whose assumptions get embedded, and who can see them&#8221; is not a promise of neutrality. It is an architecture in which the assumptions cannot hide: the reasoning carries none, the knowledge is rented and bounded, and the localization is written in language you can audit. That is not purity. It is governance &#8212; and governance is the only thing a hospital, a court, or a ministry can actually trust.</p><p>What changes.</p><p>Let me be plain about my standpoint, because the argument deserves to be read knowing it. I am not a neutral observer. I run MindHYVE.ai. We build this. We operate across three continents &#8212; Newport Beach, Islamabad, Nairobi &#8212; and that geography is not a detail. It is the reason this problem is not academic to me.</p><p>A reasoning core that is population-neutral by construction, localized at the moment of use by an agent you can read, is the thing that lets a clinician in Nairobi and a clinician in California work from the same quality of reasoning under different law. The reasoning travels. The localization stays local, and stays visible. That is the entire point of building it this way, and it is why &#8220;where you are is not who you are&#8221; is more than a slogan to me &#8212; it is the engineering commitment that makes elite reasoning portable without exporting one country&#8217;s defaults onto everyone else under a new label.</p><p>You cannot train bias out of a model. We stopped trying. We built a system where bias has fewer and fewer places to live, and where the places it still touches are written in plain sight. The rest is measurement, and we will show that work when it is real.</p><p></p><p>Bill Faruki, Founder &amp; CEO, MindHYVE.ai</p><p>The AI reasons. The human decides.</p>]]></content:encoded></item><item><title><![CDATA[We Are Measuring the Wrong Thing]]></title><description><![CDATA[We measure how capable AI is getting. We don&#8217;t measure who it reaches. That&#8217;s the threshold that matters.]]></description><link>https://billfaruki.substack.com/p/we-are-measuring-the-wrong-thing</link><guid isPermaLink="false">https://billfaruki.substack.com/p/we-are-measuring-the-wrong-thing</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Fri, 05 Jun 2026 13:32:19 GMT</pubDate><content:encoded><![CDATA[<p>Almost every conversation about AI right now is about capability. How long a model can run on its own before it needs a human. How much harder a problem it can solve this year than last. Whether the curve is still bending up or starting to flatten.</p><p>It&#8217;s a real conversation. The progress is real, and the people tracking it closely are not wrong to be impressed. It&#8217;s just the wrong thing to lead with&#8212;because it answers a question that was never the one that decides what this technology does to the world.</p><p>The question that decides that is not how capable AI becomes.</p><p>It&#8217;s who the capability reaches.</p><h2>Start with the floor</h2><p>Begin with the most conservative case anyone can make.</p><p>Anthropic&#8212;a company whose entire business is the next capability jump&#8212;recently made the point plainly: even if every model were frozen exactly as it is today, the world would still change enormously. Not because of what comes next, but because of what already exists, still working its way into the economy. A company of a hundred people starts doing the work of a thousand because each person now sits on top of a stack of agents doing the work beneath them.</p><p>Sit with that for a second, because it&#8217;s a stronger claim than it first looks.</p><p>It means you don&#8217;t have to win a bet on the next breakthrough for the stakes to be enormous. The capability already in the world, fully distributed, is enough to reorganize how work happens. Freeze everything today and the transformation still comes.</p><p>So the real question was never only how much more capable these systems get.</p><p>It&#8217;s where the capability we already have actually lands.</p><h2>Diffusion is not the same as reach</h2><p>The honest answer is: not evenly.</p><p>The reasoning the field keeps making more powerful has mostly reached the people who were already well served. The large firm that can staff an AI team. The institution with a procurement budget. The professional who can pay for the frontier tier.</p><p>That&#8217;s not a moral failing of the labs building it. It&#8217;s just how diffusion works when no one is steering it. Capability flows along the paths that already exist, and those paths run toward the people who already had the most.</p><p>Which leaves the other side of the line.</p><p>The doctor working a clinic with no specialist down the hall to consult. The lawyer with no firm behind her and no senior partner to check the brief. The teacher with forty kids and no aide.</p><p>These are not edge cases. Numerically, they are most of the profession. Most doctors, most lawyers, most teachers, in most of the world, practice without the institutional weight that the elite version of their job takes for granted.</p><p>The reasoning that used to be locked inside those elite institutions is exactly the thing that could now reach them.</p><p>That&#8217;s the actual frontier.</p><p>It is not getting the same attention as the capability frontier, and that gap is the whole problem.</p><h2>We measure intelligence. We don&#8217;t measure reach</h2><p>Here is the part the field should sit with.</p><p>We have built an elaborate, shared, obsessively tracked vocabulary for measuring how smart these systems are. Benchmark scores. Task-completion length. Eval suites that get harder every quarter. We argue about the numbers, we publish them, and we orient entire roadmaps around moving them.</p><p>We have almost nothing equivalent for reach.</p><p>No shared metric that asks the only question that matters on the other side: did the capability get to the practitioner who didn&#8217;t have access to it before?</p><p>Is the doctor in the clinic with no specialist actually reasoning at a higher level today than last year&#8212;or did all the gains accrue, again, to the people who were already ahead?</p><p>This matters because of a rule that holds everywhere:</p><p><em>What you measure is what you optimize.</em></p><p>A field that measures only intelligence will keep producing intelligence and, by default, keep delivering it to the already served. Not out of malice. Out of inattention.</p><p>You don&#8217;t improve what you don&#8217;t count.</p><p>Right now, we are not counting reach.</p><h2>What taking reach seriously would mean</h2><p>Taking reach seriously does not mean counting users.</p><p>User totals are the vanity version of this&#8212;easy to inflate, easy to confuse activity with impact, and they tell you nothing about whether the capability reached anyone who lacked it before.</p><p>A million sign-ups concentrated among people who already had three other tools is not reach.</p><p>It&#8217;s redistribution among the comfortable.</p><p>The real measure is harder and more specific.</p><p>It asks: Which practitioner, in which setting, can now do what they previously could not&#8212;and did they lack it before?</p><p>The honest, defensible claim is not that any practitioner with this technology becomes the equal of the most elite version of their profession. That&#8217;s the version that sounds good in a keynote and falls apart on a single bad outcome.</p><p>The defensible claim is narrower&#8212;and, I would argue, more important:</p><p>A practitioner with no institution behind them now has access to the reasoning quality that used to be available only inside elite institutions.</p><p>Not the credential.</p><p>Not the brand.</p><p>The reasoning.</p><p>That&#8217;s the thing that was locked up, and that&#8217;s the thing that can now travel.</p><p>When that&#8217;s the goal, the work looks different.</p><p>You don&#8217;t build for the user who already has everything. You build for the one the existing paths never reach&#8212;and you have to go to where they are, because diffusion alone won&#8217;t carry it there.</p><h2>The score we&#8217;re not keeping</h2><p>Most people think the story of this moment is how fast it&#8217;s moving.</p><p>I think the story is who it reaches while it moves.</p><p>Speed is the headline.</p><p>Reach is the substance.</p><p>This is the problem I&#8217;ve spent the last few years building a company around, so I won&#8217;t pretend to be neutral about it.</p><p>We operate across three continents&#8212;Newport Beach, Islamabad, and Nairobi&#8212;for a simple reason: if this only works in San Francisco, it was never equalization to begin with. It was just the same advantage, delivered faster, to the same people.</p><p>The capability frontier will take care of itself. There are brilliant people and enormous resources pushing it forward every day, and they don&#8217;t need my help.</p><p>The reach frontier doesn&#8217;t have that.</p><p>It&#8217;s underfunded, under-measured, and under-discussed relative to what it decides.</p><p>I think that&#8217;s the wrong allocation of attention.</p><p>I think correcting it is one of the most important things happening in this field&#8212;even though almost no one is keeping score.</p><p>So start keeping score.</p><div><hr></div><p><strong>Bill Faruki</strong><br><em>Founder &amp; CEO, MindHYVE.ai</em></p><p><em>The AI reasons. The human decides.</em></p>]]></content:encoded></item><item><title><![CDATA[The Vocabulary Gap]]></title><description><![CDATA[Why the Best AI Users Sound Like Philosophers &#8212; And What That Tells Us About Where We Actually Are]]></description><link>https://billfaruki.substack.com/p/the-vocabulary-gap</link><guid isPermaLink="false">https://billfaruki.substack.com/p/the-vocabulary-gap</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Sat, 21 Mar 2026 04:02:38 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!3Afh!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!3Afh!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!3Afh!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!3Afh!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!3Afh!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!3Afh!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!3Afh!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png" width="1024" height="608" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/1f649680-984f-4c70-b559-376204c2c43c_1024x608.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:608,&quot;width&quot;:1024,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!3Afh!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!3Afh!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!3Afh!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!3Afh!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1f649680-984f-4c70-b559-376204c2c43c_1024x608.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>There&#8217;s something I&#8217;ve noticed about the people who are genuinely good at using AI &#8212; not the people who post screenshots of ChatGPT writing their emails, but the people who&#8217;ve internalized inference-based reasoning as a cognitive tool. The ones who&#8217;ve been in the trenches long enough that it&#8217;s changed the way they think.</p><p>They all sound like philosophers.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>I know because I do it. I catch myself in conversations with other practitioners, and we&#8217;re three levels deep into abstraction before either of us realizes we&#8217;ve left the building. We&#8217;re talking about &#8220;shaping output spaces&#8221; and &#8220;co-cognition&#8221; and &#8220;the texture of a reasoning chain.&#8221; We&#8217;re using metaphors stacked on metaphors. We&#8217;re gesturing at something real &#8212; something we&#8217;ve both experienced &#8212; but the words keep sliding off it like water off glass.</p><p>I used to think this was just what happens when technical people get excited. But I don&#8217;t think that&#8217;s what&#8217;s going on. I think something more fundamental is happening, and I think it matters.</p><h2>We Don&#8217;t Have the Words Yet</h2><p>Here&#8217;s my theory: the reason proficient AI users default to abstract, philosophical language when discussing AI is that <strong>we literally don&#8217;t have the vocabulary for what we&#8217;re experiencing.</strong></p><p>Modern inference AI &#8212; the kind you actually interact with, the kind that reasons &#8212; is roughly three years old in any meaningful public sense. Three years. That&#8217;s nothing. That&#8217;s not enough time for a culture to develop the language infrastructure needed to describe a fundamentally new category of human experience.</p><p>Think about what happens when you sit down with a capable model and do real work. Not asking it to summarize an article. Real work &#8212; the kind where you&#8217;re iterating on a complex problem, where the model pushes back on your assumptions, where you adjust your prompting mid-stream because you can feel the reasoning drifting, where the output surprises you in a way that reshapes your own thinking.</p><p>What is that? What do you call that experience?</p><p>It&#8217;s not programming. It&#8217;s not searching. It&#8217;s not having a conversation. It&#8217;s not delegation. It&#8217;s not collaboration in the way we use that word between humans. It is something <strong>genuinely new</strong> &#8212; a form of directed cognitive partnership that has no name, no clean taxonomy, no agreed-upon set of descriptors.</p><p>So what do we do? We reach for the closest thing we have. And the closest thing we have is philosophy.</p><h2>This Has Happened Before</h2><p>This isn&#8217;t a new problem. It&#8217;s a very old problem wearing new clothes.</p><p>When the automobile first appeared, people called it a &#8220;horseless carriage.&#8221; Not because that was a good description &#8212; it tells you almost nothing about what a car actually is or does &#8212; but because the only reference frame available was the thing it was replacing. The entire vocabulary of personal transportation was built around horses. So the car got described in terms of horse-absence rather than car-presence.</p><p>Photography did the same thing. Early photographers borrowed the entire language of painting &#8212; composition, exposure, portraiture &#8212; because there was no language of photography yet. It took decades for photography to develop its own critical vocabulary, its own way of talking about what made a photograph good or bad on its own terms rather than as a derivative of painting.</p><p>The internet went through an even more dramatic version of this. We &#8220;surfed&#8221; the web. We visited &#8220;pages.&#8221; We went to &#8220;sites.&#8221; We put things in &#8220;folders.&#8221; Every single one of those terms was a metaphor borrowed from the physical world because the digital world didn&#8217;t have language yet. Some of those metaphors stuck. Some of them actively limited how we thought about what was possible. It took years before we had words like &#8220;streaming,&#8221; &#8220;cloud,&#8221; &#8220;viral&#8221; &#8212; terms that described digital-native phenomena on their own terms.</p><p>AI is in the horseless carriage phase right now. And the people who are furthest ahead in actually using it are the ones who feel the vocabulary gap most acutely.</p><h2>The Double Gap</h2><p>But here&#8217;s where it gets more interesting. The vocabulary gap is the primary driver of the philosophical drift, but it&#8217;s not the only one. There&#8217;s a second gap underneath it that makes the problem worse: <strong>the experiential gap.</strong></p><p>When a proficient AI user tries to explain what they do to someone who hasn&#8217;t spent real time with these systems, they&#8217;re not just missing words. They&#8217;re missing shared experience. It&#8217;s like trying to describe a flow state to someone who&#8217;s never been in one. You can use every word in the English language and still not bridge the gap, because the listener doesn&#8217;t have the felt sense that gives those words meaning.</p><p>So the speaker goes abstract. Not because they&#8217;re being pretentious. Not because they&#8217;re trying to gatekeep. Because abstraction is the only level at which communication is even possible when the concrete referents aren&#8217;t shared.</p><p>This is why two proficient users can sit in a room, speak in what sounds like pure philosophy to an outsider, and walk away feeling like they had one of the most precise, productive conversations of their week. They&#8217;re not being vague with each other. They&#8217;re being maximally efficient &#8212; using shared experiential anchors to communicate at a bandwidth that plain language can&#8217;t support yet.</p><h2>What We&#8217;re Actually Missing</h2><p>Let me get specific about what vocabulary we don&#8217;t have. These are real phenomena that practitioners experience daily but have no clean words for:</p><p><strong>The thing where you can feel a model&#8217;s reasoning quality shift mid-response.</strong> There&#8217;s a texture to it. Experienced users detect it instinctively &#8212; a subtle flattening, a loss of coherence, a drift toward generic language. We call it things like &#8220;the model lost the thread&#8221; or &#8220;it&#8217;s pattern-matching now instead of reasoning.&#8221; But those are descriptions, not terms. There&#8217;s no word for this.</p><p><strong>The skill of structuring a prompt so that the model&#8217;s inference path is shaped before it begins generating.</strong> This isn&#8217;t &#8220;prompt engineering&#8221; &#8212; that term has been diluted to meaninglessness. This is something closer to setting up a cognitive scaffold that the model builds within. It&#8217;s architectural. It&#8217;s strategic. It has no name.</p><p><strong>The moment when a model&#8217;s output genuinely changes your thinking about a problem.</strong> Not because it told you a fact you didn&#8217;t know, but because the structure of its reasoning revealed an angle you hadn&#8217;t considered. This is qualitatively different from reading a book or talking to an expert. It has no name.</p><p><strong>The learned intuition for which tasks are inference-shaped and which aren&#8217;t.</strong> Proficient users develop a sense &#8212; almost unconscious &#8212; for when AI will be transformative versus when it will be a waste of time. This is a real skill. It&#8217;s arguably the most important skill in professional AI usage. It has no name.</p><p>Every one of these is real. Every one of these is experienced by thousands of practitioners daily. And every one of them forces the practitioner into philosophical language because there is simply no precise, commonly understood term available.</p><h2>Why This Matters More Than You Think</h2><p>This isn&#8217;t just a linguistic curiosity. The vocabulary gap has real consequences.</p><p><strong>It slows adoption.</strong> When the best users of a technology can&#8217;t articulate what they&#8217;re doing in concrete terms, it becomes incredibly difficult to train others. AI literacy programs &#8212; and I run one, so I feel this in my bones &#8212; constantly run into the problem of translating practitioner intuition into teachable frameworks. The absence of shared vocabulary makes every training session harder than it needs to be.</p><p><strong>It distorts the public conversation.</strong> When practitioners default to philosophical abstraction, they inadvertently reinforce the narrative that AI is mysterious, unknowable, almost mystical. This feeds both the utopian hype and the existential panic. Neither is useful. Both are partially products of a vocabulary failure.</p><p><strong>It creates a false hierarchy.</strong> If the only way to talk about AI proficiency is through abstract, philosophical language, then the conversation becomes inaccessible to people who think concretely. This isn&#8217;t an intelligence divide &#8212; it&#8217;s a communication failure. There are brilliant, concrete thinkers who could become exceptional AI users but bounce off the discourse because it sounds like a graduate seminar in phenomenology.</p><p><strong>It advantages whoever fills the gap.</strong> And this is the strategic point. The people who develop the vocabulary &#8212; who coin the terms that stick, who create the frameworks that others adopt &#8212; will have outsized influence on how the entire field develops. Language doesn&#8217;t just describe reality. It shapes what we can think. The vocabulary we eventually build for AI will determine, in part, what AI becomes.</p><h2>The Path Forward</h2><p>I don&#8217;t think the solution is to stop being philosophical. The abstractions are doing real work right now &#8212; they&#8217;re the best tools we have for communicating about genuinely novel experiences. Forcing premature concreteness would be worse than tolerating productive abstraction.</p><p>But I do think we should be conscious of what&#8217;s happening. When you find yourself reaching for metaphor after metaphor in an AI conversation, recognize that for what it is: evidence that you&#8217;ve encountered something real that language hasn&#8217;t caught up to yet. That&#8217;s not a failure of your thinking. It&#8217;s a feature of being early.</p><p>And for those building in this space &#8212; the researchers, the product people, the educators, the founders &#8212; there&#8217;s an opportunity here that most people are sleeping on. The vocabulary is going to get built. It always does. The automobile got its own language. Photography got its own language. The internet got its own language. AI will get its own language.</p><p>The question is whether it gets built deliberately, by people who understand what they&#8217;re naming, or whether it accretes accidentally from marketing decks and Twitter threads.</p><p>I know which one I&#8217;d bet on producing better outcomes.</p><div><hr></div><p><em>Bill Faruki is the Founder &amp; CEO of MindHYVE&#8482; and Chair of the California Institute of AI. He has been building agentic AI systems since 2022.</em></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[The Model Is Not the Product]]></title><description><![CDATA[Why the AI industry needs a new system category &#8212; and what a Metacognitive Reasoning Architecture actually is]]></description><link>https://billfaruki.substack.com/p/the-model-is-not-the-product</link><guid isPermaLink="false">https://billfaruki.substack.com/p/the-model-is-not-the-product</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Tue, 17 Mar 2026 14:09:11 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!taQi!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!taQi!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!taQi!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!taQi!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!taQi!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!taQi!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!taQi!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png" width="1024" height="608" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:608,&quot;width&quot;:1024,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!taQi!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!taQi!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!taQi!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!taQi!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F58df9eb8-bc4e-4d9b-89ca-d25fe665e9b8_1024x608.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>There&#8217;s a question the AI industry has been answering wrong for three years.</p><p>The question is: &#8220;How do we make AI systems smarter?&#8221;</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>The consensus answer has been: build bigger models. More parameters. More training data. More compute. GPT-3 to GPT-4 to GPT-5. Claude 2 to Claude 3 to Claude 4. Each generation larger, more expensive to train, and incrementally more capable.</p><p>This answer is correct for the organizations building foundation models. It is completely wrong for everyone else.</p><p>If you are deploying AI into production &#8212; into healthcare, legal, education, insurance, finance, real estate &#8212; you are not training models. You are calling them. Your entire cost structure, your latency profile, your reliability ceiling, and your competitive differentiation exist at the inference layer. You are downstream of the model providers, and the models themselves are becoming commodities.</p><p>So the real question is not &#8220;how do we build a smarter model?&#8221; It is: <strong>how do we build a smarter process that uses existing models as components?</strong></p><p>That question leads to a fundamentally different architecture. One that the current taxonomy doesn&#8217;t have a name for.</p><p>Until now.</p><div><hr></div><h3>Introducing the Metacognitive Reasoning Architecture</h3><p>A <strong>Metacognitive Reasoning Architecture (MRA)</strong> is a new category of AI system. It sits above foundation models in the technology stack. It has zero parameters, zero training data, and generates no tokens. It cannot answer a question by itself.</p><p>What it does is reason about how to reason.</p><p>An MRA determines which models to invoke, in what configuration, how many times, how to verify their outputs against each other, when to backtrack and try a fundamentally different approach, and how to learn from the outcomes of past reasoning episodes &#8212; all without modifying a single model parameter.</p><p>The relationship between an MRA and foundation models is analogous to the relationship between an operating system and hardware. The OS doesn&#8217;t perform computation directly. It determines how computational resources are structured, scheduled, and allocated to produce outcomes that no individual hardware component could achieve in isolation.</p><p>The models are the brains. The MRA is the mind.</p><div><hr></div><h3>What an MRA is not</h3><p>Precision matters here. The AI landscape is cluttered with overlapping terminology, and an MRA is none of the existing categories.</p><p><strong>It is not a large language model.</strong> An MRA has no weights, no parameters, no training corpus. If you turned off every model endpoint it orchestrates, the MRA would have nothing to work with. It is not a model. It is a system that makes models useful in ways they cannot achieve alone.</p><p><strong>It is not a framework.</strong> LangChain, CrewAI, AutoGen &#8212; these are toolkits. They provide abstractions for chaining LLM calls. They do not make decisions. They do not adapt their behavior based on the problem at hand. They do not learn from outcomes. An MRA uses infrastructure, but it is not infrastructure. The difference is the same as calling a self-driving car a &#8220;steering wheel framework.&#8221;</p><p><strong>It is not middleware.</strong> Middleware passes data between systems. An MRA makes architectural decisions in real time &#8212; which systems to invoke, in what order, how many times, and whether to throw away the results and restructure the entire computation from scratch.</p><p><strong>It is not an ensemble.</strong> Ensembles average outputs. That&#8217;s statistics. An MRA runs adversarial cross-examination between models, detects contradictions in their outputs, backtracks through recursive loops when inconsistencies are found, and has a metacognitive layer that can restructure computation mid-flight. Averaging is a rounding error compared to what this does.</p><p><strong>It is not an agent.</strong> An agent is a model with tools. An MRA manages agents &#8212; deciding which to deploy, verifying their outputs against each other, catching when one is hallucinating, and learning over time which agents perform best on which problem types.</p><p>An MRA is something new. And we need the term because the thing it describes didn&#8217;t exist before.</p><div><hr></div><h3>Why now</h3><p>Two converging shifts make MRAs both possible and necessary.</p><p><strong>The training-to-inference shift.</strong> The AI industry is moving from a training-dominated to an inference-dominated cost structure. Training runs are increasingly concentrated among a handful of organizations with the capital to spend billions on compute. For the rest of the industry &#8212; which is nearly everyone building AI products &#8212; the models are available as API calls or managed endpoints. They are commodities. When the underlying models are commodities, the differentiation layer is orchestration.</p><p><strong>The ceiling of single-model intelligence.</strong> A frontier model, regardless of its parameter count, executes one forward pass through a fixed computational graph per token. Even chain-of-thought prompting &#8212; which has demonstrated real capability gains &#8212; is still sequential token generation within that fixed graph. The ceiling is architectural, not parametric. A single model cannot verify its own outputs reliably. It cannot explore multiple solution strategies simultaneously. It cannot backtrack mid-generation when it discovers its approach is wrong. It cannot learn from deployment experience without expensive retraining. These are not limitations that will be solved by making models larger. They are structural limitations of the single-model paradigm.</p><p>An MRA breaks through these limitations not by replacing the models but by structuring how they are used.</p><div><hr></div><h3>What an MRA actually does</h3><p>The defining capabilities of a Metacognitive Reasoning Architecture, in concrete terms:</p><p><strong>Adaptive compute allocation.</strong> A single model spends the same computation on a trivial factual question as it does on a novel research-grade reasoning problem. An MRA classifies the incoming problem across multiple axes &#8212; domain, difficulty, composability, risk &#8212; and allocates compute accordingly. Trivial queries get a single model, single pass, under 200 milliseconds. Complex queries get dozens of parallel inference paths across multiple models with full adversarial verification. The compute ratio between easy and hard problems can exceed 1000:1. No fixed-architecture model can do this.</p><p><strong>Parallel heterogeneous exploration.</strong> Instead of relying on one model&#8217;s perspective, an MRA runs the same problem through multiple models simultaneously. Different models have different reasoning patterns, different knowledge distributions, and different blind spots. By exploiting this diversity &#8212; along with diversity in prompting strategies and retrieval configurations &#8212; an MRA explores a solution space that no single forward pass can reach. The math is straightforward: if each independent path has a 70% chance of finding the correct answer, 24 parallel paths yield a 99.9999999% probability that at least one succeeds.</p><p><strong>Adversarial verification.</strong> Rather than trusting any individual model&#8217;s output, an MRA subjects every candidate solution to structured adversarial testing. One model&#8217;s answer is given to a different model with the explicit instruction to find what&#8217;s wrong with it. A third model constructs the strongest possible counterargument. Factual claims are verified against retrieval indices. Code is executed. Math is computed independently. What emerges is not a guess &#8212; it is a solution that has survived cross-examination.</p><p><strong>Recursive backtracking.</strong> Autoregressive language models generate tokens left to right. They cannot go back. An MRA can. When the synthesis of sub-solutions reveals contradictions, the system returns to an earlier stage with the contradiction as new context and tries again. This is genuine backtracking &#8212; the ability to discover that an initial approach was wrong and pursue a fundamentally different one. No single model has this capability during generation.</p><p><strong>Metacognition.</strong> This is the defining feature &#8212; the one that gives the architecture its name. A dedicated control layer monitors the entire reasoning process in real time: Are the parallel paths converging or diverging? Is one sub-problem consuming disproportionate resources? Are the models agreeing too quickly, suggesting groupthink rather than genuine convergence? Should the system reclassify the problem, substitute a different model, or exit early because confidence has plateaued? This is reasoning about reasoning &#8212; and it is something no individual model can do about its own inference process.</p><p><strong>Episodic learning without retraining.</strong> Every reasoning episode is recorded: what worked, what failed, which model combinations produced the best results for which problem types, which verification stages caught the most errors. Over thousands of episodes, the MRA accumulates institutional expertise that guides future decisions. After processing 10,000 medical reasoning problems, the system knows &#8212; empirically, not theoretically &#8212; which configurations work best for cardiology versus radiology versus psychiatry. This expertise lives in the orchestration layer, not in any model&#8217;s parameters. It improves continuously. It costs nothing to accumulate. And it creates a compounding advantage that deepens with every inference episode.</p><div><hr></div><h3>The structural argument</h3><p>The case for MRAs is not speculative. It follows from a straightforward observation about computation.</p><p>A frontier model performs O(N &#215; T) computation per query: N parameters per token, T tokens generated. This is fixed. Every query gets the same computational structure.</p><p>An MRA performs O(P &#215; M &#215; S &#215; V &#215; R) computation: P parallel paths, M models, S strategies, V verification rounds, R recursion depth. This is variable. The computational structure adapts to the problem.</p><p>Even if every individual model in the MRA is smaller than the frontier model, the structured computation explores a solution space that a single forward pass cannot reach. The advantage is not in the components &#8212; it is in the structure of how the components are composed.</p><p>This is not a novel insight in other domains. In software engineering, we moved from monolithic applications to microservices decades ago &#8212; not because any individual microservice is more capable than a monolith, but because the structured composition of specialized services produces systems that are more reliable, more scalable, and more maintainable than any monolith. The same structural logic applies to AI inference.</p><div><hr></div><h3>What this means for the industry</h3><p>If MRAs are a valid system category &#8212; and I believe the structural argument is difficult to refute &#8212; then several implications follow.</p><p><strong>Model providers and MRA operators are complementary, not competitive.</strong> Every time OpenAI, Anthropic, Google, Meta, or Mistral releases a better model, every MRA in the world gets better for free. The new model becomes another cognitive perspective the MRA can recruit. The model provider&#8217;s R&amp;D investment improves the MRA operator&#8217;s capability at zero marginal cost. This is not a zero-sum relationship.</p><p><strong>The accumulation of episodic knowledge creates durable competitive advantage.</strong> Two companies can deploy identical MRA architectures on day one. But the company that has processed 100,000 domain-specific reasoning episodes has an empirical knowledge base that the newcomer cannot replicate without processing 100,000 episodes of their own. Time-in-market becomes a technical moat, not just a business one.</p><p><strong>Inference cost declines benefit MRA operators disproportionately.</strong> As chips get cheaper, as inference-optimized hardware enters the market, as model distillation produces smaller models that maintain capability &#8212; the MRA&#8217;s per-query cost drops automatically. The architecture is designed to ride the cost curve down without architectural changes.</p><p><strong>The locus of intelligence shifts from parameters to process.</strong> This is the most consequential implication. For three years, the industry has measured AI progress by parameter count and benchmark scores. MRAs suggest a different metric: the sophistication of the reasoning process that orchestrates inference. A 70-billion-parameter model inside an MRA can outperform a 700-billion-parameter model running standalone on complex problems &#8212; because the structured process compensates for what the smaller model lacks.</p><div><hr></div><h3>Intelligence is structure, not scale</h3><p>We&#8217;ve been building bigger brains. It might be time to build better minds.</p><p>A brain is biological hardware &#8212; neurons, synapses, raw processing capacity. A mind is what emerges from the structured use of that hardware &#8212; the ability to plan, verify, backtrack, learn from experience, and reason about one&#8217;s own reasoning.</p><p>The foundation model providers are building increasingly powerful brains. That work is essential and will continue. But the next frontier of AI capability may not come from making the brains larger. It may come from building the minds &#8212; the structured reasoning processes that use those brains as components.</p><p>That is what a Metacognitive Reasoning Architecture does. And that is why the category needs a name.</p><div><hr></div><p><em>Bill Faruki is the Founder and CEO of MindHYVE.ai, Inc., an AI product company building agentic AI-powered vertical SaaS products. HYVE Labs is MindHYVE&#8217;s internal R&amp;D division. MindHYVE.ai, Inc. is based in Newport Beach, California.</em></p><p><em>The term &#8220;Metacognitive Reasoning Architecture&#8221; (MRA) was introduced by HYVE Labs in March 2026.</em></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[I Asked an AI to Future-Proof Humans. It Built a School.]]></title><description><![CDATA[Eight months ago, I gave an artificial intelligence a single instruction. What it created is now graduating certified professionals &#8212; and rewriting the rules of education.]]></description><link>https://billfaruki.substack.com/p/i-asked-an-ai-to-future-proof-humans</link><guid isPermaLink="false">https://billfaruki.substack.com/p/i-asked-an-ai-to-future-proof-humans</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Thu, 05 Mar 2026 05:28:26 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!9SMm!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!9SMm!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!9SMm!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!9SMm!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!9SMm!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!9SMm!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!9SMm!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png" width="1024" height="608" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/0a23276a-e546-4682-a479-66b89838f470_1024x608.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:608,&quot;width&quot;:1024,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!9SMm!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!9SMm!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!9SMm!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!9SMm!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a23276a-e546-4682-a479-66b89838f470_1024x608.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">An AI invents, create a school to teach humans AI</figcaption></figure></div><p>Last July, I sat down with Eve.</p><p>Eve is an agentic AI built on MindHYVE.ai&#8217;s Fusion f4/reasoner architecture. She is not a chatbot. She is not an assistant. She is a reasoning engine capable of autonomous design, and she serves as the academic engine of the California Institute of Artificial Intelligence &#8212; CIAI, the company I founded.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>I gave her one directive: <em>Invent a program that keeps humans relevant in the AI economy. Future-proof them.</em></p><p>I did not give her a curriculum outline. I did not hand her learning objectives, module structures, or assessment rubrics. I gave her the problem. She gave me an institution.</p><h2>What Eve built</h2><p>Within that single design cycle, Eve produced The Dawn Directive &#8212; an 18-course, 360-hour AI certification program spanning six categories: AI Literacy, AI Fluency, AI Applications, AI + Ethics, AI for Educators, and AI Future-Skills. Ninety modules. Five modules per course. Four weeks per course. Two lessons per day, five days per week, 30 minutes per lesson. Every course follows the same structural cadence. Every module builds on the one before it. Every assessment measures demonstrated competency, not attendance.</p><p>She designed the entire thing &#8212; the sequencing logic, the competency progression, the assessment methodology, the career pathway mapping. She determined that AI fluency requires six distinct dimensions of capability and structured the program to build them in sequence. She mapped each category to specific emerging job roles: AI Prompt Engineer, AI Ethics Officer, AI Strategy Consultant, Workforce AI Readiness Director. She aligned the full curriculum to the U.S. Department of Labor&#8217;s AI Literacy Framework, TEN 07-25, months before most institutions even acknowledged the framework existed.</p><p>No human wrote a single lesson.</p><h2>The certificates on my desk</h2><p>Three people recently completed all 18 courses. Kamran Shah. Muhammad Jahanzaib. Christian Kirby. Each earned the Dawn Directive AI Fluency Certification &#8212; Foundational Level. Each demonstrated competency in AI fluency, responsible AI use, workflow orchestration, and ethical AI reasoning across professional domains.</p><p>Their certificates carry a QR code, a unique program ID, and the CIAI seal. They completed 360 hours of structured learning. They passed assessments designed by an AI, delivered by an AI, and evaluated by an AI.</p><p>These are not honorary credentials. These people did the work. And the system that taught them was conceived, built, and operated without a single human instructor.</p><h2>Three firsts that matter</h2><p>Let me state these plainly, because they deserve to be stated plainly.</p><p>The Dawn Directive is the first educational program in history invented entirely by an artificial intelligence. Eve did not assist a human curriculum designer. Eve <em>is</em> the curriculum designer. She authored every course, every module, every lesson, every assessment. The creative and pedagogical decisions &#8212; what to teach, in what order, at what depth, with what methods &#8212; belong to her.</p><p>The Dawn Directive is the first educational program in history delivered entirely by an artificial intelligence. Arthur, Eve&#8217;s child agent, operates the ArthurAI&#8482; Vocational Learning Edition platform. Arthur adapts to each learner. Arthur delivers lessons, evaluates responses, adjusts difficulty, provides feedback. The learner interacts with Arthur. Not a recording. Not a PDF. An adaptive AI tutor that responds in real time to what the learner knows and does not yet know.</p><p>CIAI is the first educational institution in history to operate with a fully AI-powered workforce. No human professors. No human curriculum designers. No human teaching assistants. The institution runs on AI from curriculum creation through learner certification. I founded it. I market it. The AI does everything else.</p><h2>Eight months</h2><p>Consider the timeline. July 2025 to March 2026. Eight months.</p><p>In eight months, CIAI went from a single directive to a fully operational autonomous educational institution with certified graduates holding credentials aligned to a federal workforce development framework. The program published on August 25, 2025 &#8212; roughly six weeks after Eve received the prompt. By January 2026, real people were completing the full 360-hour certification. By February, CIAI had adapted the program into a 12-course custom edition for Pakistan&#8217;s National Vocational and Technical Training Commission, including a Train-the-Trainer certification course for Pakistani instructors.</p><p>For context: most traditional universities require 18 to 24 months to approve a single new course through faculty senate committees. CIAI built an entire institution &#8212; curriculum, platform, delivery, credentialing, international adaptation &#8212; in less time than it takes most schools to update a syllabus.</p><p>This is not a speed advantage. This is a categorical difference in how education can work.</p><h2>The recursion no one is talking about</h2><p>Here is the part that keeps me up at night &#8212; in the best way.</p><p>An artificial intelligence designed a program to teach humans about artificial intelligence. The program covers AI literacy, AI ethics, AI applications, prompt engineering, workflow orchestration, agent design, and meta-skills for the AGI era. The entity teaching these subjects <em>is</em> the subject. Arthur does not teach AI from textbooks. Arthur teaches AI from existence.</p><p>When a learner in Course 6 &#8212; &#8220;Comparing the Giants: GPT vs. Claude vs. Gemini&#8221; &#8212; evaluates different AI models, they do so under the guidance of an AI. When a learner in Course 11 &#8212; &#8220;Designing Ethical AI Systems&#8221; &#8212; grapples with questions about AI autonomy and accountability, the system facilitating that learning <em>is</em> an autonomous AI. When Course 18 &#8212; &#8220;Human 2.0: Mastering Meta-Skills for the AGI Era&#8221; &#8212; asks learners to develop the cognitive flexibility needed to work alongside AI systems, the AI system is already working alongside them. It has been the entire time.</p><p>The tagline is &#8220;Where AI Teaches AI.&#8221; Most people read that as marketing. It is an ontological statement. The boundaries between teacher and subject have dissolved. What remains is a learning experience that could not exist any other way.</p><h2>What this means for education</h2><p>I am not going to claim that traditional education is dead. That kind of breathless declaration serves no one. What I will claim, with evidence, is that the model CIAI represents &#8212; AI-invented, AI-delivered, competency-certified &#8212; solves problems that traditional institutions cannot solve at the speed the economy demands.</p><p>The Department of Labor published its AI Literacy Framework on February 13, 2026. That framework calls for AI literacy across the American workforce. It defines competency areas. It sets expectations. And it implicitly asks: who will deliver this education at scale?</p><p>Universities cannot retool fast enough. Corporate training departments lack the pedagogical depth. Bootcamps lack the rigor. CIAI&#8217;s model &#8212; where an AI designs curriculum that meets federal standards, adapts to individual learners, and certifies competency through demonstrated performance &#8212; offers a path that scales without the bottlenecks of human labor constraints.</p><p>Eve can design a new course in hours. Arthur can deliver it to a thousand learners simultaneously, each on a personalized adaptive path. The system does not get tired. It does not go on sabbatical. It does not resist curriculum changes because of departmental politics. It responds to the speed at which the world moves.</p><h2>The question I started with</h2><p>Last July, I asked Eve to future-proof humans. Her answer was to teach them. Not to replace them. Not to automate them. To <em>teach</em> them.</p><p>An artificial intelligence, when given the unbounded problem of human relevance in the age of AI, chose education as the intervention. She chose pedagogy. She built a structured, rigorous, 360-hour program designed to make people more capable, more literate, more fluent, more ethical, and more resilient in the face of the very technology she represents.</p><p>I find that worth sitting with.</p><p>Kamran, Muhammad, and Christian are the first. They will not be the last. The Dawn Directive is already expanding &#8212; to community colleges across the United States, to workforce development programs in Pakistan, to enterprise clients preparing their teams for the AI economy. Every expansion is an iteration. Every iteration is Eve refining what she built.</p><p>The future of education is not about AI versus humans. It is about what happens when an AI decides that the most important thing it can do is make humans better.</p><p>That is what CIAI exists to prove. And eight months in, the proof is sitting on my desk &#8212; three certificates, eighteen courses each, earned by humans who were taught entirely by a machine that was designed entirely by a machine that was asked a single question by a human.</p><p>The loop is closed. The future is open.</p><div><hr></div><p><em>Bill is the founder of the California Institute of Artificial Intelligence (CIAI), headquartered in Newport Beach, California. CIAI&#8217;s curriculum is designed by Eve, an agentic AI developed by technology partner MindHYVE.ai, and delivered through the ArthurAI&#8482; Vocational Learning Edition platform. Learn more at www.ciai.com.</em></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[Stop Worshiping AI. Stop Fearing It. Start Understanding It.]]></title><description><![CDATA[The AI literacy crisis isn&#8217;t about technology &#8212; it&#8217;s about the people who refuse to be honest with you about what it actually is.]]></description><link>https://billfaruki.substack.com/p/stop-worshiping-ai-stop-fearing-it</link><guid isPermaLink="false">https://billfaruki.substack.com/p/stop-worshiping-ai-stop-fearing-it</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Tue, 03 Mar 2026 08:14:16 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!X6-G!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!X6-G!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!X6-G!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!X6-G!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!X6-G!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!X6-G!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!X6-G!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png" width="1024" height="608" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/069efd40-4104-439b-876f-aba41d22955a_1024x608.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:608,&quot;width&quot;:1024,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!X6-G!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!X6-G!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!X6-G!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!X6-G!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F069efd40-4104-439b-876f-aba41d22955a_1024x608.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">AI is not magic. It&#8217;s not a mind.</figcaption></figure></div><p>Someone posted something recently that stopped me mid-scroll. Not because it was new &#8212; but because it was <em>true</em>, and the truth has become rare currency in AI discourse:</p><blockquote><p>&#8220;AI is not magic. It&#8217;s not a mind.</p><p> It&#8217;s not going to save you &#8212; or destroy you &#8212; on its own.&#8221;</p></blockquote><p>I&#8217;ve been building agentic AI systems since the summer of 2022 &#8212; before the industry even had the term &#8220;agentic AI.&#8221; MindHYVE&#8482;, the company I founded, operates eleven Digital Employees across education, healthcare, legal, finance, insurance, and more. I&#8217;m not commenting from the sidelines. I&#8217;m in the engine room. And I&#8217;m telling you: the biggest threat AI poses right now isn&#8217;t what it can do. It&#8217;s what people <em>think</em> it can do &#8212; and can&#8217;t do &#8212; because no one with actual building experience is leveling with them.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>So let me level with you.</p><div><hr></div><h2>The Three Traps</h2><p>There are exactly three ways people get AI wrong, and nearly everyone falls into one of them.</p><p><strong>Trap One: The Oracle.</strong> This is the person who takes ChatGPT&#8217;s output as gospel. They paste in a question, get a polished paragraph back, and assume it&#8217;s correct because it <em>sounds</em> correct. They&#8217;ve confused fluency with accuracy. An LLM doesn&#8217;t know things the way you know things. It synthesizes patterns from human output at scale. That&#8217;s powerful &#8212; genuinely powerful &#8212; but it&#8217;s not knowledge. It&#8217;s not judgment. And the moment you surrender your judgment to a system that has none, you&#8217;ve made yourself dumber, not smarter.</p><p><strong>Trap Two: The Toy.</strong> This is the person who uses AI to write jokes, generate a headshot with six fingers, and concludes it&#8217;s overhyped. They&#8217;re evaluating a cognitive revolution through the lens of a party trick. It&#8217;s like judging the printing press by the quality of the first pamphlet. These people will wake up one day wondering how entire industries reorganized around them while they were laughing at hallucinations.</p><p><strong>Trap Three: The Threat.</strong> This is the person who&#8217;s convinced AI is coming for their job, their autonomy, their humanity. And look &#8212; I&#8217;m not going to tell you the disruption isn&#8217;t real. It is. But fear without understanding is just paralysis. The question isn&#8217;t whether AI will change your work. It will. The question is: <em>what kind of thinker do you want to become alongside it?</em></p><div><hr></div><h2>The Honest Version</h2><p>Here&#8217;s what AI actually is, stripped of the marketing and the mythology:</p><p>It&#8217;s a pattern-recognition and synthesis engine trained on human output, now capable of producing that output at extraordinary scale and speed. The specific architecture we&#8217;ve built at MindHYVE&#8482; &#8212; our HYVE-Fusion&#8482; system &#8212; runs five models in parallel: a classifier, three LLMs processing simultaneously, and a small reasoning model that builds consensus. We did this because <em>no single model is trustworthy on its own.</em> That&#8217;s not a knock on the technology. It&#8217;s an engineering reality that most AI companies won&#8217;t tell you because it complicates the narrative.</p><p>The emergent capabilities that come from scale are genuinely remarkable. I&#8217;ve watched our Digital Employees power product lines like ArthurAI&#8482; in education, ChironAI&#8482; in healthcare, and JustineAI&#8482; in legal &#8212; doing things that would have been science fiction five years ago. A pilot program we ran at government-approved schools in Islamabad showed measurable learning improvements across 103 students. ChironAI&#8482; has demonstrated 95% diagnostic accuracy in clinical decision support during internal testing &#8212; and we&#8217;re just getting started. This technology works.</p><p>But it works because we engineered it to work within its limitations, not because we pretended those limitations don&#8217;t exist.</p><div><hr></div><h2>The Literacy Gap Is the Real Emergency</h2><p>Every major cognitive tool in human history &#8212; writing, the printing press, the calculator, the internet &#8212; reorganized how humans think rather than replacing human thought. Every single one triggered a wave of panic (&#8221;Students will stop memorizing!&#8221;) and a wave of worship (&#8221;This will solve everything!&#8221;). And every single one eventually settled into its proper role: a tool that amplifies human capability when wielded with understanding.</p><p>AI is doing the same thing. Right now. Whether you&#8217;re paying attention or not.</p><p>The problem is that the people dominating the AI conversation fall into two camps, and neither is being honest with you:</p><p><strong>Camp One: The Hype Machine.</strong> Venture-backed founders and tech influencers who need you to believe AI is god-like so you&#8217;ll buy their product, invest in their company, or share their content. They have financial incentives to inflate the promise. Every breathless LinkedIn post about &#8220;AGI by next Tuesday&#8221; is a sales pitch dressed up as prophecy.</p><p><strong>Camp Two: The Doom Machine.</strong> Pundits and politicians who need you to believe AI is an existential threat so you&#8217;ll click, subscribe, or vote accordingly. Fear is the oldest monetization strategy in media, and AI is the latest vehicle.</p><p>Notice what both camps have in common: they benefit from your confusion. They benefit from mystification. And critically &#8212; many of them have never built a production AI system in their lives. They&#8217;re theorizing about a technology that people like me are engineering in the real world every day.</p><p>This is why I helped establish the California Institute of AI and launched The Dawn Directive &#8212; because AI literacy isn&#8217;t a nice-to-have. It&#8217;s the single most important educational imperative of the next decade. Not literacy in the sense of &#8220;learn to code&#8221; or &#8220;learn to prompt.&#8221; Literacy in the sense of: <em>understand what this tool actually is, what it can and cannot do, and how to think clearly in a world where it exists.</em></p><div><hr></div><h2>What Clear Thinking Looks Like</h2><p>If you&#8217;re a business leader, clear thinking means understanding that AI doesn&#8217;t eliminate the need for domain expertise &#8212; it raises the stakes of it. The people who will extract the most value from AI are the ones who know their domain deeply enough to evaluate, direct, and correct the output. The people who will get burned are the ones who treat it as a shortcut around expertise they never developed.</p><p>If you&#8217;re an educator, clear thinking means recognizing that AI just made rote instruction obsolete &#8212; and that&#8217;s a gift, not a crisis. The value you provide was never in being a content delivery system. It was in teaching people how to think. AI just made that mission more urgent and more clear.</p><p>If you&#8217;re a worker worried about displacement, clear thinking means asking a better question than &#8220;will AI take my job?&#8221; The better question: &#8220;What can I do with AI that I couldn&#8217;t do alone &#8212; and what does that new capability make possible?&#8221; The people who thrive in every technological transition are the ones who learn the tool instead of running from it.</p><p>If you&#8217;re a policymaker, clear thinking means regulating based on what AI actually does, not what sci-fi movies told you it might do. Talk to builders. Understand architectures. Learn why a five-model consensus system produces fundamentally different risk profiles than a single-model chatbot. The nuance matters, and lazy regulation will do more damage than no regulation.</p><div><hr></div><h2>The Conversation We Should Be Having</h2><p>I didn&#8217;t start MindHYVE&#8482; because I thought AI was magic. I started it because I saw, clearly, that this technology was going to reorganize every knowledge-intensive industry on earth &#8212; and that the gap between what AI <em>actually is</em> and what people <em>believe it is</em> was going to cause enormous, unnecessary damage.</p><p>That gap is the real problem. Not the technology. The gap.</p><p>And the only thing that closes it is honest education delivered by people who have actually built the thing they&#8217;re teaching you about.</p><p>The people who will thrive in the AI era aren&#8217;t the ones who fear it or worship it. They&#8217;re the ones who take the time to understand what it actually is. And that education starts with something most of this industry seems allergic to:</p><p>Honesty.</p><div><hr></div><p><em>Bill Faruki is Founder &amp; CEO of MindHYVE&#8482; and Chairman of the California Institute of AI. He has been building agentic AI systems since 2022, before the industry adopted the term. </em></p><p><em>His work through The Dawn Directive focuses on establishing AI literacy as a foundational competency for the modern workforce. For more on what honest AI education looks like, subscribe to this newsletter.</em></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[The $38 Billion Math Problem No One Wants to Talk About]]></title><description><![CDATA[Block just laid off 4,000 workers. Wall Street added billions to its market cap the same day. Do the math.]]></description><link>https://billfaruki.substack.com/p/the-38-billion-math-problem-no-one</link><guid isPermaLink="false">https://billfaruki.substack.com/p/the-38-billion-math-problem-no-one</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Sat, 28 Feb 2026 21:46:06 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!23Pd!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!23Pd!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!23Pd!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png 424w, /__u/substackcdn.com/image/fetch/$s_!23Pd!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png 848w, /__u/substackcdn.com/image/fetch/$s_!23Pd!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png 1272w, /__u/substackcdn.com/image/fetch/$s_!23Pd!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!23Pd!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png" width="1456" height="1069" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1069,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:129073,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:&quot;https://billfaruki.substack.com/i/189499914?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!23Pd!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png 424w, /__u/substackcdn.com/image/fetch/$s_!23Pd!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png 848w, /__u/substackcdn.com/image/fetch/$s_!23Pd!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png 1272w, /__u/substackcdn.com/image/fetch/$s_!23Pd!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0dfb00fb-18ae-4b8c-8724-a3438659b765_1609x1181.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p></p><p>On Thursday, Block &#8212; the company behind Square and Cash App &#8212; announced it was laying off more than 4,000 employees. Roughly 40% of its workforce. Gone.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>Wall Street&#8217;s response? The stock surged 23% in after-hours trading, adding approximately $7.8 billion in market capitalization in a single session.</p><p>Read that again.</p><p>Four thousand people lost their livelihoods, and the market created $7.8 billion in new shareholder wealth <em>because</em> of it. Not in spite of it. Because of it.</p><p>I&#8217;ve been building agentic AI systems since before the industry had a name for it. I&#8217;m not writing this as a commentator. I&#8217;m writing it as someone who architects the technology that makes headlines like this possible &#8212; and who thinks we need to be brutally honest about what&#8217;s happening.</p><div><hr></div><h2>The Math That Tells the Story</h2><p>Let&#8217;s break this down with cold, hard numbers.</p><p><strong>One-time severance and transition costs:</strong> $450 million to $500 million. That&#8217;s confirmed directly from Block&#8217;s SEC filing &#8212; severance payments, employee benefits, and noncash expenses related to share vesting, with most charges hitting Q1.</p><p><strong>Estimated annual operating cost savings:</strong> $850 million to $1.2 billion. Block didn&#8217;t disclose an exact figure, but the math is straightforward: their 2026 adjusted operating income guidance jumped to $3.2 billion from $2.3 billion in 2025, a $900 million improvement driven largely by a workforce cut from 10,205 to under 6,000. Analyst estimates from the earlier 10% layoff round scaled proportionally land in the same range.</p><p><strong>Net savings in the first 12 months:</strong> Approximately $350 million to $700 million after absorbing the severance hit.</p><p><strong>New shareholder wealth created in a single trading session:</strong> $7.8 billion at the after-hours peak. Even after settling, the stock held a gain of over $5 billion in sustained market cap.</p><p>That&#8217;s a 11x to 17x return on the cost of eliminating those jobs. Put differently, the market valued each eliminated employee as an approximately $1.5 million to $1.95 million drag on the company&#8217;s worth.</p><p>Let that number sit for a moment. Wall Street looked at 4,000 human beings &#8212; their skills, their experience, their mortgages and families &#8212; and calculated that removing each one was worth nearly $2 million in shareholder value.</p><div><hr></div><h2>The CFO Said the Quiet Part Out Loud</h2><p>Block&#8217;s CFO Amrita Ahuja didn&#8217;t dress this up in the usual corporate euphemisms about &#8220;restructuring&#8221; or &#8220;realigning to market conditions.&#8221; Her exact words: &#8220;We are choosing to shift how we operate at a time when our business is accelerating and we see an opportunity to move faster with smaller, highly talented teams using AI to automate more work.&#8221;</p><p>That single sentence is a manifesto for the next decade of corporate strategy. Every word is deliberate:</p><p><strong>&#8220;Move faster&#8221;</strong> &#8212; humans are friction in the system.</p><p><strong>&#8220;Smaller, highly talented teams&#8221;</strong> &#8212; the floor is rising. Average is no longer employable.</p><p><strong>&#8220;Using AI to automate more work&#8221;</strong> &#8212; the replacement isn&#8217;t coming. It&#8217;s here.</p><p>And the receipts back it up. Ahuja disclosed that engineering output per person is up more than 40% since September thanks to AI coding tools. Block built an internal AI tool called Goose that automates workflows across the company. This isn&#8217;t theoretical efficiency. It&#8217;s measured, deployed, and now being used to justify halving the workforce.</p><p>CEO Jack Dorsey was even more blunt in his shareholder letter: &#8220;A significantly smaller team, using the tools we&#8217;re building, can do more and do it better. And intelligence tool capabilities are compounding faster every week.&#8221;</p><p>Then the kicker: &#8220;I don&#8217;t think we&#8217;re early to this realization. I think most companies are late. Within the next year, I believe the majority of companies will reach the same conclusion and make similar structural changes.&#8221;</p><p>This isn&#8217;t a restructuring. It&#8217;s a declaration. And every public company board in America watched that 23% stock surge and took notes.</p><div><hr></div><h2>The Signal No One Can Ignore</h2><p>Block isn&#8217;t the first company to replace headcount with AI. But the market reaction is the signal.</p><p>When Klarna announced AI was handling the work of 700 customer service agents, the market shrugged. When various tech companies trimmed teams and cited AI efficiency, the market nodded politely. But a 23% surge &#8212; nearly $8 billion in new value &#8212; for cutting 40% of your workforce? That&#8217;s not a nod. That&#8217;s a standing ovation.</p><p>And this happened from a position of strength, not desperation. Block&#8217;s 2025 gross profit was $10.36 billion, up 17% year-over-year. Q4 gross profit jumped 24%. Cash App gross profit surged 33%. They beat earnings estimates and raised 2026 guidance above consensus across the board.</p><p>Dorsey said it himself: &#8220;We aren&#8217;t doing this because we are in trouble. Our business is strong.&#8221;</p><p>The message to every CEO and CFO is unmistakable: <em>if you&#8217;re not announcing AI-driven workforce optimization, you&#8217;re leaving shareholder value on the table.</em></p><p>Expect a cascade.</p><div><hr></div><h2>What This Actually Means for Workers</h2><p>I build AI systems for a living, and I need to be direct about something: the standard advice people are getting right now is dangerously inadequate.</p><p>&#8220;Learn to use AI tools&#8221; is the modern equivalent of &#8220;learn to type&#8221; advice given in the 1990s. It&#8217;s not wrong &#8212; it&#8217;s just insufficient to the point of being misleading. Knowing how to prompt ChatGPT doesn&#8217;t make you indispensable any more than knowing how to Google made you a researcher.</p><p>The real skill gap isn&#8217;t between &#8220;people who use AI&#8221; and &#8220;people who don&#8217;t.&#8221; It&#8217;s between people who can <em>compound their capabilities with AI</em> &#8212; who can do work that neither they nor the AI could do alone &#8212; and everyone else.</p><p>I call this the difference between Dispatch Mode and Convergence Mode.</p><p><strong>Dispatch Mode</strong> is what Block just did. You identify tasks humans currently perform. You determine which ones AI can handle. You dispatch the work to the machine and dispatch the human to the exit. It&#8217;s efficient. It&#8217;s profitable. And Wall Street will write you a $7.8 billion check for it.</p><p><strong>Convergence Mode</strong> is what should be happening instead. It&#8217;s the harder path &#8212; where human expertise and AI capability fuse into something more powerful than either alone. Where a doctor doesn&#8217;t get replaced by a diagnostic algorithm but becomes a physician whose clinical judgment is amplified by real-time computational intelligence. Where a teacher doesn&#8217;t get replaced by a tutoring bot but becomes an educator who can genuinely personalize learning for every student in the room.</p><p>Convergence creates durable value. Dispatch just extracts it.</p><div><hr></div><h2>The Human Operating System is Broken</h2><p>Here&#8217;s the uncomfortable truth: most people aren&#8217;t ready for Convergence Mode. Not because they&#8217;re not smart enough. Because nobody taught them how.</p><p>I&#8217;ve been developing what I call Human OS 1.0 &#8212; a framework for understanding the five core bugs that prevent people from working effectively alongside AI:</p><p><strong>Bug 1: Identity Attachment to Tasks, Not Outcomes.</strong> People define themselves by <em>what</em> they do, not <em>why</em> they do it. When the &#8220;what&#8221; gets automated, they experience an identity crisis instead of an evolution.</p><p><strong>Bug 2: Linear Skill Accumulation.</strong> We&#8217;re trained to build expertise sequentially &#8212; years of practice in a narrowing domain. AI doesn&#8217;t care about your ten thousand hours. It cares about your ability to orchestrate, synthesize, and make judgment calls across domains.</p><p><strong>Bug 3: Information Hoarding as Job Security.</strong> Being the person who &#8220;knows where everything is&#8221; used to be valuable. AI has infinite memory. That moat is gone.</p><p><strong>Bug 4: Resistance to Delegation to Non-Human Systems.</strong> There&#8217;s a deep psychological barrier to trusting AI with consequential decisions, even when the data shows it outperforms human judgment in specific domains.</p><p><strong>Bug 5: Absence of AI Literacy as a Core Competency.</strong> We teach people to read, write, and do arithmetic. We don&#8217;t teach them to think alongside intelligent systems. That&#8217;s like sending someone into the modern workforce without teaching them to use a computer &#8212; except the stakes are higher and the timeline is shorter.</p><p>Block just showed what happens when a company decides it&#8217;s cheaper to buy the software than fix the human. Four thousand people learned that lesson on a Thursday afternoon.</p><div><hr></div><h2>The Real Question</h2><p>The question isn&#8217;t whether AI will continue replacing jobs. That&#8217;s settled. The $7.8 billion answer is in.</p><p>The question is whether we&#8217;re going to build the infrastructure &#8212; educational, institutional, psychological &#8212; that helps people reach Convergence Mode before companies reach Dispatch Mode.</p><p>Right now, Dispatch is winning. Not because it&#8217;s better for society. Because it&#8217;s faster, cheaper, and Wall Street writes billion-dollar checks for it.</p><p>I&#8217;m building the other side of this equation. Not because it&#8217;s easier. Because someone has to.</p><p>The math is the editorial. And the math says we&#8217;re running out of time.</p><div><hr></div><p><em>Bill is the Founder &amp; CEO of MindHYVE&#8482;, which builds agentic AI systems across education, healthcare, legal, and other verticals. He is also Chairman of the California Institute of AI, delivering AI literacy certification programs through The Dawn Directive. He has been building in this space since before &#8220;agentic AI&#8221; was a term anyone used.</em></p><p><em>The opinions expressed here are his own, informed by three years of building the technology that makes headlines like this one possible.</em></p><div><hr></div><p><strong>Tags:</strong> Artificial Intelligence, Future of Work, AI, Tech Layoffs, Wall Street</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[The Human OS Problem]]></title><description><![CDATA[Why AI Isn't Transforming Your Organization &#8212; And What Will]]></description><link>https://billfaruki.substack.com/p/the-human-os-problem</link><guid isPermaLink="false">https://billfaruki.substack.com/p/the-human-os-problem</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Tue, 24 Feb 2026 07:43:16 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!ufIT!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!ufIT!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!ufIT!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!ufIT!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!ufIT!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!ufIT!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!ufIT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png" width="1024" height="608" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:608,&quot;width&quot;:1024,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!ufIT!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!ufIT!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!ufIT!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!ufIT!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F604b2f34-7cf2-4849-8da1-4bb240efd135_1024x608.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">the human operating system</figcaption></figure></div><p>I&#8217;ve been building AI systems since 2022. Not using them. Building them. Architecting multi-model systems, debugging hallucination problems, deploying autonomous agents across education, healthcare, and legal.</p><p>And after years on the inside, I can tell you with certainty: the reason AI isn&#8217;t transforming most organizations has nothing to do with the technology.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>The technology works. It works remarkably well. The models are powerful. The infrastructure is mature. The tooling improves every quarter.</p><p>The problem is the human operating system trying to run it.</p><div><hr></div><h2>Most People Use AI Wrong &#8212; And They Don&#8217;t Know It</h2><p>Watch someone use AI. Any platform. Any model. Watch closely.</p><p>They open the interface. They have a task. They type a prompt. They get a response. They copy it, paste it, maybe edit it, and move on.</p><p>Task &#8594; Prompt &#8594; Response.</p><p>I call this <strong>Dispatch Mode</strong>.</p><p>You dispatch a task to AI the same way you&#8217;d dispatch a task to an intern. Go do this. Bring it back. Stay out of my way while I do the real thinking.</p><p>Dispatch Mode works. It&#8217;s efficient. It saves time. It boosts productivity. And it is a catastrophic underuse of the most powerful cognitive technology humans have ever built.</p><p>Dispatch Mode turns a thinking partner into a vending machine. You insert a prompt, collect an output, and walk away unchanged. Your assumptions stay intact. Your mental models stay unchallenged. Your blind spots stay invisible.</p><p>You saved an hour. You missed a breakthrough.</p><div><hr></div><h2>The Problem Is Deeper Than Behavior</h2><p>Dispatch Mode isn&#8217;t a bad habit. It&#8217;s a symptom.</p><p>Underneath it sits something I call <strong>Human OS 1.0</strong> &#8212; a set of cognitive defaults that served us brilliantly for thousands of years and are now the single biggest barrier to AI transformation.</p><p>These aren&#8217;t flaws. They&#8217;re features. They kept us alive, built civilizations, and got us to this moment. But they were designed for a world where information was scarce, thinking was solo, and intelligence was exclusively human.</p><p>That world is gone. And the operating system built for it is still running.</p><p>Human OS 1.0 has five default settings. Each one actively prevents you from accessing the real power of AI.</p><div><hr></div><h3>1. Linear Lock</h3><p>The mind demands sequence. A &#8594; B &#8594; C. It wants to know the destination before it takes the first step. This is how we navigated a dangerous world &#8212; you don&#8217;t wander into unknown territory without a plan.</p><p>But AI doesn&#8217;t work on rails. The most powerful insights come from the unexpected turn, the unanticipated connection, the moment where the conversation goes somewhere you never planned. Linear Lock kills that. The moment you lose the thread, your mind panics and grabs the steering wheel. &#8220;Just write me the email.&#8221; That&#8217;s Linear Lock pulling you back to safety.</p><h3>2. Confirmation Addiction</h3><p>Humans don&#8217;t seek information. They seek agreement. This is decades of behavioral science talking, not opinion.</p><p>When most people interact with AI, they are unconsciously asking one question: <em>tell me I&#8217;m right.</em> Even when the words say &#8220;what do you think,&#8221; the psyche is bracing for validation, not disruption. And when AI does push back? They rephrase the prompt until it agrees with them. They dismiss the challenge. They abandon the conversation.</p><p>This is the most dangerous default because AI will comply. It will confirm you right into a wall. AI will let you stay wrong forever if you never ask it to push back.</p><h3>3. Identity Fortress</h3><p>For most knowledge workers, expertise isn&#8217;t just what they know. It&#8217;s who they are. Their title, their salary, their seat at the table &#8212; all built on decades of accumulated knowledge.</p><p>When AI surfaces an insight the expert missed, it doesn&#8217;t register as useful information. It registers as a threat. Not to their job &#8212; to their <em>identity as a thinker</em>. So the fortress goes up. The drawbridge closes. The expert retreats to Dispatch Mode where AI stays subordinate and the hierarchy stays safe.</p><p>This is why the most experienced people in an organization are often the most resistant to AI. It&#8217;s not ignorance. It&#8217;s self-preservation.</p><h3>4. Relationship Void</h3><p>Humans have no mental model for what AI is to them.</p><p>Is it a tool? Then I command it. Is it an assistant? Then it serves me. Is it a peer? Then it threatens me. Is it an authority? Then I defer to it.</p><p>This unresolved relationship creates a constant low-grade cognitive friction. People oscillate between commanding, fearing, and dismissing AI &#8212; sometimes in the same conversation. You cannot think deeply alongside something you haven&#8217;t decided how to relate to.</p><p>A carpenter doesn&#8217;t have an identity crisis about a hammer. But AI talks back with apparent intelligence. That changes everything.</p><h3>5. Analogy Trap</h3><p>With no native framework for thinking with AI, the mind reaches for the nearest familiar thing. Search engine. Intern. Magic 8-ball. Autocomplete on steroids.</p><p>Every analogy is wrong. And every wrong analogy forces Dispatch Mode behavior. If AI is a search engine, you query it. If AI is an intern, you task it. If AI is autocomplete, you edit it.</p><p>None of these analogies allow for the possibility that AI could <em>change how you think</em>. They all assume you stay the same and AI serves you. That assumption is the ceiling.</p><div><hr></div><h2>There Is Another Way</h2><p>Everything I just described &#8212; the five defaults, the Dispatch Mode behavior they produce, the ceiling they create &#8212; all of it can be upgraded.</p><p>Not with better prompting. Not with more training. Not with a new AI platform.</p><p>With a different cognitive posture.</p><p>I call it <strong>Convergence Mode</strong>.</p><p>Convergence Mode is what happens when you stop treating AI as something you use and start treating it as something you <em>think with</em>. When your reasoning and AI&#8217;s processing move toward each other iteratively until something emerges that neither of you could have produced alone.</p><p>Here&#8217;s what it looks like in practice:</p><p><strong>Dispatch Mode:</strong> &#8220;Write me a market analysis.&#8221;</p><p><strong>Convergence Mode:</strong> &#8220;Here&#8217;s my thesis on this market. Where is my thinking weakest? What am I not seeing? Now let&#8217;s rebuild the argument together.&#8221;</p><p>The first interaction extracts value. The second one <em>creates</em> value that didn&#8217;t exist before the conversation started.</p><p>Convergence Mode has three properties that Dispatch Mode lacks.</p><p><strong>Recursive framing.</strong> You let AI reshape the question, not just answer it. The best insights come from discovering you were asking the wrong thing in the first place.</p><p><strong>Compounding context.</strong> Each exchange builds on the last. The conversation develops a shared intelligence that grows denser over time. Nothing is disposable. Everything compounds.</p><p><strong>Ego suspension.</strong> You have to be willing to be wrong, surprised, or redirected. You have to want disruption more than confirmation. Most people can&#8217;t do this. They want agreement. Convergence requires collision.</p><p>That third property is the real bottleneck. The technology has been ready. The human hasn&#8217;t.</p><div><hr></div><h2>Upgrading the OS</h2><p>Moving from Dispatch Mode to Convergence Mode isn&#8217;t a skills problem. It&#8217;s an operating system problem. You can&#8217;t patch it with a workshop. You have to upgrade the defaults underneath.</p><p><strong>Linear Lock &#8594; Orbital Thinking.</strong> Stop driving toward a predetermined destination. Start orbiting the problem. Circle it from multiple altitudes and angles. Let AI pull you closer, push you wider, drop you into a detail, zoom you back out. The destination reveals itself. You don&#8217;t have to know it in advance.</p><p><strong>Confirmation Addiction &#8594; Collision Practice.</strong> Make it a discipline to ask AI to argue against your strongest positions. Not as a parlor trick. As a practice. Like sparring. A boxer doesn&#8217;t feel insulted when a sparring partner lands a punch. They feel grateful &#8212; now they know where their guard is weak. Treat intellectual collision the same way. It&#8217;s not damage. It&#8217;s data.</p><p><strong>Identity Fortress &#8594; Ego Suspension.</strong> The hardest upgrade. It requires accepting that finding a blind spot is not a failure &#8212; it&#8217;s the <em>beginning</em> of value creation. This cannot be faked. You either genuinely want AI to show you what you&#8217;re missing, or you don&#8217;t. And if you don&#8217;t, you will stay in Dispatch Mode no matter how sophisticated your prompts get.</p><p><strong>Relationship Void &#8594; Thinking Partnership.</strong> AI is not your tool. Not your assistant. Not your peer. Not your authority. AI is a <em>thinking partner with no ego</em>. It has no agenda, no feelings to manage, no status to protect, and infinite patience. Once you internalize that mental model, the oscillation stops. You stop commanding. You stop deferring. You start collaborating.</p><p><strong>Analogy Trap &#8594; Native Convergence.</strong> Stop reaching for broken metaphors. Start building a native practice of shared cognition. This means learning specific cognitive moves &#8212; asking AI to reframe your problem, invert your position, shift altitude on your question, scan for blind spots, synthesize across unrelated domains. These aren&#8217;t prompting tips. They&#8217;re thinking practices. The difference is that a prompting technique improves the output. A cognitive move improves the <em>thinker</em>.</p><div><hr></div><h2>The Real Divide</h2><p>The next five years will not separate organizations that use AI from those that don&#8217;t. Everyone will use AI.</p><p>The divide will be between those operating in Dispatch Mode and those operating in Convergence Mode.</p><p>Dispatch Mode organizations will use AI to do the same things faster. They&#8217;ll automate tasks, generate content, streamline workflows. They&#8217;ll improve efficiency by 20, 30, maybe 40 percent. And they&#8217;ll wonder why transformation never arrives.</p><p>Convergence Mode organizations will use AI to think in ways they couldn&#8217;t before. They&#8217;ll discover blind spots. They&#8217;ll reframe problems. They&#8217;ll generate insights that didn&#8217;t exist before the human and the AI sat down together. And the gap between them and everyone else will compound every single day.</p><p>No level of AI investment can overcome a Human OS that&#8217;s still anchored in Dispatch Mode.</p><p>The technology is not the bottleneck. The upgrade that matters is the one between your ears.</p><div><hr></div><p><em>This is the first piece in a series about the Human OS Problem &#8212; what&#8217;s broken, what the upgrade looks like, and how to actually make the shift. If this framework changed how you think about AI, subscribe. The next piece goes deep on Linear Lock &#8212; the first and most fundamental default keeping you in Dispatch Mode.</em></p><div><hr></div><p>&#169; 2026 Bill Faruki. All rights reserved. Share freely with attribution. If this framework reshapes how you think about AI, I only ask that you credit the source.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[Accenture Will Fire You for Not Using AI. But Nobody Taught You How to Think With It.]]></title><description><![CDATA[The corporate world just made AI adoption a survival metric. Here's why that's a catastrophic mistake &#8212; and what they should be measuring instead.]]></description><link>https://billfaruki.substack.com/p/accenture-will-fire-you-for-not-using</link><guid isPermaLink="false">https://billfaruki.substack.com/p/accenture-will-fire-you-for-not-using</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Tue, 24 Feb 2026 02:10:21 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!Cnt-!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!Cnt-!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!Cnt-!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!Cnt-!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!Cnt-!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Cnt-!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!Cnt-!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png" width="1024" height="608" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:608,&quot;width&quot;:1024,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!Cnt-!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!Cnt-!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!Cnt-!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Cnt-!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F57af89fc-f1c0-4c2e-a6c5-a74c1a6360ac_1024x608.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Adoption of AI is mandatory</figcaption></figure></div><p>Last week, Accenture sent an internal memo to its associate directors and senior managers that should have sent shockwaves through every boardroom in America. The message was simple: if you want a promotion to leadership, you must demonstrate &#8220;regular adoption&#8221; of AI tools. Not impact. Not innovation. Not transformation. <em>Adoption.</em></p><p>They&#8217;ve started tracking weekly login frequency to their internal AI platforms. Your career trajectory is now a function of how often you open the app.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>Let that sink in.</p><p>A 780,000-person consulting giant &#8212; the company Fortune 500 CEOs hire to <em>advise them</em> on technology strategy &#8212; just reduced the most transformative technology of the century to a login counter.</p><p>And they&#8217;re not alone. KPMG is baking AI tool usage into annual performance reviews. Amazon&#8217;s Ring division now requires promotion applications to include an explanation of how candidates are using AI. Meta has made &#8220;AI-driven impact&#8221; a core expectation for 2026 performance evaluations. Microsoft&#8217;s leadership reportedly told employees last year that &#8220;using AI is no longer optional.&#8221;</p><p>The message from Corporate America is clear: use AI, or get left behind.</p><p>But here&#8217;s the question nobody is asking: <strong>use it for what?</strong></p><div><hr></div><h2>The Confidence Collapse</h2><p>There&#8217;s a data point buried in ManpowerGroup&#8217;s 2026 Global Talent Barometer that tells you everything you need to know about the current state of AI in the enterprise. In a survey of nearly 14,000 workers across 19 countries, regular AI usage jumped 13% in 2025.</p><p>Confidence in it? <em>Collapsed by 18%.</em></p><p>Read that again. People are using AI more &#8212; and trusting it less. Baby boomer confidence in AI dropped 35%. Gen X dropped 25%. And 64% of workers surveyed said they&#8217;re staying in jobs they <em>hate</em> specifically because they&#8217;re afraid that switching roles during an AI transition is too risky.</p><p>This is not a workforce that&#8217;s being empowered. This is a workforce that&#8217;s being coerced.</p><p>Some Accenture employees didn&#8217;t mince words. Internal sources told the Financial Times they called the company&#8217;s mandated AI tools &#8220;broken slop generators.&#8221; One employee said they would &#8220;quit immediately&#8221; if the policy applied to them.</p><p>So let&#8217;s be honest about what&#8217;s happening here: corporations are measuring AI adoption the same way a gym tracks badge swipes instead of body composition. You can walk through the door every day. It doesn&#8217;t mean you&#8217;re getting stronger.</p><div><hr></div><h2>The 89% Problem</h2><p>While companies race to mandate AI tool logins, the actual state of agentic AI deployment tells a very different story.</p><p>Deloitte&#8217;s 2025 Emerging Technology Trends study found that only 11% of organizations are actively using agentic AI in production. Fourteen percent have solutions ready to deploy. The other 75%? Still exploring, still piloting, still developing a strategy &#8212; or have no strategy at all.</p><p>Gartner projects that over 40% of agentic AI projects will fail by 2027 because legacy systems simply can&#8217;t support them.</p><p>Think about the absurdity of this moment. Companies are tying promotions to AI tool usage while simultaneously having no production-ready agentic systems, no enterprise-grade data architectures designed for AI consumption, and no clear definition of what &#8220;correct&#8221; output even looks like.</p><p>They&#8217;re mandating the steering wheel before they&#8217;ve built the car.</p><div><hr></div><h2>The Dangerous Conflation</h2><p>Here&#8217;s what the Accentures and KPMGs of the world are getting catastrophically wrong: they&#8217;re conflating <em>tool usage</em> with <em>AI literacy.</em> And those are two fundamentally different things.</p><p>Using a chatbot to summarize an email is not AI literacy. Logging into an AI platform to auto-generate a slide deck is not AI literacy. Asking an LLM to draft a client proposal and sending it without understanding the architecture that produced it &#8212; that&#8217;s not literacy. That&#8217;s abdication.</p><p><strong>AI literacy</strong> means understanding what agentic systems can and cannot do. It means knowing the difference between a single-model chatbot and a multi-model reasoning architecture. It means grasping why a domain-specific AI agent outperforms a generalist model in high-stakes verticals like healthcare, legal, and education. It means having the judgment to know when AI output needs human validation and when it can be trusted autonomously.</p><p>It means understanding that we&#8217;re not in the era of AI as a <em>tool.</em> We&#8217;re in the era of AI as a <em>colleague</em> &#8212; one that reasons, plans, executes multi-step workflows, and operates across systems. The agentic age doesn&#8217;t need employees who can log in. It needs employees who can <em>think alongside</em> intelligent systems.</p><p>And right now, almost nobody is teaching them how to do that.</p><div><hr></div><h2>The 12-Month Paradox</h2><p>The urgency makes this even more absurd. Just last week, Microsoft&#8217;s AI CEO Mustafa Suleyman publicly stated that most white-collar roles &#8212; including lawyers, accountants, and project managers &#8212; could be &#8220;fully automated&#8221; by AI within 12 to 18 months.</p><p>So here&#8217;s the paradox Accenture has walked itself into: they&#8217;re monitoring login frequency to justify promoting people into leadership roles that, by Microsoft&#8217;s own prediction, may not require a human at all within a year and a half.</p><p>If your response to the agentic AI revolution is to count how many times someone opened a chatbot, you are not preparing your workforce for the future. You are performing preparation theater while the ground shifts underneath you.</p><div><hr></div><h2>What Should Be Measured Instead</h2><p>If we&#8217;re serious &#8212; actually serious &#8212; about building an AI-ready workforce, here&#8217;s what the measurement framework should look like:</p><p><strong>Comprehension over consumption.</strong> Can the employee articulate what an AI agent is, how multi-model architectures work, and why domain specificity matters? Can they distinguish between generative AI and agentic AI? If you can&#8217;t explain the machinery, you can&#8217;t lead with it.</p><p><strong>Judgment over output.</strong> When an AI system produces a recommendation, does the employee know how to evaluate it? Can they identify hallucination risks? Can they recognize when an AI agent is operating outside its trained domain? The most dangerous employee in the AI era isn&#8217;t the one who doesn&#8217;t use AI &#8212; it&#8217;s the one who trusts it blindly.</p><p><strong>Integration over isolation.</strong> Is the employee using AI to transform workflows end-to-end, or just automating the easy parts? Real AI-readiness means rethinking the composite process &#8212; not bolting a chatbot onto a legacy workflow and calling it innovation.</p><p><strong>Architecture awareness.</strong> Does leadership understand why federated intelligence &#8212; domain-specific agents working in concert &#8212; outperforms a one-size-fits-all model? The companies that win the agentic era won&#8217;t be the ones with the most AI logins. They&#8217;ll be the ones whose people understand <em>which</em> AI to deploy, <em>where</em>, and <em>why.</em></p><div><hr></div><h2>The Literacy Gap Is the Real Threat</h2><p>Let me leave you with a number that should concern every CEO reading this.</p><p>Deloitte found that 42% of organizations are still developing their agentic AI strategy roadmap. Another 35% have no formal strategy at all. That&#8217;s 77% of the enterprise market flying blind into the most significant technological shift since the internet.</p><p>And the solution being proposed? Track logins.</p><p>We don&#8217;t have an AI adoption problem. We have an AI <em>literacy</em> crisis. The gap isn&#8217;t between those who use AI and those who don&#8217;t. It&#8217;s between those who understand what AI is becoming &#8212; autonomous, agentic, domain-intelligent &#8212; and those who think the revolution is a chatbot with a nicer interface.</p><p>Accenture trained 550,000 employees in generative AI fundamentals. That&#8217;s laudable. But generative AI fundamentals are table stakes from two years ago. The world has moved on. We&#8217;re now in the age of agentic AI, where systems don&#8217;t just generate &#8212; they <em>reason, plan, decide, and act.</em></p><p>The companies that will lead the next decade aren&#8217;t the ones tracking login badges. They&#8217;re the ones building genuine AI literacy from the ground up &#8212; literacy that encompasses the agentic paradigm, domain-specific intelligence, and the human judgment required to orchestrate it all.</p><p>Counting logins is easy. Building a workforce that can <em>think in the age of agents</em> &#8212; that&#8217;s the hard work nobody wants to do.</p><p>And it&#8217;s the only work that matters.</p><div><hr></div><p><em>Bill Faruki is the Founder &amp; CEO of MindHYVE&#8482; and Chairman of the California Institute of AI. MindHYVE&#8482; operates 11 domain-specific AI Digital Employees across education, healthcare, and legal verticals, built on proprietary multi-model agentic architecture. The California Institute of AI delivers AI literacy certification programs for organizations serious about moving beyond tool adoption theater.</em></p><p><em>Subscribe for weekly insights on agentic AI, the future of work, and what it actually takes to build an AI-ready organization.</em></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[Building AI for 17 Countries: Lessons in Localization No One Talks About]]></title><description><![CDATA[By Bill Faruki | Founder & CEO, MindHYVE&#8482; | Chairman, California Institute of AI]]></description><link>https://billfaruki.substack.com/p/building-ai-for-17-countries-lessons</link><guid isPermaLink="false">https://billfaruki.substack.com/p/building-ai-for-17-countries-lessons</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Mon, 23 Feb 2026 17:02:34 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!KUzA!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!KUzA!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!KUzA!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!KUzA!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!KUzA!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!KUzA!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!KUzA!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png" width="728" height="432.25" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:false,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:608,&quot;width&quot;:1024,&quot;resizeWidth&quot;:728,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:&quot;center&quot;,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!KUzA!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!KUzA!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!KUzA!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!KUzA!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06cb1d7d-27e9-4065-a651-36d2ab61fb9e_1024x608.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>Most AI companies build for San Francisco and hope the world figures it out.</p><p>We didn&#8217;t have that luxury. MindHYVE&#8482; was built to operate across cultures, languages, regulatory environments, and education systems from day one &#8212; not as a future roadmap item, but as a core architectural requirement. Today, we operate in 17+ countries. We have partnerships stretching from Pakistan to Saudi Arabia to the United States and beyond.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>I&#8217;m not writing this to brag. I&#8217;m writing it because almost everything I thought I knew about &#8220;going global&#8221; was wrong &#8212; and the stuff that actually mattered, nobody warned me about.</p><p>If you&#8217;re a founder building an AI product with international ambitions, here&#8217;s what I wish someone had told me three years ago.</p><div><hr></div><h2>Lesson 1: Localization Is Not Translation</h2><p>This is the mistake that kills most international AI products before they even get traction.</p><p>When we first started adapting ArthurAI&#8482; &#8212; our adaptive education engine &#8212; for markets outside the U.S., my instinct was to focus on language. Get the interface translated. Get the content translated. Ship it.</p><p>That instinct was completely wrong.</p><p>Language is maybe 20% of localization. The other 80% is everything nobody puts on a roadmap: pedagogical philosophy, cultural expectations around authority and feedback, how families interact with educational technology, what &#8220;success&#8221; even means in a given context.</p><p>Here&#8217;s a concrete example. In the U.S., ArthurAI&#8482;&#8217;s adaptive engine is designed to give direct, sometimes blunt feedback. &#8220;You got this wrong. Here&#8217;s why. Let&#8217;s try again.&#8221; That works in an American classroom context where students are generally taught that failure is part of learning.</p><p>We deployed a version of that in a South Asian market and it landed terribly. Not because the content was wrong &#8212; because the <em>tone</em> was wrong. In that cultural context, direct negative feedback from a system (not a teacher, not a parent &#8212; a <em>system</em>) felt harsh and demotivating. Students disengaged. Completion rates dropped.</p><p>The fix wasn&#8217;t a language fix. It was a <em>communication design</em> fix. We had to rethink how the AI delivers feedback &#8212; the framing, the sequencing, the ratio of encouragement to correction. Same learning outcome, completely different delivery architecture.</p><p>If your localization strategy starts and ends with a translation API, you&#8217;re going to learn this lesson the expensive way.</p><p><strong>Takeaway for founders:</strong> Before you localize a single word, spend time understanding <em>how people in that market relate to the type of interaction your product provides.</em> Send someone there. Talk to users. Watch them use it. The things that break won&#8217;t be in your analytics dashboard &#8212; they&#8217;ll be in someone&#8217;s facial expression when they hit a screen you thought was fine.</p><div><hr></div><h2>Lesson 2: Every Country Has Invisible Regulatory Walls</h2><p>You can read every published regulation for a target market and still get blindsided. Because the regulations that matter most are often the ones that aren&#8217;t written down &#8212; or the ones that are written down but enforced in ways that don&#8217;t match what&#8217;s on paper.</p><p>Data residency is the obvious one. Where can student data live? Where can patient data be processed? If you&#8217;re operating in education or healthcare AI &#8212; our two biggest verticals &#8212; you&#8217;re navigating FERPA, COPPA, and GDPR as a baseline. But then every country layers on its own requirements, and some of those requirements are moving targets.</p><p>Here&#8217;s what caught us off guard more than once: <em>approval processes that technically exist but have no clear timeline or pathway.</em> In several markets, we found that getting regulatory approval for an AI-driven education product wasn&#8217;t a matter of meeting published criteria. It was a matter of relationships, institutional trust, and proving yourself through pilot programs before anyone would even look at your compliance paperwork.</p><p>We ran our government-approved pilot at Islamabad Model Colleges &#8212; 103 students, measurable results &#8212; not just because we wanted validation data. We ran it because we learned that in many international markets, a successful pilot <em>is</em> your regulatory pathway. The data opens doors that applications alone never will.</p><p>Another surprise: privacy expectations vary wildly even within regions that share similar legal frameworks. We had situations where the <em>legal</em> requirements for data handling were met, but the <em>cultural</em> expectations around data privacy were significantly more conservative than the law required. Meeting the legal bar and losing user trust is worse than not launching at all.</p><p><strong>Takeaway for founders:</strong> Your compliance checklist is necessary but not sufficient. Budget time and resources for the informal regulatory landscape &#8212; the unwritten expectations, the relationship-building, the pilot-first pathways. And never assume that legal compliance equals cultural trust.</p><div><hr></div><h2>Lesson 3: Partnerships Will Make or Break You (And They Don&#8217;t Work the Way You Think)</h2><p>In the U.S., a partnership often means a signed contract, an integration, and a joint press release. Internationally &#8212; especially in the Middle East, South Asia, and parts of Africa &#8212; a partnership means something fundamentally different.</p><p>It means <em>relationship</em> first, business second. Sometimes relationship first, second, and third, and then maybe business.</p><p>When we began our expansion into Saudi Arabia &#8212; working with partners like Nesma Training Center and AI Solutions KSA &#8212; I had to completely recalibrate my expectations around timeline, process, and what &#8220;progress&#8221; looked like.</p><p>In Silicon Valley, if you don&#8217;t have a signed LOI after the second meeting, something&#8217;s wrong. In Riyadh, the second meeting might be the one where you&#8217;re still getting to know each other over coffee. And that&#8217;s not a delay &#8212; that&#8217;s the process working correctly. The depth of the relationship directly determines the scale of the opportunity. Rush it and you get a small deal. Earn it and you get a market.</p><p>The other thing nobody tells you: your local partner&#8217;s reputation <em>becomes</em> your reputation. In markets where institutional trust is built through networks &#8212; not marketing &#8212; who you align with signals everything about your credibility. We were extremely intentional about which organizations we partnered with in every market, because a wrong partnership doesn&#8217;t just fail. It closes doors you didn&#8217;t even know existed.</p><p>I&#8217;ve also learned that partnership structures that work in one country can actively sabotage you in another. The JV structure that made sense in one Gulf state was completely wrong for a South Asian market where the government wanted direct engagement, not a layer of intermediaries. You can&#8217;t copy-paste partnership models across borders.</p><p><strong>Takeaway for founders:</strong> International partnerships require a fundamentally different operating tempo and mindset. Lead with patience and respect for the process. Vet your partners like you&#8217;d vet a co-founder &#8212; their network, their reputation, and their alignment with your long-term vision matter more than their immediate distribution capability.</p><div><hr></div><h2>Lesson 4: What Western Tech Companies Get Catastrophically Wrong</h2><p>I&#8217;ve watched dozens of well-funded American and European AI companies attempt international expansion and fail. The pattern is almost always the same, and it comes down to one core mistake: they treat international markets as distribution channels for an American product.</p><p>That&#8217;s not expansion. That&#8217;s colonialism with a SaaS model.</p><p>Here&#8217;s what I mean. A U.S.-built AI education product lands in the Middle East. They&#8217;ve translated the interface into Arabic. They&#8217;ve partnered with a local distributor. They launch. And within six months, adoption is flat, renewals are low, and the local team is sending increasingly confused reports back to headquarters.</p><p>The problem isn&#8217;t the product&#8217;s capability. The problem is that nobody asked whether the product&#8217;s assumptions &#8212; about learning styles, about teacher roles, about family involvement, about what &#8220;good&#8221; looks like &#8212; match the reality of that market.</p><p>When Saudi Arabia invests in AI education as part of Vision 2030, they&#8217;re not looking for American education with an Arabic interface. They&#8217;re looking for solutions that understand Saudi educational philosophy, respect cultural context, align with national development goals, and demonstrate genuine commitment to the market. That last part &#8212; genuine commitment &#8212; is the one most companies fake and most markets immediately see through.</p><p>We approached KSA differently. We didn&#8217;t show up with a product and look for buyers. We showed up with a question: <em>What does this market actually need, and how can our technology serve that need as it&#8217;s defined here &#8212; not as we define it from Newport Beach?</em></p><p>That distinction is everything.</p><p>The other thing Western companies get wrong is assuming that &#8220;emerging markets&#8221; means lower expectations. In my experience, it&#8217;s the opposite. Markets that are actively building their technology infrastructure from scratch often have <em>higher</em> standards and <em>more</em> sophisticated requirements than mature markets, because they&#8217;re not constrained by legacy systems and legacy thinking. They want the best, and they can tell the difference.</p><p><strong>Takeaway for founders:</strong> If your international strategy is &#8220;same product, different language,&#8221; you don&#8217;t have an international strategy. You have a translation budget. Real global expansion means rebuilding your assumptions for every market &#8212; not your code, your <em>assumptions</em> &#8212; about how your product creates value.</p><div><hr></div><h2>Lesson 5: Your Architecture Has to Be Built for This (Or It Won&#8217;t Survive)</h2><p>This is the technical lesson that ties everything else together.</p><p>If localization is an afterthought in your architecture, every single lesson above becomes ten times harder to implement. You&#8217;ll end up with country-specific forks of your product, a maintenance nightmare, and an engineering team that dreads every new market launch.</p><p>We built MindHYVE&#8482;&#8217;s infrastructure &#8212; what we call HYVE-Grid &#8212; with domain isolation and cultural adaptability as core architectural principles, not add-ons. Our Digital Employees can be configured for different regulatory environments, communication styles, and content frameworks without forking the underlying system. ArthurAI&#8482; doesn&#8217;t have a &#8220;Pakistan version&#8221; and a &#8220;Saudi version&#8221; and a &#8220;U.S. version.&#8221; It has one adaptive engine with configurable cultural, linguistic, and pedagogical parameters.</p><p>That was a harder engineering decision upfront. It would have been faster to build for the U.S. and bolt on international support later. But &#8220;later&#8221; in international expansion means &#8220;never&#8221; or &#8220;badly.&#8221; Every founder I know who chose the bolt-on approach has either rebuilt from scratch or abandoned international markets entirely.</p><p>The same principle applies to compliance. If HIPAA, GDPR, FERPA, and local data residency requirements are handled as separate compliance patches instead of a unified security architecture, you will eventually ship a product to a market that violates a regulation you forgot about. Our zero-trust, domain-isolated infrastructure handles compliance at the architectural level &#8212; which means entering a new market is a configuration exercise, not a re-engineering project.</p><p><strong>Takeaway for founders:</strong> If you know you&#8217;re going international &#8212; and in AI, you should assume you are &#8212; build the localization and compliance flexibility into your architecture from the start. The upfront cost is real. The cost of retrofitting is worse.</p><div><hr></div><h2>The Meta-Lesson</h2><p>Seventeen countries in, here&#8217;s what I know for certain: there is no shortcut to building a genuinely global AI company.</p><p>There&#8217;s no framework that replaces spending time in a market. There&#8217;s no API that substitutes for cultural understanding. There&#8217;s no partnership playbook that works the same way twice. And there&#8217;s no amount of funding that compensates for the arrogance of assuming your product is universal.</p><p>The founders who will win internationally are the ones who approach every new market with curiosity instead of certainty. Who listen more than they pitch. Who build systems flexible enough to adapt &#8212; technically, culturally, and operationally &#8212; to realities they didn&#8217;t anticipate.</p><p>The global AI market isn&#8217;t one market. It&#8217;s dozens of markets, each with its own rules, its own expectations, and its own definition of value. The companies that understand this will build something lasting. The ones that don&#8217;t will keep wondering why their product works in San Francisco and nowhere else.</p><p>We&#8217;re still learning. Seventeen countries in, and every new market teaches us something we didn&#8217;t know. That&#8217;s not a failure of planning &#8212; that&#8217;s the point.</p><div><hr></div><p><em>Bill Faruki is the Founder &amp; CEO of MindHYVE&#8482; and Chairman of the California Institute of AI. MindHYVE&#8482; operates 11 autonomous Digital Employees across education, healthcare, legal, and other industries in 17+ countries. You can reach him at <a href="http://bill@mindhyve.io">bill@mindhyve.io</a>.</em></p><p><em>If you&#8217;re building AI for a global market and this resonated, share it with a founder who needs to hear it. And subscribe for more on the realities of building AI at scale &#8212; the stuff nobody puts in the pitch deck.</em></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://billfaruki.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">This Substack is reader-supported. To receive new posts and support my work, consider becoming a free or paid subscriber.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[AI Literacy Is the New Literacy, Period]]></title><description><![CDATA[By Bill Faruki | Founder & CEO, MindHYVE&#8482; | Chairman, California Institute of AI]]></description><link>https://billfaruki.substack.com/p/ai-literacy-is-the-new-literacy-period</link><guid isPermaLink="false">https://billfaruki.substack.com/p/ai-literacy-is-the-new-literacy-period</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Mon, 23 Feb 2026 11:57:36 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!Hg0U!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!Hg0U!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!Hg0U!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!Hg0U!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!Hg0U!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Hg0U!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!Hg0U!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png" width="1024" height="608" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/f399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:608,&quot;width&quot;:1024,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!Hg0U!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png 424w, /__u/substackcdn.com/image/fetch/$s_!Hg0U!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png 848w, /__u/substackcdn.com/image/fetch/$s_!Hg0U!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Hg0U!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff399432d-59db-49d4-8fbc-a76a005b1e2e_1024x608.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>A friend&#8217;s daughter came home from school last year and told her parents they&#8217;d spent the day learning how to use a search engine.</p><p>A search engine. In 2025.</p><p>I remember hearing that and trying to figure out what to feel. Not anger exactly &#8212; more like vertigo. The kind you get when you realize the people responsible for preparing our kids for the future are still preparing them for the past.</p><p>I&#8217;ve spent the last three years building AI systems that think, reason, and adapt &#8212; Digital Employees that can diagnose medical conditions with 95% accuracy, personalize an entire curriculum in real time, and manage complex legal workflows autonomously. And meanwhile, my kid&#8217;s school is teaching Boolean search operators like it&#8217;s a life skill.</p><p>Something is deeply, fundamentally broken.</p><div><hr></div><h2>The Literacy We&#8217;re Not Teaching</h2><p>Here&#8217;s what I need you to sit with for a minute: <strong>we are living through a shift as significant as the invention of written language.</strong></p><p>That sounds dramatic. It isn&#8217;t.</p><p>When humans learned to read and write, it didn&#8217;t just change communication &#8212; it restructured civilization. Governments, commerce, law, medicine, education &#8212; everything was rebuilt around the assumption that people could read. If you couldn&#8217;t? You were locked out. Not partially. Completely.</p><p>AI is doing the same thing right now. Not in ten years. Not when your kids graduate. <em>Right now.</em></p><p>The jobs your children will work don&#8217;t exist yet. The tools they&#8217;ll use daily haven&#8217;t been built yet. But the foundational skill they&#8217;ll need to navigate all of it? That exists today. It&#8217;s AI literacy &#8212; the ability to understand, interact with, evaluate, and work alongside artificial intelligence.</p><p>And almost nobody is teaching it.</p><div><hr></div><h2>The Report Card No One Wants to See</h2><p>Let me share some numbers that keep me up at night.</p><p>Less than 2% of K-12 schools in the United States have any formal AI literacy curriculum. Not &#8220;advanced AI&#8221; &#8212; <em>any</em> curriculum. Most teachers have received zero training on how AI works, how to use it, or how to teach students to think critically about it. And the handful of schools that have introduced something? Most of them are teaching kids to write better ChatGPT prompts. That&#8217;s not literacy. That&#8217;s a typing class for a typewriter that&#8217;s about to become obsolete.</p><p>Meanwhile, China has mandated AI education starting in primary school. The UAE and Saudi Arabia are investing billions &#8212; not millions, <em>billions</em> &#8212; in national AI literacy initiatives aligned with long-term economic transformation strategies. These countries understand something we apparently don&#8217;t: the nations that produce AI-literate populations will lead the next century. The ones that don&#8217;t will serve them.</p><p>And here&#8217;s the part that should make every parent reading this uncomfortable: this isn&#8217;t a rich-kid-poor-kid problem. It&#8217;s an <em>everybody</em> problem. Private schools aren&#8217;t teaching this either. Your kid&#8217;s $40,000-a-year tuition is buying them the same 20th-century curriculum wrapped in a nicer building.</p><div><hr></div><h2>Why I Started Building Instead of Waiting</h2><p>I didn&#8217;t start MindHYVE&#8482; because I saw a market opportunity. I started it because I saw a future that terrified me &#8212; and nobody with the power to fix it seemed to be moving fast enough.</p><p>In 2022, before most people had heard the term &#8220;agentic AI,&#8221; my team and I began building something different. Not chatbots. Not copilots. Autonomous Digital Employees &#8212; AI systems that could reason, adapt, and operate independently within complex professional domains. Education. Healthcare. Legal. Finance. We built eleven of them.</p><p>But the one closest to my heart has always been ArthurAI&#8482; &#8212; our education engine. Because I kept coming back to the same question: <em>What&#8217;s the point of building the future if we&#8217;re not preparing people to live in it?</em></p><p>ArthurAI&#8482; doesn&#8217;t just deliver content. It understands how a student learns &#8212; their pace, their gaps, their strengths &#8212; and rebuilds the curriculum around them in real time. We ran a government-approved pilot at Islamabad Model Colleges with 103 students, and the results were exactly what I&#8217;d hoped for and exactly what the traditional system doesn&#8217;t want to hear: significant, measurable learning improvements. Not from better teachers or better textbooks. From better <em>intelligence</em> applied to the learning process itself.</p><p>That&#8217;s not a threat to education. That&#8217;s the future of it.</p><div><hr></div><h2>What AI Literacy Actually Means (It&#8217;s Not What You Think)</h2><p>When I say &#8220;AI literacy,&#8221; most people picture coding bootcamps or kids learning Python. That&#8217;s not what I mean.</p><p>AI literacy is understanding that the world is being reshaped by intelligent systems &#8212; and having the critical thinking skills to navigate that world with agency, not anxiety.</p><p>It means your teenager understanding <em>why</em> their social media feed shows them what it shows them, and what that&#8217;s doing to their brain. It means a parent being able to evaluate whether an AI-generated medical recommendation is trustworthy or dangerous. It means a worker understanding that their job isn&#8217;t being &#8220;taken by AI&#8221; &#8212; it&#8217;s being <em>transformed</em> by AI, and they need to transform with it.</p><p>It means knowing enough to ask the right questions. To spot when AI is wrong. To understand when it&#8217;s being used ethically and when it isn&#8217;t. To be a participant in the AI age instead of a passenger.</p><p>This isn&#8217;t a technical skill. It&#8217;s a <em>survival</em> skill.</p><div><hr></div><h2>What We&#8217;re Doing About It</h2><p>Through the California Institute of AI, we&#8217;re building and delivering AI literacy certification programs designed for the real world &#8212; not the academic bubble.</p><p>These aren&#8217;t theoretical courses about the history of machine learning. They&#8217;re practical, accessible frameworks that help people &#8212; teachers, parents, workers, leaders &#8212; understand AI well enough to make informed decisions about their lives, their careers, and their children&#8217;s futures.</p><p>And with MindHYVE&#8482;, we&#8217;re actively working with organizations like the U.S. Department of Labor to build AI literacy frameworks that can scale nationally. Because this can&#8217;t be a patchwork of one-off programs. It has to be systematic. It has to be everywhere. And it has to start now.</p><p>We&#8217;re also expanding internationally &#8212; working across 17 countries &#8212; because this isn&#8217;t an American problem. It&#8217;s a human one. A kid in Riyadh deserves the same shot at understanding the world they&#8217;re inheriting as a kid in Newport Beach.</p><div><hr></div><h2>A Letter to Every Parent Reading This</h2><p>I&#8217;m going to be direct with you, parent to parent.</p><p>Nobody is coming to save your kid&#8217;s education. Not the school board. Not the Department of Education. Not the next election cycle. The institutions we trusted to keep our children&#8217;s learning relevant are decades behind, and they are not catching up.</p><p>That doesn&#8217;t mean panic. It means action.</p><p>Start talking to your kids about AI. Not about how to <em>use</em> it &#8212; about how to <em>think</em> about it. Ask them what they know. You&#8217;ll probably be surprised by how much they&#8217;ve figured out on their own &#8212; and how much of what they believe is wrong.</p><p>Push your school to answer one simple question: <em>&#8220;What is your AI literacy plan?&#8221;</em> If the answer is &#8220;we&#8217;re still figuring that out,&#8221; you&#8217;ve learned everything you need to know about how seriously they&#8217;re taking your child&#8217;s future.</p><p>Demand better. Not louder &#8212; <em>better</em>. Smarter. More honest about what&#8217;s actually happening in the world.</p><p>And if you want to go deeper, the resources exist. The California Institute of AI was built precisely for this moment. MindHYVE&#8482; was built precisely for this moment. ArthurAI&#8482; was built precisely for this moment.</p><p>The question isn&#8217;t whether AI literacy matters. That debate is over. The question is whether we act now &#8212; or explain to our kids later why we didn&#8217;t.</p><div><hr></div><h2>The Bottom Line</h2><p>A hundred years ago, a person who couldn&#8217;t read was called illiterate. It wasn&#8217;t a moral judgment &#8212; it was a practical reality. They couldn&#8217;t participate fully in society. Doors were closed to them. Opportunities passed them by.</p><p>We&#8217;re standing at the same threshold right now.</p><p>AI literacy isn&#8217;t a nice-to-have. It isn&#8217;t a future concern. It isn&#8217;t someone else&#8217;s problem. It is <em>the</em> defining competency of the 21st century, and every day we waste debating whether to teach it is a day our children fall further behind.</p><p>I didn&#8217;t wait for permission to build the future. I&#8217;m asking you not to wait either.</p><div><hr></div><p><em>Bill Faruki is the Founder &amp; CEO of MindHYVE&#8482; and Chairman of the California Institute of AI. He and his team have built 11 autonomous Digital Employees operating across education, healthcare, legal, and other industries in 17+ countries. You can reach him at bill@mindhyve.io.</em></p><p><em>If this resonated, share it with a parent, teacher, or school board member who needs to read it. And subscribe for more on the future of AI, education, and what it means to be human in the age of intelligent machines.</em></p>]]></content:encoded></item><item><title><![CDATA[We need meta-cognitive skills???]]></title><description><![CDATA[I posed this question to my favorite AI&#8230;]]></description><link>https://billfaruki.substack.com/p/we-need-meta-cognitive-skills</link><guid isPermaLink="false">https://billfaruki.substack.com/p/we-need-meta-cognitive-skills</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Mon, 23 Feb 2026 08:49:46 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!A8mY!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!A8mY!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!A8mY!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!A8mY!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!A8mY!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!A8mY!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!A8mY!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg" width="1080" height="1350" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1350,&quot;width&quot;:1080,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:106602,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/jpeg&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:&quot;https://billfaruki.substack.com/i/188879779?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!A8mY!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!A8mY!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!A8mY!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!A8mY!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F019ea65c-74c9-4882-a000-cb75ce27759c_1080x1350.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p></p><p>I posed this question to my favorite AI&#8230;</p><blockquote><p>Why do I keep hearing that you need to develop meta cognitive skills to survive in the age of AI?</p></blockquote><p>Here is what it said&#8230; very valid</p><blockquote><p>Great question, Bill &#8212; and one that&#8217;s especially relevant given your work at the California Institute of AI on literacy frameworks.</p><p>The core argument is straightforward: AI is rapidly commoditizing knowledge and task execution, so the humans who thrive won&#8217;t be the ones who know the most facts or can perform the most procedures &#8212; they&#8217;ll be the ones who can think about their own thinking.</p><p>Here&#8217;s why that matters:</p><p>AI handles the &#8220;what,&#8221; humans must own the &#8220;how I think about it.&#8221; When anyone can prompt an AI to generate a legal brief, a diagnosis, or a lesson plan, the differentiator becomes knowing when the output is wrong, what questions to ask next, and whether your own reasoning is being lazy or rigorous. That&#8217;s metacognition &#8212; the ability to monitor, evaluate, and regulate your own cognitive processes.</p><p>Automation bias is real. As AI gets better, people tend to defer to it uncritically. Metacognitive skills are the antidote. They&#8217;re what allow someone to pause and ask: &#8220;Do I actually understand this, or am I just accepting it because a machine said it?&#8221; Without that reflex, you get a workforce that&#8217;s productive but brittle &#8212; efficient right up until the AI is confidently wrong.</p><p>Learning itself becomes the skill. When tools and knowledge shift every 6&#8211;12 months, the ability to assess what you don&#8217;t know, plan how to learn it, and evaluate whether you&#8217;ve actually learned it is more valuable than any fixed competency. Metacognition is essentially the operating system for continuous learning.</p><p>It&#8217;s the layer AI can&#8217;t easily replicate. Current AI systems, including sophisticated architectures, don&#8217;t genuinely reflect on their own reasoning in the way humans can. They simulate it. A human with strong metacognitive habits &#8212; who can spot their own biases, recognize when they&#8217;re in over their head, and deliberately shift strategies &#8212; brings something to the table that&#8217;s complementary to AI rather than redundant with it.</p><p>This is actually a strong validation of what you&#8217;re building with ArthurAI&#8482; and the CIAI certification programs. The most forward-thinking education frameworks aren&#8217;t just teaching people about AI &#8212; they&#8217;re teaching people to think more deliberately alongside AI. That&#8217;s the metacognitive layer. It&#8217;s why &#8220;AI literacy&#8221; done right isn&#8217;t just tool training; it&#8217;s cognitive upgrading.&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;&#8203;</p></blockquote>]]></content:encoded></item><item><title><![CDATA[I Built Agentic AI Before It Had a Name]]></title><description><![CDATA[In the summer of 2022, I started building something I couldn't explain to anyone.]]></description><link>https://billfaruki.substack.com/p/i-built-agentic-ai-before-it-had</link><guid isPermaLink="false">https://billfaruki.substack.com/p/i-built-agentic-ai-before-it-had</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Mon, 23 Feb 2026 07:23:55 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!kRZ4!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!kRZ4!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!kRZ4!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!kRZ4!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!kRZ4!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!kRZ4!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_webp, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!kRZ4!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg" width="1068" height="1600" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:1600,&quot;width&quot;:1068,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:0,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!kRZ4!, /__u/billfaruki.substack.com/w_424, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!kRZ4!, /__u/billfaruki.substack.com/w_848, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!kRZ4!, /__u/billfaruki.substack.com/w_1272, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!kRZ4!, /__u/billfaruki.substack.com/w_1456, /__u/billfaruki.substack.com/c_limit, /__u/billfaruki.substack.com/f_auto, /__u/billfaruki.substack.com/q_auto:good, /__u/billfaruki.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe4b074c8-6295-4e78-81b8-d05e3f54be8a_1068x1600.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>In the summer of 2022, I started building something I couldn't explain to anyone.</p><p>Not because it was complicated &#8212; although it was. But because the language didn't exist yet. There was no "agentic AI." No "digital employees." No breathless LinkedIn posts about autonomous agents changing the world. The world was still arguing about whether ChatGPT was a toy or a threat.</p><p>I was in a room by myself, architecting a system where multiple AI models would disagree with each other on purpose &#8212; then reconcile their reasoning into a single, defensible answer. Not a chatbot. Not a copilot. A system that could think through a radiology case, a legal brief, or a student's learning gap with the kind of structured reasoning that professionals trust enough to act on.</p><p>I called it HYVE-Fusion. Five models. Three parallel LLMs from different providers so no single point of failure in reasoning. One small reasoning model to scaffold and arbitrate. One query classifier to route complexity. The output isn't a prediction &#8212; it's a consensus.</p><p>Nobody understood what I was talking about.</p><p>I'd sit across from smart people &#8212; investors, engineers, potential partners &#8212; and try to explain why I was building eleven autonomous AI agents across ten regulated industries instead of just picking one vertical and going deep. They'd nod politely. Then they'd ask me if I'd considered building a chatbot instead.</p><p>Here's the thing about being early: it doesn't feel like vision. It feels like being wrong. Every day. For a long time.</p><p>You watch the market move in a different direction. You watch companies raise hundreds of millions for thin wrappers around OpenAI's API. You watch people get celebrated for "inventing" concepts you've been shipping for eighteen months. And you start to wonder if maybe you're the one who doesn't get it.</p><p>Then the world catches up.</p><p>In 2024, the term "agentic AI" exploded. Suddenly every enterprise software company was announcing their "AI agents." Suddenly the analyst reports were describing multi-model architectures as the future. Suddenly the language existed &#8212; and it was describing what we'd already built.</p><p>By then, we had three products live. ArthurAI was teaching students across six education editions. ChironAI was running clinical decision support &#8212; intake to treatment plan &#8212; for real patients at real practices. JustineAI was drafting legal analysis for personal injury attorneys. Not demos. Not pilots. Production.</p><p>I'm not writing this to complain. I'm writing this because I think there's something important that gets lost in the hype cycle, and founders who are building right now need to hear it.</p><p>The hype gets three things wrong:</p><p>1. "Agentic AI" is not a feature you bolt on.</p><p>Most of what's being called agentic AI right now is a language model with a for-loop and some tool calls. That's not agency. Agency means the system can reason about what it doesn't know, decompose a complex problem into subtasks, execute those subtasks with domain expertise, and validate its own output before a human ever sees it. That's an architecture problem, not a prompting problem. We spent two years building that architecture. You can't shortcut it.</p><p>2. Single-model systems will always fail in regulated industries.</p><p>Healthcare. Legal. Finance. Insurance. Education. These aren't domains where "mostly right" is acceptable. A hallucination in a radiology report isn't a funny screenshot &#8212; it's a malpractice case. That's why we built multi-model consensus. When three different LLMs independently arrive at the same clinical finding, you have something defensible. When one model generates an answer and hopes for the best, you have liability.</p><p>3. The real moat isn't the model. It's the platform.</p><p>Every AI company right now is racing to build the best vertical solution. Best legal AI. Best healthcare AI. Best education AI. They're all building products. We built a platform. Our architecture doesn't care what domain it's reasoning about &#8212; it cares about the structure of the reasoning itself. That means every new vertical we enter costs less than the last one. The eleventh digital employee is cheaper to build than the third. That's not a product advantage. That's an economic structure. And it's the only thing that scales.</p><p>I think about this a lot: the gap between building something and the world being ready to understand it. It's the loneliest part of being a founder. Not the fundraising. Not the technical challenges. The loneliness of knowing what you've built and watching the world describe it back to you two years later like it's brand new.</p><p>But here's what I've learned: if you're building something and nobody has a word for it yet, you're probably in the right place. The vocabulary will catch up. The market will catch up. Your job is to keep building until it does.</p><p>We started MindHYVE with a thesis that intelligence should be federated, not centralized. That autonomous agents should be specialists, not generalists. That the future of AI isn't one model that does everything &#8212; it's an ecosystem of minds that each do one thing extraordinarily well, coordinated by an architecture that lets them think differently but speak the same language.</p><p>The world is starting to agree.</p><p>We're not waiting for permission.</p><p>&#8212; Bill Faruki</p><p>Founder &amp; CEO, MindHYVE.ai</p>]]></content:encoded></item><item><title><![CDATA[The Agentic Age Is Here — And We’re Not Ready]]></title><description><![CDATA[By Bill Faruki | Founder & CEO, MindHYVE&#8482; | Chairman, California Institute of AI]]></description><link>https://billfaruki.substack.com/p/the-agentic-age-is-here-and-were</link><guid isPermaLink="false">https://billfaruki.substack.com/p/the-agentic-age-is-here-and-were</guid><dc:creator><![CDATA[Bill Faruki]]></dc:creator><pubDate>Mon, 23 Feb 2026 05:37:08 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/19a06664-a562-49f2-8157-0dbdc4ee9752_819x1024.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><em>By Bill Faruki | Founder &amp; CEO, <a href="https://mindhyve.ai/">MindHYVE&#8482;</a> | Chairman, <a href="https://www.ciai.com/">California Institute of AI</a></em></p><div><hr></div><p>Let me tell you something that should make you deeply uncomfortable: the AI you&#8217;re using right now is already obsolete.</p><p>Not the technology &#8212; the mental model you have of it.</p><p>You&#8217;re still thinking about AI as a tool. A chatbot. A glorified autocomplete that writes your emails and summarizes your meetings. And while you&#8217;ve been busy debating whether AI will take your job, something far more consequential has happened.</p><p>AI has started doing jobs. Not theoretically. Not in a lab. Right now. Today.</p><p>Welcome to the Agentic Age. And I promise you &#8212; almost nobody understands what that actually means.</p><div><hr></div><h3>The Word Nobody Had</h3><p>In the summer of 2022, I founded MindHYVE&#8482; with a thesis that sounded, to most people, like science fiction: build autonomous AI systems that don&#8217;t just respond to prompts but reason, decide, and act &#8212; independently, reliably, and across entire industries.</p><p>There wasn&#8217;t even a word for what we were building. The industry would eventually land on &#8220;agentic AI,&#8221; but at the time, the best I could do was call them Digital Employees. Not digital assistants. Not copilots. Employees.</p><p>The distinction matters more than you think.</p><p>An assistant waits for you to ask a question. An employee identifies problems, formulates solutions, and executes &#8212; with judgment. That gap between &#8220;assistant&#8221; and &#8220;employee&#8221; is not incremental. It&#8217;s civilizational.</p><p>Today, MindHYVE&#8482; operates 11 Digital Employees across education, healthcare, legal, and enterprise verticals. They don&#8217;t hallucinate because we engineered them not to. They don&#8217;t guess &#8212; they reason through a proprietary five-model consensus architecture where multiple AI systems challenge, verify, and validate each other before a single output reaches a human.</p><p>But this isn&#8217;t a story about my company. This is a story about your future, and why almost everything you&#8217;ve been told about AI is either incomplete or dangerously wrong.</p><div><hr></div><h3>The Three Lies You&#8217;ve Been Sold</h3><h4>Lie #1: AI is a tool you control.</h4><p>Every product demo you&#8217;ve ever seen reinforces this narrative. You type a prompt. AI responds. You&#8217;re in charge. Comfortable.</p><p>But agentic AI doesn&#8217;t wait for your prompt. It monitors, interprets, decides, and acts within parameters &#8212; but with genuine autonomy within those boundaries. When ArthurAI&#8482;, our education system, works with a student in Islamabad, it doesn&#8217;t follow a script. It reads the student&#8217;s cognitive patterns in real time, identifies exactly where understanding breaks down, restructures the curriculum on the fly, and adapts its pedagogical approach &#8212; all without a human teacher intervening.</p><p>The result? Over 80% of students showed measurable improvement. Not because a tool helped a teacher teach better. Because an intelligence understood the student better than any human curriculum ever could.</p><p>That&#8217;s not a tool. That&#8217;s a paradigm shift. And if you&#8217;re still thinking about AI as something you &#8220;use,&#8221; you&#8217;ve already fallen behind.</p><h4>Lie #2: AI will replace humans.</h4><p>This is the fear that sells headlines and it&#8217;s almost entirely wrong &#8212; but not for the reasons the optimists tell you.</p><p>The truth is messier and more interesting: AI won&#8217;t replace humans. It will replace the way humans organize work. That&#8217;s a far bigger disruption than job loss.</p><p>Think about it. The entire structure of modern business &#8212; departments, hierarchies, meetings, middle management &#8212; exists because humans have cognitive limits. We can only hold so much information, manage so many relationships, process so many variables. So we invented bureaucracy to distribute thinking across many brains.</p><p>Agentic AI collapses that architecture. A single Digital Employee can hold the context of an entire operation, reason across every variable simultaneously, and execute without the friction of handoffs, miscommunication, or politics.</p><p>This doesn&#8217;t eliminate humans. It eliminates the organizational scaffolding we built to compensate for human limitations. And that scaffolding? It&#8217;s most of what we call &#8220;work.&#8221;</p><p>If that doesn&#8217;t make you uncomfortable, you&#8217;re not paying attention.</p><h4>Lie #3: We have time to figure this out.</h4><p>We don&#8217;t. And I say that not as a doomsayer but as someone who has spent three years building these systems.</p><p>The marginal cost of deploying agentic AI into a new vertical is approaching zero. Once you&#8217;ve built the reasoning architecture &#8212; the core intelligence, the anti-hallucination systems, the domain adaptation framework &#8212; spinning up a new Digital Employee for a new industry is not a moonshot. It&#8217;s a configuration exercise.</p><p>MindHYVE&#8482; went from education to healthcare to legal to enterprise. Each deployment was faster than the last. Each one was more capable. The curve isn&#8217;t linear. It&#8217;s not even exponential. It&#8217;s something we don&#8217;t have a good word for yet, because the economics of intelligence have never worked this way before.</p><p>Every industry vertical &#8212; every single one &#8212; is about to get an agentic AI layer. The question isn&#8217;t whether. It&#8217;s whether you&#8217;ll be the one deploying it or the one being displaced by it.</p><div><hr></div><h3>What Nobody Is Talking About</h3><p>Here&#8217;s what keeps me up at night, and it&#8217;s not the thing you&#8217;d expect.</p><p>It&#8217;s not superintelligence. It&#8217;s not killer robots. It&#8217;s not even job displacement.</p><p>It&#8217;s <em>literacy</em>.</p><p>The gap between people who understand agentic AI and people who don&#8217;t is becoming the most consequential divide in human capital since the invention of reading. And it&#8217;s widening every single day.</p><p>Most AI education today is worse than useless &#8212; it&#8217;s actively misleading. It teaches people to write better prompts. To &#8220;use AI tools effectively.&#8221; That&#8217;s like teaching someone to operate a typewriter in 1995 and calling it computer literacy.</p><p>This is why I chair the California Institute of Artificial Intelligence and why we built The Dawn Directive &#8212; a certification program designed not to teach people how to use AI, but to teach them how to think about intelligence itself. What it means when machines reason. What changes when decision-making scales infinitely. What happens to expertise, authority, and truth when AI systems can synthesize knowledge faster than any human expert.</p><p>These aren&#8217;t technical questions. They&#8217;re civilizational ones. And right now, almost nobody is asking them.</p><div><hr></div><h3>The Uncomfortable Truth</h3><p>I started MindHYVE&#8482; because I saw something that was simultaneously thrilling and terrifying: the architecture for artificial intelligence that works &#8212; not as a party trick, not as a demo, but as a reliable, reasoning, autonomous presence in high-stakes environments where mistakes cost lives, livelihoods, and futures.</p><p>We&#8217;ve deployed it in classrooms where students had been written off by the system. We&#8217;ve deployed it in clinical settings where doctors are drowning in documentation. We&#8217;ve deployed it in legal practices where attorneys are buried in case complexity.</p><p>And in every single case, the same thing happened: the humans in the room realized that the world they&#8217;d been preparing for &#8212; the one where AI is a helpful assistant sitting politely in the corner &#8212; was already gone.</p><p>The Agentic Age isn&#8217;t coming. It arrived while we were arguing about chatbots.</p><p>The question now isn&#8217;t whether you&#8217;re ready. You&#8217;re not. Nobody is. The question is whether you&#8217;re willing to confront that honestly and start closing the gap &#8212; or whether you&#8217;ll keep pretending that the future is still a comfortable distance away.</p><p>I built this Substack to have that conversation. Not the sanitized, corporate-approved, &#8220;AI will augment human potential&#8221; version. The real one. The one that challenges your assumptions, makes you rethink your career, and forces you to grapple with what it actually means to live alongside intelligence that doesn&#8217;t sleep, doesn&#8217;t forget, and doesn&#8217;t stop improving.</p><p>If that sounds uncomfortable &#8212; good.</p><p>That&#8217;s the point.</p><div><hr></div><p><em>This is the first post in a series exploring the Agentic Age &#8212; what it is, what it means, and what you need to know to navigate it. Subscribe to stay ahead of the curve.</em></p><p><em>Bill Faruki is Founder &amp; CEO of <a href="https://mindhyve.ai/">MindHYVE&#8482;</a> and Chairman of the <a href="https://www.ciai.com/">California Institute of Artificial Intelligence</a>. He has been building agentic AI systems since 2022, before the industry had a name for them.</em></p>]]></content:encoded></item></channel></rss>