Skip to content
MIYA·AI·LAB / generative-AI test logs LLM · Claude Code · MLX · Ollama
AI MiyaAILab_
  • // Lab
  • // all logs
JA / EN
← Miya-Gadget
Generative AI

Does the trending Claude Code skill “ADHD” actually make the agent smarter? A measured duel vs single-shot

2026年6月3日 · Shichinomiya
Does the trending Claude Code skill “ADHD” actually make the agent smarter? A measured duel vs single-shot

Hi, this is Shichinomiya-san (@shichinomiya_s).

Last time I measured Headroom, which claims “95% token reduction”. This time I tested ADHD, another fast-rising project on GitHub (700+ stars in ~9 days, featured by The New Stack) — a skill for Claude Code / Codex. You type /adhd "problem" and the agent fans out ideas in parallel under several different viewpoints, then critiques and prunes them. The author claims “2.9× novelty and 5.2× trap detection” over a single-shot answer.

Here’s the bottom line: it really does get smarter (broader, more novel) — but not for free. In my own runs, blind scoring picked ADHD as more useful on both problems, with the biggest gains in novelty and trap detection. The cost, though, was ~2.3× the time and ~1.9× the output — and just a few runs hit my Claude usage limit. The “5–10× cost” is no exaggeration. Here’s the honest review.

Table of Contents

Toggle
  • What is ADHD — getting past “the first three answers”
  • Setup and method
  • Result 1 Quality — ADHD won both, blind
  • Result 2 Cost — 2.3× time, 1.9× output, and a usage cap
  • Discussion — what was actually “working”
  • Who it’s for / caveats
  • Summary
  • Related reading
  • Verification note (for reproduction)
  • You might also like

What is ADHD — getting past “the first three answers”

With linear Chain-of-Thought, an LLM anchors on whatever it says first. Tree-of-Thought branches out but still walks a shared context, so the anchoring persists across branches. ADHD treats this as an architectural problem, not a prompting one:

  • Divergence — spawn N isolated processes under deliberately distorted “cognitive frames” (regulator, biology, speedrunner, 10-year-old, $0 budget…), with zero shared context between branches.
  • Focus — a separate critic pass scores and clusters the ideas, prunes traps (seductive-but-flawed approaches), and deepens the survivors.

It’s aimed at “give me a few ways to…” problems: design, naming, API surface, fuzzy debugging. The skill itself says to skip it for syntax, lookups, and closed/standard questions.

Setup and method

ItemDetail
MachineApple M1 Max / 64GB
Agentclaude CLI 2.1.161 (Claude Code, subscription auth, no API key)
Skilladhd-agent 0.1.4 (npx skills add UditAkhourii/adhd)
MethodRun the same problem as “baseline (single shot, a few options)” vs “ADHD”

Two problems. P1: design an API rate limiter for a multi-tenant SaaS (a few approaches). P2: investigate intermittent production 504 timeouts (~once/hour, no clear pattern) — the “fuzzy debugging” ADHD claims to be good at.

To avoid bias, quality was scored blind by a separate claude call — which one was ADHD was hidden, and the A/B positions were swapped between problems.

npx skills add UditAkhourii/adhd
# baseline
claude -p "<problem; give a few options>"
# ADHD
claude -p "Use the adhd skill on this problem: <same problem>"

Result 1: Quality — ADHD won both, blind

Blind quality scores: baseline vs ADHD (avg of 2 problems)
Axis (1-10, avg of 2)baseline (single shot)ADHD
Breadth7.09.0
Novelty4.59.0
Trap detection5.09.0
Actionability8.58.0

The blind judge picked ADHD as “more useful overall” on both problems. The biggest gains were novelty (+4.5) and trap detection (+4.0) — matching the direction of the author’s claims. Only actionability slightly favored baseline: textbook answers are concrete and immediately implementable.

Result 2: Cost — 2.3× time, 1.9× output, and a usage cap

ADHD cost: 2.26x time, 1.93x output (measured)
Metric (avg of 2)baselineADHDratio
Wall time95.4s216.1s2.26×
Output5,623 chars10,697 chars1.93×

ADHD makes ~10 internal agent calls, so time and tokens both balloon. In fact, just a few runs hit my Claude subscription’s session limit, forcing a wait. The skill’s self-declared “5–10× a single answer” held true in both feel and numbers.

Discussion — what was actually “working”

The biggest difference was in the substance. On P1, baseline gave the textbook four (Redis token bucket / local memory + consistent hashing, etc.). ADHD instead generated 30 ideas across 5 frames, then surfaced non-obvious options you rarely get single-shot — e.g. “nodes lease a slice of a central budget, and the hot path enforces with GCRA and zero network calls,” weighted fair scheduling (WDRR) that treats the problem as scheduling rather than metering, and even capacity futures — each with its load-bearing risk spelled out.

So ADHD’s value isn’t “get the right answer faster” — it’s “surface the angles you wouldn’t have thought of, traps and all.” A strong sparring partner for ideation. A believable result.

Who it’s for / caveats

Good fit for:

  • Open-ended problems (design, naming, API surface, strategy) where you want to widen the option space
  • Pressure-testing whether you’re anchored on your own first idea
  • Anyone already on Claude Code / Codex who can just add a skill

