Build with Claude Code without your brain going numb. No-Numb quizzes you on the code Claude just wrote — and, by default, blocks the session from continuing until you pass. The middle ground: built fast like an agent, understood like you wrote it yourself.
FAQ
no-numb is a Claude Code plugin with 1 hand-picked skill for development work, indexed on Flowy. Install it with the command on its page. It includes quiz-me. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
> /plugin marketplace add Ciucky/no-numb> /plugin install no-numb@no-numb
Build with Claude Code without your brain going numb. No-Numb quizzes you on the code Claude just wrote — and, by default, blocks the session from continuing until you pass.
The middle ground: built fast like an agent, understood like you wrote it yourself.

When you build with an AI agent you operate at high altitude — you set the goal, the agent makes the thousand low-level decisions. You ship working software you can describe at a high level, but if someone asked you to explain the internals, the data flow, or why a particular approach was chosen, you couldn't. The learning that used to be a side effect of writing code is now optional, and the path of least resistance skips it.
The names for this are dry but real: cognitive offloading, automation complacency, skill atrophy. We just call the feeling numb.
No-Numb makes the good habit — actually understanding what got built — the default path instead of the disciplined-person path. A skill can be ignored; a hook enforces. And being tested is itself one of the most reliable ways to make knowledge stick (the testing effect), so the friction isn't a tax on the feature — the friction is the feature.
Stop hook intercepts and has Claude generate a short comprehension quiz about what it just did this turn — drawn from its own context, not generic trivia.AskUserQuestion UI).Pure conversation turns (no file edits) are never quizzed. Genuinely cosmetic changes (a rename, a color tweak, a typo) are skipped by Claude's judgment.
Miss a question and it shows the correct answer and explains why — that explanation is the part that makes the understanding stick:

That's the entire config surface — two keys in ~/.no-numb/config.json:
{
"enabled": true,
"depth": "standard"
}
enabled — true (default) or false. true is the forcing function; false does nothing. If you install a tool whose whole purpose is the forcing function, you want it on — so it defaults on. (The file is optional; with no file at all, the defaults apply.)
depth — "standard" (default) or "deep". One black-and-white test decides which a question is:
Do you need to read the code to answer it? Yes → deep. No → standard.
standard — questions you can answer from understanding the decisions (why this breaks, why this approach, what the failure mode is), without opening a file.deep — questions you can only answer by going and reading the code (it tells you where to look). More granular, but still reasoning over rote recall.Neither level tests "what does this app do" — that's the high-level understanding you don't lose. Both aim below the awareness line, at the part that vaporizes.
The same kind of change, quizzed at deep — now you have to open the file and read it to answer:

Want a quiz without the gate? Run /no-numb:quiz-me any time for a voluntary self-check.
Prerequisites: Claude Code with plugin support, and jq on your PATH (the hook uses it).
/plugin marketplace add Ciucky/no-numb
/plugin install no-numb@no-numb
Or, to try it locally from a clone:
/plugin marketplace add /path/to/no-numb
/plugin install no-numb@no-numb
No-Numb creates ~/.no-numb/config.json with these defaults on first run, so there's always a file to edit. Change "enabled" to false to pause it, or "depth" to "deep" for harder questions. It lives in your home directory (not the plugin folder) so your settings survive plugin updates, and an existing file is never overwritten.
enabled: false switch is your affordability valve for deadline days; /no-numb:quiz-me is the on-demand alternative.hooks/gate.sh) and a skill. Read the source before you install — it's short, and reviewing plugins before trusting them is the right habit.MIT.
.claude-plugin/
marketplace.json
plugin.json
.gitignore
assets/
quiz-deep.png
quiz-explanation.png
quiz-standard.png
hooks/
gate.sh
hooks.json
README.md
skills/
quiz-me/
SKILL.md© 2026 Flowy · Free and open source
Built for Claude Code · Not affiliated with Anthropic