3/30/2026 at 9:59:35 PM
I use claude code every day, I've written plugins and skills, use MCP servers, subagent workflows, and filled out the "Find your level" quiz as such.According to the quiz, I am a beginner!
by MeetingsBrowser
3/31/2026 at 5:13:47 AM
I was a bit confused by the quiz results as well. But it's just a bug :)Level ranges for the 10 questions (the score ranges are in the html): Beginner 0~3, Intermediate 4~7, Advanced 8~10
Makes sense. But:
- You get 0 points if you press A/B, 1 point if you press C, 2 points if you press D
- Scoring uses a fallback to Beginner level if your total score exceeds the expected max which is 10
`const t = Object.values(r).find(a => l >= a.min && l <= a.max) ?? r.beginner`
Pressed D 5x then A 5x, got Advanced
by ryanchoi
3/31/2026 at 5:47:13 AM
And you’ll never guess who wrote it…by te_chris
3/31/2026 at 2:45:42 AM
I think it’s just buggy, I had the same results despite of knowing every single question in depth other than building a plugin.by BloondAndDoom
3/30/2026 at 10:04:19 PM
Did anyone not get beginner?I got it as well.
by Esophagus4
3/30/2026 at 11:19:11 PM
I responded with a mix of mostly B and C answers and got “advanced.” Yet, as pointed out by another commenter, selecting all D answers (which would make you an expert!) gets you called a beginner.I can only assume the quiz itself was vibe-coded and not tested. What an incredible time we live in.
by Uncorrelated
3/31/2026 at 12:08:31 AM
Or that it's taking into account the Dunning-Kruger effect. In that, if you think you are an expert in all cases, you are really a beginner in everything.by taftster
3/30/2026 at 11:01:56 PM
I'm a beginner with agentic coding. I vibe code something most days, from a few lines up to refactors over a few files. I don't knowingly use skills, rarely _choose_ to call out to tools, haven't written any skills and only one or two ad hoc scripts, and have barely touched MCPs (because the few I've used seem flaky and erratic). I answered as such and got... intermediate.by the_other
3/31/2026 at 4:48:18 AM
Just ask it to fill it in for you.Master level.
by noosphr
3/31/2026 at 2:53:58 AM
A lot of these quizzes end up measuring whether you use the author's preferred workflow, not whether you're actually effective with the tool.Those aren't the same thing.
by annie511266728
3/31/2026 at 5:54:35 AM
Hey! Thanks for the feedback on the quiz and you're right, the scoring logic has a bug. Already on my fix list. But the quiz is just the entry point. The real value is the 11 interactive modules and terminal simulators where you practice actual Claude Code commands, config builders that generate real files, and quizzes that explain the "why" when you get it wrong.Would love to hear what you think of the actual modules.
by nagdy
3/31/2026 at 12:04:30 PM
If the entry point is obviously broken, most people won’t continue on to the “real value”, myself includedby MeetingsBrowser
3/31/2026 at 8:31:25 AM
There seems to be a particular way that people working with LLMs start speaking - its like utterly confident, leaving no room for self introspection, borderline arrogant, and almost always selling the last thing they output. Hmby taurath