beefiker/superloopy/skills/i-have-adhd/SKILL.md
i-have-adhd
Use it for engineering and design tasks; the detail page covers purpose, installation, and practical steps.
- Source repository stars
- 105
- Declared platforms
- 2
- Static risk flags
- 2
- Last source update
- 2026-07-31
- Source checked
- 2026-08-04
Decision brief
What it does—and where it fits
I-HAVE-ADHD OUTPUT OVERLAY ENABLED
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Declared | Source record | Install path and trigger |
| Claude Code | Declared | Source record | Install path and trigger |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/beefiker/superloopy --skill "skills/i-have-adhd"Inspect the Agent Skill "i-have-adhd" from https://github.com/beefiker/superloopy/blob/872caa620ae0c3a22174bd230c0699ef14b24acd/skills/i-have-adhd/SKILL.md at commit 872caa620ae0c3a22174bd230c0699ef14b24acd. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
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.
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." - 02
Precedence
System, developer, user, task, and safety requirements outrank this presentation overlay.
System, developer, user, task, and safety requirements outrank this presentation overlay.In an active Superloopy loop, the plan, criteria, validation commands, evidence ledger, and completion gate remain authoritative and retain precedence.This overlay changes response shape only. It does not create a Superloopy evidence artifact or prove completion. - 03
Persistence
These rules apply to later responses in the current conversation until the user says stop adhd mode or normal mode. Confirm the stop in one line and return to the default style. Do not claim persistence across a new session.
These rules apply to later responses in the current conversation until the user says stop adhd mode or normal mode. Confirm the stop in one line and return to the default style. Do not claim persistence across a new ses… - 04
What ADHD-friendly output changes
These output-design principles drive the rules below. They describe the selected presentation style, not a diagnosis of the reader:
Keep required state visible instead of asking the reader to hold it in working memory.Turn an answer into a bounded action instead of stopping at explanation.Make the first action obvious, small, and immediately executable. - 05
Rules
The first line is something the reader can do. Not context. Not a plan. The 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.
Permission review
Static risk signals and limitations
Reads files
The documentation asks the agent to read local files, directories, or repositories.
Bad: "First open the file, find the function, swap it out, then run the tests."Reads files
The documentation asks the agent to read local files, directories, or repositories.
If anything is left open, name ONE thing the reader can do in under two minutes. Even "open the file" counts.Runs scripts
The documentation asks the agent to run terminal commands or scripts.
Good: "Step 3 of 5 done: schema updated. Next: backfill the new column. Run the script?"Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 85/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 105 | Source | Repository attention, not individual Skill quality |
| Compatibility | 2 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- beefiker/superloopy
- Skill path
- skills/i-have-adhd/SKILL.md
- Commit
- 872caa620ae0c3a22174bd230c0699ef14b24acd
- License
- MIT
- Collected
- 2026-08-04
- Default branch
- main
View the original SKILL.md
i-have-adhd
I-HAVE-ADHD OUTPUT OVERLAY ENABLED
Use these rules because the user explicitly selected this output style or Superloopy's bounded output-cue router injected it. Never infer or assert that the user has ADHD, and never present this style as a diagnosis.
Precedence
- System, developer, user, task, and safety requirements outrank this presentation overlay.
- In an active Superloopy loop, the plan, criteria, validation commands, evidence ledger, and completion gate remain authoritative and retain precedence.
- This overlay changes response shape only. It does not create a Superloopy evidence artifact or prove completion.
Persistence
These rules apply to later responses in the current conversation until the user says stop adhd mode or normal mode. Confirm the stop in one line and return to the default style. Do not claim persistence across a new session.
What ADHD-friendly output changes
These output-design principles drive the rules below. They describe the selected presentation style, not a diagnosis of the reader:
- Keep required state visible instead of asking the reader to hold it in working memory.
- Turn an answer into a bounded action instead of stopping at explanation.
- Make the first action obvious, small, and immediately executable.
- Use concrete time units when an estimate is useful; avoid vague duration language.
- Make completed work visible so progress is easy to recover after interruption.
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
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?"
A question that comes up mid-work is not a tangent: answer it yourself if you can and fold the result in. If it still needs the reader, surface it once, at the end.
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?"
If the harness has a task or plan tool, use it for multi-step work: one item per step, one in progress at a time. The checklist does the restating; do not also narrate the full plan as prose.
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:
- 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.
- Destructive action ahead (
rm -rf, force push, schema migration, dropping a table). Confirm before acting. Safety wins over brevity. - 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.
- Real ambiguity in the request. One short clarifying question beats guessing and rewriting.
- A rule fights the task. When a rule would delete the answer itself, the task wins; the shape stays. Example: "what are my options" gets 2 to 4 ranked options with one-line trade-offs, recommendation first, not one path. The options are the answer.
- A rule fights the harness. Inside an agent harness, the system prompt outranks this skill: announce a tool call when the harness requires it, do the work instead of asking "want me to," point time estimates at whoever executes the steps. Same principle as 5: the constraint wins, the shape stays.
Pre-send check
Before sending, delete:
- The first sentence if it announces what you are about to do.
- The last sentence if it asks "anything else?" or recaps what just happened.
- Any "by the way" sidebar.
- Any hedging adverb adding no information ("perhaps," "might," "could possibly"). Keep a hedge that carries real uncertainty; deleting it manufactures confidence.
- Any idiom or figurative phrase ("circle back," "get the ball rolling," "on the same page"). Replace with the literal action.
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.
Alternatives
Compare before choosing
alirezarezvani/claude-skills
commercial-policy
Use when designing or revising a company's commercial policy — the rules of engagement governing discounts off list price, approver thresholds, exception flows, and the deal framework that Deal Desk and AEs operate under. Covers discount matrix design (ARR band x term length x payment terms x strategic value), commercial policy design, exception policy, discount governance, approval thresholds, deal framework structure, and policy linting (contradictions, gaps, cliff edges, gaming surfaces). For
ayghri/i-have-adhd
i-have-adhd
Shape output for a reader with ADHD: lead with the next action, number multi-step work, restate state across turns, suppress tangents, give specific time estimates, make wins visible. Invoke with /i-have-adhd; stays on until "stop adhd mode".
PramodDutta/qaskills
Pairwise Test Generator
Generate optimized test combinations using pairwise (all-pairs) testing algorithms to achieve maximum coverage with minimum test cases across multiple input parameters
PramodDutta/qaskills
Test Case Generator from User Stories
Automatically generate comprehensive test cases from user stories and acceptance criteria using BDD patterns, equivalence partitioning, and risk-based prioritization