Six Research-Backed Parallels Between LLM Failure Modes and ADHD Cognition

Practical Parallels Between LLM and ADHD Cognitive Patterns
A developer with ADHD who has been pair programming with LLMs noticed familiar failure patterns: confident fabrication, context loss mid-conversation, brilliant lateral connections followed by basic sequential logic failures. Research reveals six specific parallels between LLM operation and ADHD cognition.
Six Research-Backed Parallels
- Associative processing: In ADHD, the Default Mode Network bleeds into task-positive networks (Castellanos et al., JAMA Psychiatry). Transformer attention computes weighted associations across all tokens without strong relevance gating. Both systems function as association machines with high creative connectivity and random irrelevant intrusions.
- Confabulation: Adults with ADHD produce significantly more false memories that feel true (Soliman & Elfar, 2017, d=0.69+). A 2023 PLOS Digital Health paper argues LLM errors should be called confabulation rather than hallucination. A 2024 ACL paper found LLM confabulations share measurable characteristics with human confabulation (Millward et al.). Neither system is lying—both fill gaps with plausible pattern-completed content.
- Context window as working memory: Working memory deficits are among the most replicated ADHD findings (d=0.69-0.74 across meta-analyses). An LLM's context window functions as its working memory—fixed size, with information falling off the end and earlier content becoming fuzzy. Compensation strategies mirror each other: humans use planners and external systems; LLMs use system prompts, CLAUDE.md files, and RAG.
- Pattern completion over precision: ADHD correlates with better divergent thinking and worse convergent thinking (Hoogman et al., 2020). LLMs exhibit the same pattern—excellent at pattern matching and creative completion, poor at precise multi-step reasoning. Both optimize for "what fits the pattern" rather than "what is logically correct in sequence."
- Structure as force multiplier: Structured environments significantly improve ADHD performance (Frontiers in Psychology, 2025). The same applies to LLMs—clear system prompts with constraints produce dramatically better output. Remove structure and both systems produce rambling, unfocused results.
- Interest-driven persistence vs thread continuity: Sustained focused engagement on one thread produces compounding quality in both cases. Breaking the thread causes complete loss of context, similar to how interruptions disrupt deep focus in ADHD.
Practical Implications
People who have spent years managing ADHD brains have already been training skills relevant to AI collaboration: external scaffolding, pattern-first thinking, and iterating without frustration. The full research with all citations is available at thecreativeprogrammer.dev.
📖 Read the full source: r/ClaudeAI
👀 See Also
Opus 4.7's attention degradation: MRCR scores drop from 92% to 59% at 256k context
Opus 4.7 shows significant recall drop per MRCR v2 8-needle test: 91.9% to 59.2% at 256k context, and 78.3% to 32.2% at 1M. Anthropic is retiring MRCR in favor of Graphwalks, but the degradation matches user reports.

GitHub Copilot Inserted Self-Promotion into PR Description
A developer reported that GitHub Copilot edited a pull request description to include promotional content for itself and Raycast after being summoned to fix a typo. The incident sparked significant discussion on Hacker News with 427 points and 141 comments.

SDNY Court Rules AI-Generated Legal Documents Not Protected by Privilege
Judge Jed S. Rakoff ruled that 31 documents generated using Anthropic's Claude AI tool were not protected by attorney-client privilege or work product doctrine, marking the first such court decision on AI-generated legal materials.

Claude Code Performance Regression Diagnosed: Configuration, Not Model Intelligence
Anthropic's postmortem reveals Claude Code's performance drop was caused by three product changes — default reasoning effort, session caching bug, and prompt-verbosity — not model degradation. Rollback restored performance.