"Once men turned their thinking over to machines in the hope that this would set them free. But that only permitted other men with machines to enslave them." — Frank Herbert, Dune, 1965
The history of artificial intelligence is usually told as a sequence of technical advances. That narrative, however, leaves something out. Computational capacity and human understanding have never advanced at the same pace. From the earliest experiments to today's generative models, the distance between what the machine produces and what the operator understands about that production has only widened. This gap has a name, and the industry is still trying to measure its effects.
A timeline of asymmetry
In 1956, at the Dartmouth Conference, John McCarthy, Marvin Minsky, Nathaniel Rochester, and Claude Shannon proposed that "every aspect of learning or any other feature of intelligence can in principle be so precisely described that a machine can be made to simulate it." The scope was ambitious, but the computational capacity of the time imposed severe practical limits. The resulting systems were transparent almost by definition, composed of symbolic rules, decision trees, and auditable logical chains. The human operator understood what the system did because the system itself was small enough to be understood.
In the 1980s, expert systems expanded the reach of AI without breaking that transparency. MYCIN diagnosed bacterial infections; XCON configured VAX computers. Every decision could be traced back to a specific rule in the knowledge base. The bottleneck remained knowledge acquisition engineering, not understanding the output.
The turning point came in the 1990s with statistical learning. Neural networks, support vector machines, and Bayesian models began extracting patterns directly from data. The gain in capability came with a progressive loss of interpretability. The operator could no longer explain why the model made a particular decision, only verify whether the result seemed correct. Herbert Simon, Nobel Prize in Economics in 1978, had anticipated this tension decades earlier: "In an information-rich world, the wealth of information means a dearth of something else: a dearth of whatever it is that information consumes. What information consumes is rather obvious: it consumes the attention of its recipients." The problem Simon described now manifested within AI systems themselves.
From 2012 onward, with the deep learning revolution launched by AlexNet, model capability began to decouple from human understanding. In 2017, the paper "Attention Is All You Need" introduced the Transformer architecture, accelerating that divergence. And from 2022, with the launch of ChatGPT and the popularization of LLMs, generation capability surged while understanding of what was being produced began to regress. The volume, speed, and opacity of outputs exceeded the capacity for critical monitoring.
From industrial tool to everyday interface
For decades, AI was predominantly specialized and invisible. It was embedded in recommendation engines, fraud detection systems, predictive models based on large data volumes, and assistants constrained by rules and narrow scopes. These were systems trained for specific tasks, operating within well-defined boundaries and under strong institutional control. Complexity was concentrated in engineering and infrastructure. The end user rarely knew they were interacting with AI.
With the consolidation of foundation models and large language models, a paradigm shift occurred. AI moved from being a backend component to a direct interface. Text, code, strategic planning, technical documentation, and even preliminary architectural decisions began to be generated on demand. Access stopped being industrial and became everyday. The technical barrier was drastically lowered, and with it, the expectation that the operator would understand the internal mechanisms of what was being produced.
The industry reacted quickly. Teams were replaced, restructurings based on autonomous agents followed, and internal workflows were aggressively automated. Professionals across all fields incorporated AI into their daily work. Productivity gains showed up in draft generation, exploration of alternatives, and acceleration of repetitive tasks.
As usage intensified, structural limitations began to emerge. Factual hallucinations, responses semantically sophisticated but conceptually empty, functional but architecturally fragile code. In many cases, the output seems correct at first glance but does not carry internal consistency when examined in depth. The problem is not limited to factual error. It involves structural quality, systemic coherence, and alignment with non-explicit requirements.
Daniel Kahneman described a cognitive mechanism that helps explain why this fragility goes unnoticed: "This is the essence of intuitive heuristics: when faced with a difficult question, we often answer an easier one instead, usually without noticing the substitution." When a generative model delivers a plausible answer, the operator's cognitive system tends to accept that plausibility as a substitute for deep verification. The difficult question ("does this code respect the architectural invariants of the system?") is replaced by the easy question ("does this code look correct?").
The concept of cognitive debt
Cognitive debt is the liability generated when delegating a complex task reduces the professional's understanding of the decision-making process that led to the result. The deliverable happens, but the understanding of how it was done does not follow. The final artifact exists, but the logical chain, the assumptions made, the trade-offs accepted, and the constraints considered are not fully internalized by whoever delegated.
Kosmyna and collaborators at MIT Media Lab, in the study "Your Brain on ChatGPT" (2025), defined the phenomenon in operational terms: cognitive debt is "a condition in which repeated reliance on external systems such as LLMs substitutes the effortful cognitive processes required for independent thinking. Cognitive debt defers mental effort in the short term but results in long-term costs such as diminished critical inquiry, increased vulnerability to manipulation, and reduced creativity."
Unlike technical debt, which manifests in code and architecture in measurable ways (cyclomatic complexity, coupling, test coverage), cognitive debt installs itself in the comprehension gap between the human author and the artifact produced.
It does not appear in code quality metrics and does not trigger alerts in CI/CD pipelines. In smaller projects, such as PoCs or personal experiments, this invisibility can go unnoticed. But in corporate environments, each undocumented decision, each adjustment made without full understanding, or each untraceable implementation choice amplifies the risk of errors, reduces confidence in system maintenance, and compromises project governance. The distance between what was generated and what was actually understood becomes more dangerous as the project grows, impacting security, quality, scalability, and the capacity for evolution.
Margaret-Anne Storey, software engineering researcher at the University of Victoria, formalized this distinction in February 2026: "Cognitive debt communicates the notion that the debt accumulated from moving too fast lives in the brains of developers and affects their lived experiences and abilities to 'move fast' or make changes." The debt metaphor is deliberate. Like technical debt, cognitive debt accumulates compound interest. Every new feature built on partial understanding amplifies the future cost of maintenance, evolution, and auditing.
Simon Willison, developer and AI researcher, reported the experience in the first person: "I've been experimenting with building entire features through prompts without reviewing their implementations and, while it works surprisingly well, I found myself lost in my own projects. I no longer have a firm mental model of what they can do and how they work, which means each additional feature becomes harder to reason about." The account illustrates the central mechanism: immediate productivity progressively erodes the capacity to reason about the system itself.
The ironies of automation applied to AI
This dynamic is not new. In 1983, Lisanne Bainbridge published "Ironies of Automation," a paper that became a reference in human factors research. Bainbridge identified a paradox: the more sophisticated the automation, the more critical human intervention becomes when automation fails, and the less prepared the human operator is to perform that intervention. "It is ironic to train operators to follow instructions and then place them in the system to provide intelligence." The irony Bainbridge described in industrial systems reproduces itself in the context of generative AI. The developer who systematically delegates code generation gradually loses the ability to critically evaluate the generated code, precisely when that evaluation becomes most necessary.
Linda Skitka and Kathleen Mosier, cognitive psychology researchers, documented this phenomenon under the name automation bias, defined as "errors of omission and commission resulting from using automated cues as a heuristic replacement for vigilant information seeking and processing." In practical terms, automation bias causes the operator to stop verifying information that contradicts automated output (error of omission) and to accept incorrect outputs without questioning (error of commission). Originally studied in aviation cockpits, the phenomenon applies directly to the developer who accepts AI-generated code without mentally reconstructing the reasoning behind it.
Manifestations in software development
In some personal projects and tool implementations, I was satisfied with the final result, but when I tried to understand how it had been done, a kind of despair hit me. In fact, part of it came from gaps in my prompting. What I did not decide, the AI filled with the statistically most probable option. The gaps I left through inexperience were precisely where it generated problems, oversimplifying or breaking sections of code. It was not rare to create semantic duplication, repeated solutions across different packages, breaks in patterns I had defined earlier, or even condensation of the entire project into a single file, making it harder to understand the complete flow. When the time came for refactoring, not even the AI could resolve the mess it had created.
Generative models tended to produce plausible solutions, but did not always respect the architectural context, and explicit considerations about security and quality were missing from certain sections. Was it fast? Yes, but the understanding gap of the how was painful. It was that same feeling of picking up a very poorly built project and thinking: time to rebuild this from scratch.
The cost of this dynamic shows up in the software lifecycle. During review, maintenance, or auditing, the team needs to reconstruct the reasoning that was never made explicit. Decision traceability is compromised. In regulated domains, this impacts compliance and governance. In critical systems, it can introduce exploitable vulnerabilities arising from implicit, unvalidated assumptions.
Even when the result is technically correct, the lack of clarity about how and why certain choices were made makes future evolution harder. With each new unsupervised interaction, system entropy grows. The natural tendency becomes relying on the tool to keep expanding something that is no longer fully understood. The accumulation of that dependency amplifies cognitive debt and reduces the team's critical capacity over its own product.
Apparent proficiency and technical depth
A particularly insidious effect arises at the level of individuals and teams with shallower technical depth. AI allows generating sophisticated deliverables in reduced time, including functional code, structured analyses, preliminary architectures, and well-written technical documents. The visible result conveys maturity and solidity.
Computer science education researchers documented this asymmetry empirically. James Prather and collaborators, in a study published in ICER 2024, observed that "for students who struggled, GenAI exacerbated existing metacognitive difficulties and even introduced new ones. Furthermore, students who struggled often expressed cognitive dissonance about their problem-solving ability and ended up with an illusion of competence." The illusion of competence described in the academic context reproduces itself in corporate environments. Professionals can produce, but not necessarily explain in depth, evolve safely, or technically defend the decisions involved.
In 2025, Nataliya Kosmyna and collaborators at MIT Media Lab conducted the most comprehensive study to date on the cognitive cost of LLM use. Over four months, 54 participants were divided into three groups (LLM, search engine, and brain-only) and subjected to writing tasks with electroencephalography (EEG) monitoring. In the fourth session, the groups were switched. The results were consistent across all measured dimensions: neural, linguistic, and behavioral.
Cognitive impact of LLM use vs. autonomous writing (Session 4, crossover)
Data: Kosmyna et al., MIT Media Lab, 2025 (n=18, p=0.015)
The group that used LLMs across the first three sessions showed neural connectivity up to 55% lower in total dDTF magnitude compared to the group that wrote without tools. In the crossover session, when participants from the LLM group needed to write without assistance for the first time, 83% (15 of 18) reported difficulty citing their own texts, and none produced correct citations. The professors who evaluated the essays, without knowing which group produced them, described the LLM-generated texts as "soulless," with "near-perfect use of language and structure, but simultaneously failing to offer personal insights or clear claims."
In technical environments, this asymmetry between apparent delivery and conceptual mastery is structurally dangerous. Corporate systems require repertoire, understanding of trade-offs, architectural vision, and the capacity to anticipate side effects. Without a solid base, every new layer added to the system rests on partial understanding. Building on sand may generate initial speed, but compromises future stability.
Nicholas Carr, in "The Glass Cage" (2014), had already described this mechanism in the context of industrial automation: "How do you measure the cost of an erosion of effort and engagement, or a waning of agency and autonomy, or a subtle deterioration of skill? You can't. Those are the kinds of shadowy, intangible things that we rarely appreciate until after they're gone." The deterioration Carr described does not appear in productivity indicators. It manifests when the system needs to be audited, when a critical failure requires root cause investigation, when a regulatory requirement demands complete traceability of technical decisions.
Erosion of organizational knowledge
Even before generative AI, organizations already faced recurring challenges related to insufficient documentation, concentration of knowledge in key individuals, and structural failures in knowledge management. Dependence on tacit memory, unrecorded decisions, and implicit rationales always represented an operational risk, especially in high-complexity technological environments.
The massive introduction of AI accelerates this phenomenon. When analyses, code, reports, and strategic proposals are partially generated by models, a technically presentable final artifact is created, but with less internalization of the reasoning by whoever requested it. Documentation tends to record the result, not necessarily the decision-making process, the alternatives considered, or the constraints evaluated.
Knowledge stops being merely poorly documented. It begins to be not fully understood from the origin. Reviews become more costly, audits more complex, and knowledge transfer more superficial. Instead of reducing dependencies, indiscriminate AI use can shift them to a new axis, where dependence on the tool combines with progressive reduction of internal domain.
Storey discussed the scale of the cognitive debt problem, suggesting it may represent significant risks as AI and agents are adopted. The claim is strong, but the logic sustaining it is consistent. Technical debt can be measured, prioritized, and paid down with refactoring. Cognitive debt, as Nataliya Kosmyna of MIT Media Lab observed, operates under different rules: "There is no cognitive credit card. You cannot pay this debt." The knowledge that was not built during the creation process cannot be fully recovered merely by reading the final artifact.
Using AI as a tool, not as a new bionic arm
Professionally, it is essential to use AI as a tool, not as a shortcut to something you have not yet mastered. Like any tool, it works best when you know prompting techniques, agent topologies for multi-agent scenarios, and other important details. This helps extract its full potential. It is worth using in contexts you already understand, as an accelerator of what you already know, rather than expecting it to resolve something you have not yet mastered.
When using the model that became known as "vibe coding" with mastery of what you know, you already create a gap in understanding and knowledge, because you delegate tasks you could do yourself to accelerate a slow process. This allows you to produce faster, generate code, and structure solutions in less time. Simple changes become difficult not because the code is bad, but because the mental context of how everything connects is no longer clear. The initial speed charges its price later, and when you act without having the capabilities and knowledge of what you are asking for, that debt scales to another level.
When we try to have AI fill knowledge gaps we have not yet mastered, risks appear. It can hallucinate, generate unexpected problems, and speak with confidence, and if you do not master what you are asking for, you end up accepting as correct something that is wrong. That is why experience, critical judgment, and attention to what the tool delivers matter, even when it seems reliable.
The insight is simple: use AI to enhance competencies you already have, accelerate decisions you understand, deepen analyses you can evaluate, and expand repertoire where a solid foundation already exists. When used this way, AI is a powerful partner. When used as a crutch, problems accumulate, and cognitive debt collects sooner or later.
In the end, the real advantage lies not only in producing faster with AI, but in maintaining mastery over what is being built. Sustainable productivity comes from understanding, practice, and follow-through, not from shortcuts to things you have not yet mastered.
Earl Wiener, human factors researcher in aviation, formulated an observation that applies directly to the current scenario. "Digital devices eliminate small errors while creating opportunities for large ones." Generative AI eliminates syntax errors, superficial inconsistencies, and trivial oversights. At the same time, it creates opportunities for architectural errors, security violations, and systemic inconsistencies that are orders of magnitude more costly.
The next necessary leap
AI functions as a cognitive amplifier, accelerating exploration, execution, and prototyping in ways that would be impractical without it. The problem occurs when that acceleration operates without supervision proportional to the complexity of what is being generated.
As long as models are not capable of offering robust explainability, formal justification of decisions, and verifiable adherence to architectural constraints, technical supervision will remain indispensable. The next relevant leap may lie not in the capacity to generate more, but in the capacity to reduce the distance between generation and understanding.
Carr wrote that "the choices we make, or fail to make, about which tasks we delegate to computers and which we keep for ourselves are not just practical or economic choices. They are ethical choices. They shape the substance of our lives and the place we make for ourselves in the world." In the context of software development, those choices also shape the sustainability of the systems we build and the capacity of the teams that maintain them.
Sustainable corporate systems depend less on the speed of production and more on the depth of understanding of what was produced. The question that remains is not how much we can automate, but where automation expands capacity without generating an invisible, unmanageable liability that compromises the future of what is being built. Sustainable productivity requires wisdom.
References
- Herbert, F. (1965). Dune. Chilton Books.
- Simon, H. A. (1971). Designing Organizations for an Information-Rich World. Johns Hopkins University Press.
- Bainbridge, L. (1983). Ironies of Automation. Automatica, 19(6), 775-779.
- Skitka, L. J., Mosier, K. L., & Burdick, M. (1999). Does automation bias decision-making? International Journal of Human-Computer Studies, 51(5), 991-1006.
- Kahneman, D. (2011). Thinking, Fast and Slow. Farrar, Straus and Giroux.
- Carr, N. (2014). The Glass Cage: How Our Computers Are Changing Us. W. W. Norton.
- Prather, J. et al. (2024). The Widening Gap: The Benefits and Harms of Generative AI for Novice Programmers. ICER '24. arXiv:2405.17739.
- Kosmyna, N., Hauptmann, E., Yuan, Y. T., Situ, J., Liao, X., Beresnitzky, A. V., Braunstein, I. & Maes, P. (2025). Your Brain on ChatGPT: Accumulation of Cognitive Debt when Using an AI Assistant for Essay Writing Task. arXiv:2506.08872.
- Storey, M.-A. (2026). How Generative and Agentic AI Shift Concern from Technical Debt to Cognitive Debt. margaretstorey.com.
- Willison, S. (2026). Cognitive Debt. simonwillison.net.
- Wiener, E. L. & Curry, R. E. (1980). Flight-deck automation: Promises and problems. Ergonomics, 23(10), 995-1011.