skills/quiz/SKILL.md
Generates multiple choice quiz questions based on current conversation context. Use when testing understanding, reviewing what was discussed, or wanting a knowledge check on the session.
npx skillsauth add antoniocascais/claude-code-toolkit quizInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate multiple choice questions testing understanding of the current conversation.
Analyze the conversation context for quizzable content:
Generate 3-10 questions with 4 options each (default 5, or as many as the user/arguments request)
Question Quality Guidelines
Write questions to file and launch external quiz runner:
date +%s via Bash/tmp/quiz_questions_$TIMESTAMP.json using the format belowpython3 ~/.claude/skills/quiz/quiz.py /tmp/quiz_questions_$TIMESTAMP.json/tmp/quiz_results_$TIMESTAMP.json (same timestamp, auto-derived from questions filename)/tmp/quiz_results_$TIMESTAMP.json[
{
"question": "What network mode allows containers to share the host's network namespace?",
"options": [
{"label": "bridge", "correct": false, "description": "Bridge creates an isolated network — containers get their own namespace"},
{"label": "host", "correct": true, "description": "Host mode removes network isolation — container shares the host's network stack"},
{"label": "overlay", "correct": false, "description": "Overlay enables multi-host networking, but still uses separate namespaces"},
{"label": "macvlan", "correct": false, "description": "Macvlan assigns a MAC address to the container — separate namespace with direct network access"}
]
}
]
"correct": truedescription field is NOT shown during the quiz — only used for post-quiz feedbacktools
Reviews Claude Code sessions and proposes workflow improvements. Use when: (1) /workflow-review command, (2) "review my workflow", "how can I improve", (3) after long sessions when nudged, (4) start of session with pending review. Analyzes tool usage patterns, CLAUDE.md configuration, and compares against CC best practices. Proposes: CLAUDE.md updates, new skills, underused CC features. Saves session summaries to .claude/workflow-reviews/ for cross-session continuity.
devops
Activates voice conversation mode using Pocket TTS Docker container. Use when user says "voice mode", "let's talk", "talk to me", "speak your responses", or wants Claude to respond with spoken audio. Speaks all responses through TTS and plays via speakers.
testing
Guides strong, effective unit test generation using proven testing techniques. Use when writing unit tests, reviewing test quality, improving existing tests, generating test cases, checking test coverage strength, or when tests exist but may be weak. Triggers on: unit test, test quality, test coverage, write tests, improve tests, review tests, test strength, mutation testing, boundary testing.
development
Creates new Claude Code skills with proper structure and best practices. Use when user wants to create a skill, update an existing skill, add a new command, scaffold a workflow, define skill hooks, or asks "how do I make a skill".