Awesome-omni-skill generate_quiz_batch
Generates batches of high quality quizzes in JSON format for the BlindsidedGames pool, categorised and rated by difficulty.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/design/generate_quiz_batch" ~/.claude/skills/diegosouzapw-awesome-omni-skill-generate-quiz-batch && rm -rf "$T"
manifest:
skills/design/generate_quiz_batch/SKILL.mdsource content
Generate Quiz Batch Skill
Use this skill to generate specific numbers of quiz files for the BlindsidedGames quiz pool.
Requirements
When the user asks you to generate quizzes, they will specify a topic/category, a difficulty level (Easy, Medium, Hard), and the configurable number of quizzes they want to generate in a batch (e.g., "generate 5 distinct Easy History quizzes").
For EACH quiz requested in the batch (repeat this process N times):
- Generate exactly 10 questions on the requested category at the requested difficulty. Ensure they are unique compared to other quizzes in the batch.
- The 10 questions MUST follow this exact distribution:
- 1
questionmultiple-choice - 2
questionstrue-false - 7
questionsself-eval
- 1
- Ensure the quality of the questions is appropriate for the target audience. CRITICAL: Do not include the answer (or obvious parts of the answer) within the wording of the question itself (e.g., asking "What insects build anthills?" when the answer is "Ants").
- Output the quiz as a JSON file saved in
. The filename format should bequizzes/
(e.g.[category]_[difficulty]_[xx].json
).biology_hard_01.json
JSON Schema Example
{ "id": "biology_hard_01", "title": "Hard Biology Quiz 1", "sections": [ { "title": "Biology", "items": [ { "type": "multiple-choice", "q": "What is the powerhouse of the cell?", "options": ["Nucleus", "Ribosome", "Mitochondria", "Lysosome"], "a": "Mitochondria", "explanation": "Mitochondria generate most of the chemical energy needed to power the cell's biochemical reactions." }, { "type": "true-false", "q": "All mammals give birth to live young.", "options": ["True", "False"], "a": "False", "explanation": "Monotremes like the platypus are mammals that lay eggs." }, { "type": "self-eval", "q": "Describe the process of photosynthesis.", "a": "Photosynthesis is the process by which plants convert light energy into chemical energy, using water and carbon dioxide to create oxygen and energy in the form of sugar.", "explanation": "This requires chlorophyll and sunlight." } // ... 7 more items to total 10 ] } ] }
Post-Generation Steps
After writing the quiz JSON files, you MUST update
quizzes/manifest.json.
- Parse the existing
.quizzes/manifest.json - Append each new quiz you generated into the
array with this format:quizzes
{ "id": "biology_hard_01", "category": "Biology", "difficulty": "Hard", "file": "biology_hard_01.json" }
- Save the updated
.manifest.json