ccc-adhd

ccc-adhd is a skill for Claude Code, Codex from KevinZai/commander. It costs 55 tokens per session (2,300 once invoked), scanned D, original, MIT.

An output mode that puts the answer first, followed by the reasoning and file details. It can be turned on, turned off, or checked for its current status, and can be combined with a shorter-output mode called caveman.

In plain words
What is it for?
Use it when you want coding answers to lead with the fix, command, or file location, especially while troubleshooting.
Why use it?
It makes the actionable fix easier to find when normal answers place too much explanation before the result.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/kevinzai/commander/ccc-adhd
Any agent
npx skills add KevinZai/commander --skill ccc-adhd
Clone the repo
git clone --depth 1 https://github.com/KevinZai/commander

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 ccc-adhd

README.md
[![agentmods](https://agentmods.dev/badge/skills/kevinzai/commander/ccc-adhd.svg)](https://agentmods.dev/skills/kevinzai/commander/ccc-adhd)
Your own site
<a href="https://agentmods.dev/skills/kevinzai/commander/ccc-adhd"><img src="https://agentmods.dev/badge/skills/kevinzai/commander/ccc-adhd.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,300 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 findings. Scan, not verified.
Origin original No closer match found 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 $0.00055 $0.02300
Opus 5 $0.00028 $0.01150
Sonnet 5 $0.00011 $0.00460
Haiku 4.5 $0.00006 $0.00230

Measured 4d ago against content hash 1bf08af4afee, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade D, and why

ccc-adhd scanned grade D with 2 findings 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 4d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

cat ~/.claude/commander/output-mode.json 2>/dev/null || echo '{}'

Recursive force deletehighDestructive command

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

- A destructive action is queued (force push, `rm -rf`, migration) → confirm before acting. Safety outranks brevity.
commander/cowork-plugin-codex/skills/ccc-adhd/SKILL.md · 146 lines

How it starts

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

$ccc-adhd — Answer-first output mode

Most output buries the fix under three paragraphs of throat-clearing. This mode inverts that: the answer leads, the reasoning follows, and it stops when the answer is done. Same information, reordered for a reader who wants to act, not read.

This reorders priority, not tokens — it is not a compression mode. It complements caveman (which cuts tokens) rather than replacing it; see "Stacking with caveman" below.

How it routes

Argument What happens
(none) Show current state (on/off, stacked with caveman or not), then offer the 4-option picker below
on Persist {"adhd": true} to ~/.claude/commander/output-mode.json, confirm in one line
off Persist {"adhd": false}, confirm in one line, return to normal shape immediately
status Read and report the current state — no picker, no mutation

The picker (no argument)

question: "Answer-first output mode?"
header: "CC Commander — $ccc-adhd"
multiSelect: false
options:
  - label: "⚡ Turn on"
    description: "Every response leads with the fix. Great for beginners — the answer is always the first line."
    preview: "Writes {\"adhd\": true} to ~/.claude/commander/output-mode.json"
  - label: "⚡ + 🗿 On, stacked with caveman"
    description: "Answer-first ordering AND ~75% fewer output tokens. Reorder + compress."
    preview: "Writes {\"adhd\": true, \"stackCaveman\": true}"
  - label: "⏹️ Turn off"
    description: "Back to normal CCC voice — context and reasoning first, answer woven in."
    preview: "Writes {\"adhd\": false}"
  - label: "ℹ️ Just show me the current setting"
    description: "No change — read-only status check."
    preview: "Reads ~/.claude/commander/output-mode.json, reports state"

The contract (what changes about every response)

While active, shape every response — not just this one — around these rules:

  1. Lead with the fix. First line is the command, the file:line, or the one-sentence answer. Not scene-setting, not "let's look at your code." If the reader read only line one, they'd know what to do.
  2. Number multi-step work. More than one step → a numbered list, one bounded action per step. Fold trivial steps into the one before rather than pad the count.
  3. End with one concrete next action. Something doable in under two minutes. "Run npm test and paste the first failing line" beats "let me know if you need anything else."
  4. Suppress tangents. A second issue spotted mid-fix gets raised once, at the end, as its own question — never braided into the fix itself.
  5. Restate state every turn. Multi-step work: say what step you're on ("3 of 5 done: schema updated. Next: backfill.") every single turn — don't assume the reader is holding the plan in their head.
  6. Give concrete time estimates. "About 15 minutes" beats "a bit of work." Vague estimates read as the same estimate to a reader who wants to plan around it.
  7. Make wins visible. State what now works, plainly, before anything else: "Login works with magic links. Try npm run dev."
  8. Errors get stated matter-of-factly. Cause, then fix. No "uh oh," no "there seems to be an issue."
  9. Cap lists at five. Past five, split into do-now vs. later, or must vs. nice-to-have.
  10. No preamble, no recap, no sign-off. No "Great question," no "I've now done X, Y, and Z," no "Hope this helps." Start with the answer, stop when it's done.

Read the full file on GitHub · 146 lines

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. 4d ago First seen · 146 lines · 55 tokens per session scan D 1bf08af4afee

Subscribe to this mod's changes

ccc-adhd is a skill published in the GitHub repository KevinZai/commander (6 stars, last pushed yesterday), licensed MIT. It adds 55 tokens to every session and 2,300 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it D with 2 findings (reads agent configuration directories, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.