Skip to content
Tech News
← Back to articles

I-have-ADHD: A skill to stop coding agents from burying the answer

read original get Keychron K2 Wireless Mechanical Keyboard → more articles
Why This Matters

A small open-source "skill" for coding assistants like Claude Code enforces 10 output rules \u2014 action first, numbered steps, no preamble or filler closers \u2014 turning verbose AI answers into terse, executable instructions. It highlights a growing frustration with LLM chattiness and shows how prompt-level plugins can reshape agent behavior without touching the model. The accessibility framing (ADHD-friendly, but useful to anyone) points to output style as a real usability layer in dev tooling.

Key Takeaways
Worth a Look

Keychron K2 Wireless Mechanical Keyboard — If you're living in the terminal wrangling coding agents into giving straight answers, a compact mechanical board makes the loop feel snappier. The Keychron K2 pairs over Bluetooth or USB-C and works with Mac, Windows and Linux, so it fits whatever machine your CLI lives on. Tactile switches and a tenkeyless-ish 75% layout keep your hands close to the keys and your focus on the numbered steps.

See Keychron K2 Wireless Mechanical Keyboard on Amazon → Affiliate link — we may earn a commission on purchases, at no extra cost to you. Product picked by AI based on this article; it is not a tested recommendation.

ADHD-friendly outputs. No ADHD diagnosis needed!

🇬🇧 · 🇨🇳 · 🇧🇷 · 🇯🇵 · 🇻🇳 · 🇰🇷 · 🇹🇭

Install

Copy/paste into your CLI prompt:

Install the i-have-adhd skill/plugin from https://github.com/ayghri/i-have-adhd, refer to the repo's AGENTS.md for instructions.

Or 🔗 check the installation instructions.

What it does

A skill for your coding assistant that stops it from burying the answer. Action first. Steps numbered. No "Hope this helps!"

What changes

Before Great question! Let me think about this. Your auth flow has a few moving pieces: the middleware, the token verification, and the cookie handling. Looking at src/auth.ts , the verifyToken function (around lines 42-58) seems to be using an older jsonwebtoken API. One approach would be to update the package and rewrite that function. After making the change, you'd want to run the auth tests to confirm nothing breaks. By the way, you might also want to look at your dependency versions overall. Hope this helps! Let me know if you want to dig deeper. After Run npm install jsonwebtoken@latest , then edit src/auth.ts:42 . Open src/auth.ts Replace verifyToken (lines 42–58) with the snippet below Run npm test -- auth.spec.ts Next: paste the first failing line if any test fails.

... continue reading