Skip to main content
ADHD ships three ways: as an agent skill (works in Claude Code, Cursor, Antigravity, Codex, and ~50 more), as a CLI, and as a Node/TS library.

One command, every agent

The skills CLI detects which agent you are using and drops skills/adhd/SKILL.md into the right place. Supports Claude Code, Claude.ai, Antigravity, Cursor, Codex, Cline, Continue, Aider, Gemini CLI, Windsurf, Cody, Roo, Augment, OpenCode, Kilo, Kimi, Qwen, Trae, Replit, Warp, and ~40 more. Restart your agent. The skill auto-triggers on brainstorm, ideate, design, naming, refactor, and “give me a few ways to” intents. Or invoke it explicitly:
Useful flags:

Codex (OpenAI)

If the universal command auto-detects Codex correctly, you are done. Some Codex builds have stricter skill-discovery rules — force the target and install globally if you hit trouble:
Or install manually into Codex’s skills directory:
Restart Codex. Invoke with /adhd "your problem".
On description length: the ADHD SKILL.md ships with a single-line description (≤600 chars) specifically because some Codex builds truncate or fail on multi-line YAML block-scalar descriptions. The full pre-flight gate logic lives in the body of the skill rather than the frontmatter for this reason. If you ever author your own skill and Codex refuses to load it, this is the first thing to check.

Manual install (no npx)

The skill file is at skills/adhd/SKILL.md. Curl it into your agent’s skill directory:
Claude.ai web/desktop: open project settings → SkillsAdd skill → upload skills/adhd/SKILL.md. Cline, Continue, Aider, Roo Code, and other agents: paste the body of SKILL.md (skip the YAML frontmatter) into your agent’s system prompt or rules field.

Programmatic install (Agent SDK)

As a CLI (terminal usage, no agent needed)

Auth: picks up ANTHROPIC_API_KEY from the environment, or inherits auth from a local Claude Code install.

As a library (inside your own agent)

See the Library reference for the full API.

From source