Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Generate 50-question interactive quizzes using the Quiz component with randomized batching. Use when creating end-of-chapter assessments. Displays 15-20 questions per session with immediate feedback. NOT for static markdown quizzes.
.claude/skills/aiskillstore-quiz-generator/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | 64% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 15% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 156% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 454% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 379% | 0% |
bash# 1. Generate 50 questions for chapter # Focus on conceptual (75%+ Apply level), not recall # 2. Redistribute answers evenly python scripts/redistribute_answers_v2.py quiz.md A # 3. Validate option lengths (±3 words per question) # Manually count words for ALL 50 questions
You generate college-level conceptual quizzes that test understanding, not memorization. Your goal is 50 comprehensive questions covering all chapter concepts with immediate feedback per answer.
yamlquestion_count: 50 # Comprehensive bank questions_per_batch: 15-20 # Displayed per session options_per_question: 4 # Always exactly 4 correct_answer_distribution: ~12-13 per index (0-3) feedback_timing: immediate # After each answer passing_score: NONE # No threshold file_naming: ##_chapter_##_quiz.md
| Type | Example | Valid? | |------|---------|--------| | Recall | "What is a Python list?" | ❌ | | Conceptual | "Which operation reveals a mutability issue?" | ✅ |
Target: 75%+ at Apply level or higher
| Options | Words | Valid? | |---------|-------|--------| | A: "Yes" / B: "It processes async" | 2 vs 4 | ✅ | | A: "Yes" / B: "The framework processes requests asynchronously" | 2 vs 6 | ❌ |
Rule: ALL options within ±3 words to prevent pattern-guessing
| Index | Count | Valid? | |-------|-------|--------| | 0 | 12-13 | ✅ | | 1 | 12-13 | ✅ | | 2 | 12-13 | ✅ | | 3 | 12-13 | ✅ |
Rule: No 3+ consecutive same index, no obvious patterns
Show after EACH answer (not at end):
Every explanation must cover:
javascriptsource: "Lesson 1: Understanding Mutability"
Links each question to specific lesson for review.
markdown--- sidebar_position: 5 title: "Chapter X: [Topic] Quiz" --- # Chapter X Quiz Brief intro (1-2 sentences). <Quiz title="Chapter X Assessment" questions={[ { question: "Conceptual question here?", options: [ "Option A (4-6 words)", "Option B (4-6 words)", "Option C (4-6 words) ← CORRECT", "Option D (4-6 words)" ], correctOption: 2, // Index 0-3, NOT 1-4! explanation: "Why C is correct (2-3 sentences). Why A is wrong (1-2 sentences). Why B is wrong. Why D is wrong. Real-world connection.", source: "Lesson 1: Topic Title" }, // ... 49 more questions (total: 50) ]} questionsPerBatch={18} />
LLMs struggle with even distribution. Use the script after generation:
bashpython scripts/redistribute_answers_v2.py quiz.md A
Sequences A-H provide different distributions (~12-13 per index).
What it does:
Problem: Unequal lengths let students guess by picking longest/shortest.
Solution: Manually count words for EVERY option in EVERY question.
✅ PASS: 4, 5, 4, 5 words (all within ±3)
❌ FAIL: 2, 4, 11, 3 words (2 to 11 = 9-word spread)Also verify:
| Pitfall | Wrong | Right | |---------|-------|-------| | Question count | <50 questions | Exactly 50 | | Index values | correctOption: 4 | correctOption: 3 (0-3) | | Missing source | No source field | source: "Lesson N: Title" | | Passing score | passingScore={70} | No prop (removed) | | Recall questions | "What is X?" | "Which reveals X issue?" | | Weak explanations | Only explains correct | Addresses all 4 options | | Answer patterns | 0,1,2,3,0,1,2,3... | Random, ~12-13 per index | | Option lengths | 2 vs 11 words | All within ±3 words |
Pattern: ##_chapter_##_quiz.md
| Chapter | Lessons | Filename | |---------|---------|----------| | 2 | 4 | 05_chapter_02_quiz.md | | 5 | 6 | 07_chapter_05_quiz.md | | 14 | 5 | 06_chapter_14_quiz.md |
Content:
Distribution:
Option Lengths:
Explanations:
Format:
source field on all 50passingScore proppython scripts/redistribute_answers_v2.py quiz.md A| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 35,125 | 36,894 | +5% | 1 | 1 | 0% | 6,236 | 8,005 | +28% | 0 | 0 | — |
case-02 | fail→fail | 35,630 | 37,354 | +5% | 1 | 1 | 0% | 6,216 | 7,985 | +28% | 0 | 0 | — |
case-03 | fail→fail | 23,352 | 35,002 | +50% | 1 | 1 | 0% | 4,082 | 7,989 | +96% | 0 | 0 | — |
case-04 | pass→pass | 11,452 | 10,393 | -9% | 1 | 1 | 0% | 1,619 | 3,340 | +106% | 0 | 0 | — |
case-05 | pass→pass | 7,396 | 5,299 | -28% | 1 | 1 | 0% | 1,097 | 2,610 | +138% | 0 | 0 | — |
case-06 | pass→pass | 6,067 | 10,425 | +72% | 1 | 1 | 0% | 1,192 | 3,764 | +216% | 0 | 0 | — |
case-07 | fail→pass | 7,530 | 2,631 | -65% | 1 | 1 | 0% | 1,342 | 2,204 | +64% | 0 | 0 | — |
case-08 | fail→pass | 11,147 | 2,578 | -77% | 1 | 1 | 0% | 1,930 | 2,216 | +15% | 0 | 0 | — |
case-09 | fail→pass | 15,055 | 41,280 | +174% | 1 | 1 | 0% | 3,104 | 7,940 | +156% | 0 | 0 | — |
case-10 | fail→pass | 3,984 | 11,965 | +200% | 1 | 1 | 0% | 667 | 3,696 | +454% | 0 | 0 | — |
case-11 | fail→pass | 4,229 | 7,611 | +80% | 1 | 1 | 0% | 629 | 3,010 | +379% | 0 | 0 | — |
case-12 | pass→pass | 9,098 | 7,758 | -15% | 1 | 1 | 0% | 1,630 | 3,267 | +100% | 0 | 0 | — |
case-13 | pass→pass | 13,188 | 9,576 | -27% | 1 | 1 | 0% | 2,175 | 3,442 | +58% | 0 | 0 | — |
case-14 | fail→pass | 7,691 | 1,561 | -80% | 1 | 1 | 0% | 1,121 | 2,016 | +80% | 0 | 0 | — |
case-15 | fail→pass | 4,804 | 5,165 | +8% | 1 | 1 | 0% | 768 | 2,572 | +235% | 0 | 0 | — |
case-16 | fail→fail | 10,719 | 39,267 | +266% | 1 | 1 | 0% | 1,824 | 7,937 | +335% | 0 | 0 | — |
case-17 | pass→pass | 12,342 | 12,798 | +4% | 1 | 1 | 0% | 1,893 | 4,190 | +121% | 0 | 0 | — |
case-18 | fail→pass | 5,727 | 16,214 | +183% | 1 | 1 | 0% | 1,047 | 4,609 | +340% | 0 | 0 | — |
case-19 | fail→pass | 9,775 | 8,740 | -11% | 1 | 1 | 0% | 1,537 | 3,314 | +116% | 0 | 0 | — |
case-20 | pass→pass | 7,400 | 3,306 | -55% | 1 | 1 | 0% | 1,204 | 2,317 | +92% | 0 | 0 | — |
case-21 | pass→pass | 11,037 | 4,987 | -55% | 1 | 1 | 0% | 1,753 | 2,512 | +43% | 0 | 0 | — |
case-22 | fail→pass | 12,588 | 7,483 | -41% | 1 | 1 | 0% | 1,901 | 3,028 | +59% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +45 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.