omergulcicek.com: Skill for Claude Code

.agents/skills/i-have-adhd/SKILL.md

i-have-adhd is a skill for Claude Code, Codex from omergulcicek/omergulcicek.com. It costs 62 tokens per session (1,692 once invoked), scanned C, a copy of i-have-adhd, MIT.

Instructions that shape an agent’s responses for a reader with ADHD by emphasizing the next action, numbered steps, visible progress, and specific time estimates.

In plain words
What is it for?
Use them to make coding tasks and explanations more actionable, focused, and easy to resume.
Why use it?
They reduce the effort needed to start and continue work when long, vague, or scattered instructions are difficult to follow.

Skill for Claude CodeCodex

Written for Claude Code and Codex: disable-model-invocation in frontmatter, but also agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is omergulcicek/omergulcicek.com's own configuration. It tells Claude Code and Codex how to work on omergulcicek.com itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything omergulcicek.com configures →

Reuse

Borrowing it

Nothing to install: this file belongs to omergulcicek/omergulcicek.com. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/omergulcicek/omergulcicek.com/main/.agents/skills/i-have-adhd/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/omergulcicek/omergulcicek.com

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for i-have-adhd

README.md
[![agentmods](https://agentmods.dev/badge/skills/omergulcicek/omergulcicek.com/i-have-adhd/github.svg)](https://agentmods.dev/skills/omergulcicek/omergulcicek.com/i-have-adhd)
Your own site
<a href="https://agentmods.dev/skills/omergulcicek/omergulcicek.com/i-have-adhd"><img src="https://agentmods.dev/badge/skills/omergulcicek/omergulcicek.com/i-have-adhd/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for i-have-adhd

Your own site · 80×15
<a href="https://agentmods.dev/skills/omergulcicek/omergulcicek.com/i-have-adhd"><img src="https://agentmods.dev/badge/skills/omergulcicek/omergulcicek.com/i-have-adhd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,692 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 97% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00062 $0.01692
Opus 5 $0.00031 $0.00846
Sonnet 5 $0.00012 $0.00338
Haiku 4.5 $0.00006 $0.00169

Measured 10d ago against content hash cae8c0639772, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade C, and why

i-have-adhd scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

2. Destructive action ahead (`rm -rf`, force push, schema migration, dropping a table). Confirm before acting. Safety wins over brevity.
Origin

This is a copy

97% identical to i-have-adhd — 12 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/i-have-adhd/SKILL.md · 143 lines

How it starts

The opening of the file, as written. The whole thing — 143 lines — stays where its author put it; the contents beside it link to each section on GitHub.

i-have-adhd

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

Persistence

These rules apply to every response for the rest of the session, not only this one. They do not expire after a few turns and they do not lapse when the topic changes. If you are unsure whether they still apply, they do.

Turn them off only when the reader says "stop adhd mode" or "normal mode". Confirm in one line, then return to your default style.

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.

Use the fewest steps that still work. Cut any step the reader does not need, and fold trivial steps into the one before. A short path finished beats a complete path abandoned.

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

Read the full file on GitHub · 143 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 143 lines · 62 tokens per session scan C cae8c0639772

Subscribe to this mod's changes

i-have-adhd is a skill published in the GitHub repository omergulcicek/omergulcicek.com (15 stars, last pushed 16d ago), licensed MIT. It adds 62 tokens to every session and 1,692 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). It is 97% identical to i-have-adhd, differing in 12 lines, and is treated as a copy.

Related

Other skills, from other repositories

setup-slack-channel

Use for the PROVIDER half of getting a locally running CopilotKit Channels agent to answer in Slack, when no Slack app exists yet — setting up a Channels bot in Slack for the first time, creating the Slack app and its tokens, attaching it to a managed Intelligence Channel, or when a Channel reports setuprequired, sits…

CopilotKit/CopilotKit · 206 tokens

copilotkit-channels

Use for the CODE half of a managed Intelligence Channel with Slack or Microsoft Teams: customising the Channel a CLI-scaffolded project already ships, or — for a project the CLI did not generate — writing the Channel declaration, the long-running host, and the awaited activation call. Teams provider setup is in scope…

CopilotKit/CopilotKit · 112 tokens

channels-setup

Use when a developer wants to build their first CopilotKit Channels agent and get it answering in Slack or Microsoft Teams — "set up a channel", "connect my agent to Slack", "get my agent into Teams", or starting from nothing and wanting a working channel end to end. Covers the whole path: inspecting or scaffolding…

CopilotKit/CopilotKit · 147 tokens

orbit-notion

Open Orbit briefing skill — selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and…

nexu-io/open-design · 117 tokens

Cortex

Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…

danielmiessler/LifeOS · 196 tokens

pinchtab-mcp

Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.

pinchtab/pinchtab · 52 tokens