Caveats:

  • The cost is real: ~2.3× time, ~1.9× output, and it burns through your quota fast (I hit the cap in a few runs)
  • Overkill for syntax / boilerplate / closed problems (the skill itself says “don’t”)
  • These quality scores are a blind LLM-as-judge — subjective, and unlike the objective time/size numbers. Small sample (2 problems)
  • The author’s “5.2×” etc. are from the author’s own tasks; my different tasks/scoring show the same direction but smaller magnitude

Summary

Conclusions from actually dueling the trending ADHD skill against single-shot in Claude Code (all measured):

  • ADHD won both problems blind, especially novelty 4.5→9.0 and trap detection 5.0→9.0
  • Its strength is non-obvious options and trap-spotting; baseline narrowly leads on actionability
  • Cost is 2.26× time, 1.93× output, and it hit my usage cap in a few runs
  • Verdict: worth it as a sparring partner for open-ended design/ideation; overkill for routine work

If you know you tend to “settle for the first three ideas,” it’s worth running once before a design decision — but aim it at the questions that matter, for cost’s sake.

Related reading

More on AI and Claude Code:

  • Is Headroom’s “95% token reduction” for real? I measured it
  • The Definitive Claude Code Getting-Started Guide

Verification note (for reproduction)

All numbers are measured on the author’s M1 Max (64GB).

Environment: Apple M1 Max / 64GB / claude CLI 2.1.161 (Claude Code, subscription auth) / adhd-agent 0.1.4

# install skill
npx skills add UditAkhourii/adhd

# run baseline vs ADHD on the same problem (timed)
/usr/bin/time -p claude -p "<problem>"
/usr/bin/time -p claude -p "Use the adhd skill on this problem: <problem>" --permission-mode bypassPermissions

# quality scored blind by a separate claude call (A/B hidden, positions swapped)

Measured: wall time baseline 95.4s / ADHD 216.1s (2.26×); output 5,623 / 10,697 chars (1.93×); blind scores (1-10, avg of 2) breadth 7.0→9.0, novelty 4.5→9.0, trap detection 5.0→9.0, actionability 8.5→8.0; ADHD won 2/2.

Known limitations: quality is an LLM-as-judge score (subjective); only 2 problems (small sample). ADHD hit my Claude session cap after a few runs, so the sample was kept small (the cost itself being a finding). The author’s published figures (2.9× novelty, 5.2× trap detection) are from the author’s own 6 tasks, different from this test.

You might also like

More generative-AI logs from the lab.

  • Can GTX 1080 Ti Run Modern AI? Qwen 3.5 Local LLM Benchmark Results
  • Auto-Generate PDF Reports with Claude Code: From Raw Data to Polished Documents
  • Tesla V100 32GB in 2026: Local LLM Benchmark with Qwen 3.6 — 98.8 tok/s on MoE 35B, 1.6x Faster Than M1 Max (Used, ≈$900)
  • Can you really cut your AI API bill? I deployed the context-compression tool “Headroom” and measured it
Previous Article Qwen 3.6 on a Mac, Measured: on an M1 Max 64GB, the MoE 35B ran 3.7x faster than the 27B
Next Article Can you really cut your AI API bill? I deployed the context-compression tool “Headroom” and measured it

Related Posts

The Complete Guide to Claude Code: Get Started with AI Development on Windows in 5 Minutes

The Complete Guide to Claude Code: Get Started with AI Development on Windows in 5 Minutes

Automate Email Sending with Claude Code: Fully Automating Routine Tasks

Automate Email Sending with Claude Code: Fully Automating Routine Tasks

Build a Budget Tracker App with Claude Code: Data Visualization Made Easy

Build a Budget Tracker App with Claude Code: Data Visualization Made Easy

Smart Shopping with Claude Code: Building an Automatic Price Monitoring Tool

Smart Shopping with Claude Code: Building an Automatic Price Monitoring Tool

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Shichinomiya

Shichinomiya

A blogger who loves PC and gadgets. Sharing daily discoveries.

@shichinomiya_s

Popular Posts

  • Building a Weather Forecast App with Claude Code and API Integration
  • Can you really cut your AI API bill? I deployed the context-compression tool “Headroom” and measured it
  • Smart Shopping with Claude Code: Building an Automatic Price Monitoring Tool
  • Darkbloom Review: Can a Mac Really Earn Money Serving AI? (I Tested It for a Day)
  • Simplify Task Management with Claude Code! Building a Simple Todo List App

Categories

  • Announcements
  • Cars
  • Cycling
  • Gadgets
  • Generative AI
  • Home Appliances
  • Internet Service
  • Outings
  • Overseas Shopping
  • PC
  • Rental Servers & VPS
  • Travel

MiyaAILab

A hands-on lab for generative AI — new models, tools, and services tested for real, from benchmarks to everyday usefulness.

Lab

  • AI Lab トップ
  • 生成AI 全記事
  • ← Miya-Gadget 本体

Latest

  • Tesla V100 32GB Runs Qwen3.8-27B: 131k Context on a Single Card — Measured Benchmark
  • Tesla V100 32GB in 2026: Local LLM Benchmark with Qwen 3.6 — 98.8 tok/s on MoE 35B, 1.6x Faster Than M1 Max (Used, ≈$900)
  • Darkbloom Review: Can a Mac Really Earn Money Serving AI? (I Tested It for a Day)
  • Can you really cut your AI API bill? I deployed the context-compression tool “Headroom” and measured it
© 2026 Miya AI Lab — a section of Miya-Gadget. miyagadget.page