self-assessment
Comprehensive Claude Code self-assessment and learning path advisor. Runs a multi-category quiz covering 10 feature areas, produces a detailed skill profile…
Test a learner on a single Claude Code tutorial lesson (01-10) with 10 questions, scoring answers and flagging weak spots. Use before, during, or after a lesson. Don't use for whole-tutorial assessment or explaining a topic instead of testing it.
$ npx -y skills add luongnv89/claude-howto --skill lesson-quiz --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/lesson-quizContext preview
The summary Claude sees to decide when to auto-load this skill.
Test a learner on a single Claude Code tutorial lesson (01-10) with 10 questions, scoring answers and flagging weak spots. Use before, during, or after a lesson. Don't use for whole-tutorial assessment or explaining a topic instead of testing it.
name: lesson-quiz description: "Test a learner on a single Claude Code tutorial lesson (01-10) with 10 questions, scoring answers and flagging weak spots. Use before, during, or after a lesson. Don't use for whole-tutorial assessment or explaining a topic instead of testing it." effort: high metadata: version: 1.3.0 author: Luong NGUYEN
Interactive quiz that tests understanding of a specific Claude Code lesson with 8-10 questions, provides per-question feedback, and identifies areas to review.
This skill requires:
Before starting, confirm the target lesson's `README.md` exists. If it is missing, do not fabricate questions — warn the user and ask them to check the repository structure (see Error Handling).
**Guardrails:**
If the user provided a lesson as an argument (e.g., `/lesson-quiz hooks` or `/lesson-quiz 03`), map it to the lesson directory:
**Lesson mapping:**
If no argument was provided, present a selection prompt using AskUserQuestion:
**Question 1** (header: "Lesson"): "Which lesson do you want to quiz on?" Options: 1. "Slash Commands (01)" — Custom commands, skills, frontmatter, arguments 2. "Memory (02)" — CLAUDE.md, memory hierarchy, rules, auto memory 3. "Skills (03)" — Progressive disclosure, auto-invocation, SKILL.md 4. "Subagents (04)" — Task delegation, agent config, isolation
**Question 2** (header: "Lesson"): "Which lesson do you want to quiz on? (continued)" Options: 1. "MCP (05)" — External integration, transport, servers, tool search 2. "Hooks (06)" — Event automation, PreToolUse, exit codes, JSON I/O 3. "Plugins (07)" — Bundled solutions, marketplace, plugin.json 4. "More lessons..." — Checkpoints, Advanced Features, CLI
If "More lessons..." is selected, present:
**Question 3** (header: "Lesson"): "Select your lesson:" Options: 1. "Checkpoints (08)" — Rewind, restore, safe experimentation 2. "Advanced Features (09)" — Planning, permissions, print mode, thinking 3. "CLI Reference (10)" — Flags, output formats, scripting, piping
Read the lesson README.md file to refresh context:
Then use the question bank from `references/question-bank.md` for that lesson (10 pre-written questions with answers and explanations). To stay within the context budget, read only the one selected lesson's README — not all ten.
Ask the user about quiz timing context:
Use AskUserQuestion (header: "Timing"): "When are you taking this quiz relative to the lesson?" Options: 1. "Before (pre-test)" — I haven't read the lesson yet, testing my prior knowledge 2. "During (progress check)" — I'm partway through the lesson 3. "After (mastery check)" — I've completed the lesson and want to verify understanding
This context affects how the results are framed (see Step 5).
Present 10 questions from the question bank in rounds of 2 questions each (5 rounds total). Each question uses AskUserQuestion with the question text and 3-4 answer options.
**IMPORTANT**: Use AskUserQuestion with max 4 options per question, 2 questions per round.
For each round, present 2 questions. After the user answers each round, immediately show per-question feedback: whether each answer was correct or incorrect, and if incorrect, show the correct answer and a brief explanation. Then proceed to the next round. After all 5 rounds, proceed to final scoring.
**Question format per round:**
Each question from the question bank has:
**CRITICAL — Shuffle answer options**: For each question, you MUST randomize the order of the answer options before presenting them via AskUserQuestion. Do NOT present them in the order they appear in the question bank (A, B, C, D), and do NOT place the correct answer first. Use a different random permutation for each question. Track which shuffled position contains the correct answer so you can score accurately.
Example: If the question bank lists options A (correct), B, C, D — you might present them as: C, A, D, B. The correct answer is now in position 2.
Present each question using AskUserQuestion. Record the user's answer for each.
After all rounds, calculate the score and present results.
**Scoring:**
**Grade scale:**
Go from typing claude to orchestrating agents, hooks, skills, and MCP servers — with visual tutorials, copy-paste templates, and a guided learning path. Get Started in 15 Minutes | Find Your Level | Browse the Feature Catalog
Repo: luongnv89/claude-howto
Comprehensive Claude Code self-assessment and learning path advisor. Runs a multi-category quiz covering 10 feature areas, produces a detailed skill profile…