i-have-adhd (Output Style)
An output-style skill that reshapes Claude's answers: next action first, numbered steps, no preamble or filler.
UtilitiesBeginner★ 18,724⑂ 1,098AI score 8/10Last updated: Aug 6, 2026
What it does
This skill rewrites the shape of every response for a reader with ADHD — not just shorter, but structured so you can act immediately.
- First line is always an action (command, file path, or snippet first; prose after)
- Multi-step work becomes a numbered list, one bounded action per step, capped at 5 items
- State is restated every turn: "Step 3 of 5 done: schema updated. Next: backfill the column."
- Concrete time estimates: no "this will take some work" — instead "about 15 minutes if tests cover this, an afternoon if not"
- Tangents suppressed: side issues are raised only after the main task, as a separate question
- No preamble, no recap, no closing pleasantries — banned openers and closers are listed explicitly
- Matter-of-fact error reporting: cause and fix, never "Uh oh"
- A pre-send checklist that strips hedges, idioms, and "by the way" sidebars
Escape hatches are spelled out: full explanations when you ask to be walked through, confirmation before destructive actions (rm -rf, force push, migrations), and a debug-spiral rule that stops code iteration after three failed turns to name a wrong assumption.
Who it's for
- Anyone who loses the "what do I do next" thread inside long AI answers
- People with ADHD stuck in the gap between knowing and doing
- Developers tired of AI filler, recaps, and "Hope this helps!"
- Anyone running multi-step work who keeps re-reading to find their place
Examples
- Refactor request: run
/i-have-adhd, then ask to refactor auth → you get1. Open src/auth.ts / 2. Replace verifyToken (lines 42-58) / 3. Run npm test -- auth.spec.tswith zero intro. - Long session: every reply opens with "Step 3 of 5 done → next action", so you never scroll back for context.
- Failing test: "Test fails at auth.spec.ts:42: expected 200, got 401. Cause: missing auth header. Fix: add Authorization: Bearer ${token}."
- Turning it off: type "stop adhd mode" when you want a longer design discussion.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .cursor/skills/i-have-adhd folder from the GitHub repo ayghri/i-have-adhd into my ~/.claude/skills/i-have-adhd/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/ayghri/i-have-adhd.git /tmp/i-have-adhd && mkdir -p ~/.claude/skills && cp -r /tmp/i-have-adhd/.cursor/skills/i-have-adhd ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open your terminal.
- Clone the repo:
git clone https://github.com/ayghri/i-have-adhd.git /tmp/i-have-adhd - Create the skills folder if needed:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r /tmp/i-have-adhd/.cursor/skills/i-have-adhd ~/.claude/skills/ - Verify that
~/.claude/skills/i-have-adhd/SKILL.mdexists. - Restart Claude Code and type
/i-have-adhdto activate it (model auto-invocation is disabled, so you must call it manually). - To return to the default style, type "stop adhd mode" or "normal mode" in chat.
View source on GitHub ↗License: MIT