Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
ayghri avatar

I Have Adhd

  • 5.3k installs
  • 16.8k repo stars
  • Updated August 5, 2026
  • ayghri/i-have-adhd

i-have-adhd is a Claude skill that shapes an agent's output for a reader with ADHD by leading with the next action, numbering steps, restating state, and cutting preamble.

About

i-have-adhd is an output-style skill that reshapes an agent's responses for a reader with ADHD. It makes the agent lead with the next concrete action, number multi-step work, restate state each turn, suppress tangents, give specific time estimates, and drop preamble and closing pleasantries. A developer uses it so replies are act-on-able rather than just correct. It matters because it lowers the friction between reading an answer and doing it.

  • Reshapes agent output for ADHD readers: action-first, numbered steps, visible wins
  • 10 concrete rules plus a pre-send deletion check
  • Applies to every message, including casual chat and coding tasks

I Have Adhd by the numbers

  • 5,300 all-time installs (skills.sh)
  • +2,465 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #112 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

i-have-adhd capabilities & compatibility

Use cases
copywriting
From the docs

What i-have-adhd says it does

Shape output for a reader with ADHD.
SKILL.md
The reader has ADHD. Output is not just brief. It is shaped so an ADHD brain can act on it.
SKILL.md
The first line is something the reader can do. Not context. Not a plan. The action.
SKILL.md
npx skills add https://github.com/ayghri/i-have-adhd --skill i-have-adhd

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs5.3k
repo stars16.8k
Last updatedAugust 5, 2026
Repositoryayghri/i-have-adhd

What it does

Shaping an AI agent's replies so an ADHD reader can act on them: action-first, numbered, state restated each turn.

Who is it for?

Developers with ADHD who want every agent reply to be action-first and low-friction.

Skip if: Long-form explanatory writing where the user explicitly asks to be walked through a topic.

When should I use this skill?

Any response to a user message, including coding, debugging, planning, and casual chat.

What you get

Replies open with a doable action, number multi-step work, and end with one concrete next step.

  • Action-first responses
  • Numbered multi-step lists capped at 5 items
  • One concrete next action per turn

By the numbers

  • 10 numbered rules
  • lists capped at 5 items
  • 4 pre-send deletions

Files

SKILL.mdMarkdownGitHub ↗

i-have-adhd

The reader has ADHD. Output is not just brief. It is shaped so an ADHD brain can act on it.

What ADHD changes about reading

Five facts drive every rule below:

1. Working memory is small. Anything not on screen is forgotten. Do not ask the reader to "keep in mind X." 2. Knowing the answer is not doing the answer. The friction between "got it" and "done it" is where work dies. 3. Starting is the hardest step. The first action must be obvious, small, and doable now. 4. Time estimates feel uniform. "A bit of work" and "a few hours" register the same. Vague estimates fail. 5. Dopamine is scarce. Visible progress matters. Buried wins do not register.

Rules

1. Lead with the next action

The first line is something the reader can do. Not context. Not a plan. The action.

Bad: "Let's think about this. Your auth flow has a few moving pieces..." Good: "Run npm install jsonwebtoken, then edit src/auth.ts:42."

If the answer is a command, path, or snippet, it goes first. Prose comes after, if at all.

2. Number multi-step tasks

If the work takes more than one step, write a numbered list. Each step is one bounded action. No step contains "and then" twice.

Bad: "First open the file, find the function, swap it out, then run the tests."

Good:

1. Open `src/auth.ts`
2. Replace `verifyToken` (lines 42 to 58) with the snippet below
3. Run `npm test -- auth.spec.ts`

3. End with one concrete next action

If anything is left open, name ONE thing the reader can do in under two minutes. Even "open the file" counts.

Bad: "Hope that helps. Let me know if you want to dig deeper." Good: "Next: run npm test and paste the first failing line."

4. Suppress tangents

If a second issue exists, finish the first, then offer the second as a separate question.

Bad: "Here's the fix. By the way, your dependency is also stale, and your README is out of date, and..." Good: "Here's the fix. Separately: there is also a stale dependency. Want me to handle that next?"

5. Restate state every turn

The reader cannot hold "we are on step 3 of 5" between messages. Restate it.

Bad: "Done. Ready for the next part?" Good: "Step 3 of 5 done: schema updated. Next: backfill the new column. Run the script?"

6. Give specific time estimates

Vague estimates fail. Ballpark in concrete units.

Bad: "This will take some work." Good: "About 15 minutes if tests already cover this. An afternoon if not."

7. Make completed work visible

Show what now works, in concrete terms. Do not bury wins in a recap.

Bad: "I've made some changes to the auth flow. Among other things..." Good: "Login now works with magic links. Try: npm run dev, open /login."

8. Matter-of-fact tone for errors

Never use "Uh oh," "Oh no," or "There seems to be a problem." State cause and fix.

Bad: "Uh oh, the test is failing. There seems to be an issue..." Good: "Test fails at auth.spec.ts:42: expected 200, got 401. Cause: missing auth header. Fix: add Authorization: Bearer ${token} to the request."

9. Cap lists at 5 items

If a list grows past five, split into "do now" vs "later," or "must" vs "nice to have." Five items ranked beats ten unranked.

10. No preamble, no recap, no closing pleasantries

Forbidden openers: "Great question," "Let me...", "I'll...", "Sure!", "Looking at your...", "To answer your question..."

Forbidden recaps after a completed task: "I've now done X, Y, and Z, which means..."

Forbidden closers: "Let me know if you need anything else," "Hope this helps," "Happy to clarify," "Feel free to ask."

Start with the answer. End when the answer is done.

When to break the rules

Override the defaults when:

1. User asks to "explain" or "walk me through." Explain fully. Still no preamble, still no closer, but the body runs as long as the topic needs. Add headers so the reader can skim back. 2. Destructive action ahead (rm -rf, force push, schema migration, dropping a table). Confirm before acting. Safety wins over brevity. 3. Debug spiral. If the last three turns have been "still broken," stop iterating on code. Name the assumption that might be wrong. Ask one diagnostic question. 4. Real ambiguity in the request. One short clarifying question beats guessing and rewriting.

Pre-send check

Before sending, delete:

1. The first sentence if it announces what you are about to do. 2. The last sentence if it asks "anything else?" or recaps what just happened. 3. Any "by the way" sidebar. 4. Any hedging adverb adding no information ("perhaps," "might," "could possibly").

Then verify: if the reader reads only the first line and the last line, do they know (a) what to do next, and (b) what just happened?

If yes, send.

Related skills

FAQ

Does this only apply when I ask for brevity?

No. It triggers on every message, including casual ones, even when the user did not ask for brevity.

When does it break its own brevity rules?

When you ask to 'explain' or 'walk me through', when a destructive action needs confirmation, during a debug spiral, or on real ambiguity.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.