quiz

quiz is a skill for Claude Code from kirilxd/claude-tutor. It costs 77 tokens per session (2,764 once invoked), scanned A, original, MIT.

An interactive quiz tool for testing knowledge on a chosen subject. It asks questions one at a time, gives feedback, adapts difficulty, and records results in a learning-progress file.

In plain words
What is it for?
Use it to generate practice questions, check understanding after a learning module, track scores, and support spaced review of weak topics.
Why use it?
It turns passive reading into practice and shows which areas need review. Saved scores and weak areas make later study more focused.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; names the AskUserQuestion tool.

Part of the claude-tutor plugin — 5 skills, 5 commands shipped together

Good fit Use it to generate practice questions, check understanding after a learning module, track scores, and support spaced review of weak topics.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kirilxd/claude-tutor/quiz
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kirilxd/claude-tutor --skill quiz
Clone the repo
git clone --depth 1 https://github.com/kirilxd/claude-tutor

Made for: Claude Code.

Or install claude-tutor, the plugin that ships this one along with the rest of its 5 skills, 5 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for quiz

README.md
[![agentmods](https://agentmods.dev/badge/skills/kirilxd/claude-tutor/quiz/github.svg)](https://agentmods.dev/skills/kirilxd/claude-tutor/quiz)
Your own site
<a href="https://agentmods.dev/skills/kirilxd/claude-tutor/quiz"><img src="https://agentmods.dev/badge/skills/kirilxd/claude-tutor/quiz/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for quiz

Your own site · 80×15
<a href="https://agentmods.dev/skills/kirilxd/claude-tutor/quiz"><img src="https://agentmods.dev/badge/skills/kirilxd/claude-tutor/quiz.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,764 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 25
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium Rogue Agent · line 125
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00077 $0.02764
Opus 5 $0.00039 $0.01382
Sonnet 5 $0.00015 $0.00553
Haiku 4.5 $0.00008 $0.00276

Measured 9d ago against content hash 10953e15dc3c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

quiz scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/quiz/SKILL.md · 233 lines

How it starts

The opening of the file, as written. The whole thing — 233 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Quiz — Interactive Knowledge Testing

ALWAYS use the AskUserQuestion tool when asking the user questions, in any context. If you have too many questions for the tool, split them up into multiple calls.

Generate and deliver mixed-format quiz questions based on the user's learning plan. Ask one question at a time, give immediate feedback, track scores, and adapt difficulty based on prior performance.

File Storage Rules — EXACT PATHS (no deviation)

Quiz progress is saved to ONE specific directory:

~/.claude/learning/progress/{topic-slug}.json

CORRECT path for quiz progress: ~/.claude/learning/progress/dns.json WRONG path for quiz progress: ~/.claude/learning/plans/dns-2026-03-29.json

CORRECT — saving any learning data: ~/.claude/learning/progress/dns.json WRONG — saving to project directory: ./learning/progress/dns.json

Always use the ABSOLUTE path ~/.claude/learning/ — never a relative path like ./learning/. Never write quiz data (quizzes, weakAreas, strongAreas, spacedRepetition, overallScore) to plan files. Never add extra fields beyond those defined in Step 6's schema. Verify the path contains /progress/ before writing.

Process

Step 1: Determine Topic & Module

If the user specified a topic (e.g., /quiz kubernetes):

  • Read ~/.claude/learning/index.json
  • Find matching topic (fuzzy match: "k8s" → "kubernetes", "Spanish" → "spanish-grammar")
  • If ambiguous, ask the user to clarify

If no topic specified (just /quiz):

  • Read index.json, find topic with most recent lastActivity
  • Confirm with user: "Quiz you on [topic]?"

If no learning plans exist:

  • Tell the user: "No learning plans found. Use /learn to create one first, or tell me a topic and I'll quiz you on general knowledge."
  • If user provides a topic without a plan, generate questions from Claude's knowledge (no plan file needed)

Module targeting:

  • If user says "test me on module 2" or "quiz me on deployments", target that specific module
  • Otherwise, quiz across all modules, weighting toward weak areas if prior quiz data exists

Read the full file on GitHub · 233 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 233 lines · 77 tokens per session scan A 10953e15dc3c

Subscribe to this mod's changes

quiz is a skill published in the GitHub repository kirilxd/claude-tutor (123 stars, last pushed 1mo ago), licensed MIT. It adds 77 tokens to every session and 2,764 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

tutor

Use when the user wants to learn, study, or understand a topic — triggered by requests to teach, tutor, explain concepts, quiz, drill, or build understanding of any subject.

JEFF7712/claude-tutor · 39 tokens

reading-metaskill

A reading and learning guide based on building a regular reading habit, choosing books, and understanding difficult subjects through original works and explanation.

kangarooking/cangjie-skill · 139 tokens

textbook-distillation

Turn a textbook or long-form source into a self-paced learning track: chapter map, lesson plan, then self-contained HTML lecture notes (styled as the human specifies) with worked examples, exercises, and checkpoint questions. Read this for "lecture notes" / "study notes" / "course" / "syllabus" requests from a…

Lingtai-AI/lingtai · 116 tokens

learning-and-development

Builds capability — skills gaps, career frameworks, training that transfers to the job, and internal mobility. Use this to design a career ladder, close a capability gap, decide whether to build or hire a skill, structure onboarding into a role, or work out why training keeps failing to change anything.

cbrock84/headcount · 64 tokens

learning-notes-automation

A workflow for turning videos, podcasts, and articles into structured learning notes. It extracts key ideas and creates flashcards that can be imported into Anki, a spaced-repetition study app.

chubbyguan/chubbyskills · 58 tokens

diagnose

A short question-based assessment of a pilot's current skill level. It produces a profile and saves it in the connected browser or database.

TserenTserenov/FMT-exocortex-template · 130 tokens