Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

quizquiz 问题管理

Agent Skill

quiz 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

454

周安装

17

GitHub Stars

33

下载量

140
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:quiz(quiz 问题管理)
来源仓库:https://github.com/mblode/agent-skills
仓库路径:skills/quiz
安装命令:
npx skills add https://github.com/mblode/agent-skills --skill quiz
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mblode/agent-skills --skill quiz

简介

quiz 用于查找、检索和筛选相关信息,支持关键词定位。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要快速定位候选结果时使用。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的 skill。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • quiz 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Quiz

Generate interactive quizzes about the current codebase to test understanding.

Reference Files

FileRead When
references/question-templates.mdDefault: question types by difficulty with concrete examples
references/difficulty-calibration.mdApplying difficulty and quantity settings, exploration depth, question stems
references/scoring-and-output.mdStep 5: scoring rubric, result formatting, final output template

Configuration

Collect from the user (ask only what was not provided):

Number of Cards

OptionCardsBest for
Fewer5Quick check, focused review
Standard10Balanced coverage
More15Deep dive, comprehensive review

Default: Standard (10)

Difficulty

LevelFormatQuestion style
EasyMultiple choiceWhat does X do? Where is Y defined?
MediumMultiple choice + explanationHow does X interact with Y? What pattern is used for Z?
HardOpen-ended + explanationWhat would break if X changed? How would you refactor Y?

Default: Medium

Workflow

Copy this checklist to track progress:

Quiz progress:
- [ ] Step 1: Gather configuration
- [ ] Step 2: Explore the codebase
- [ ] Step 3: Generate questions
- [ ] Step 4: Present quiz interactively
- [ ] Step 5: Score and summarize

Step 1: Gather configuration

Ask the user for card count and difficulty. Use defaults if not specified. Accept informal phrasing ("give me a hard quiz", "just 5 questions").

If the user provides both values upfront, skip straight to Step 2.

Step 2: Explore the codebase

Systematically scan the project to build a question pool:

  • Read the project structure (directories, key files, entry points)
  • Identify the primary language(s), framework(s), and tooling
  • Read key files: configuration, entry points, core modules, tests
  • Map dependencies and module boundaries
  • Note patterns: naming conventions, architecture style, error handling
  • Find non-obvious details: edge cases, workarounds, gotchas

Load references/difficulty-calibration.md for exploration depth and question strategy per level.

Step 3: Generate questions

Using references/question-templates.md, generate the configured number of questions at the selected difficulty. Apply calibration from references/difficulty-calibration.md.

Each question must:

  • Reference real code from the current codebase (file paths, function names, patterns)
  • Have one clear correct answer
  • Be answerable from the codebase alone (no external knowledge required)
  • Cover different parts of the codebase (avoid clustering)

For multiple-choice questions, provide 4 options (A, B, C, D) with plausible distractors drawn from real names in the project.

For medium and hard questions, prepare a brief explanation to show after the user answers.

Check every question against the quality checklist below. Remove or rewrite any that fail.

Step 4: Present quiz interactively

Present one question at a time. For each question:

  1. Show the question number and total as a header (e.g., "Question 3/10")
  2. For multiple choice (easy/medium): use AskUserQuestion with the question text and 4 options so the user can select an answer interactively
  3. For open-ended (hard): show the question text and wait for a free-text response
  4. After the user responds, show whether the answer was correct
  5. Show the explanation with file:line references (medium and hard only)
  6. Proceed to the next question

Step 5: Score and summarize

Load references/scoring-and-output.md for the result template.

After all questions are answered, present the final scorecard with score, rating, breakdown by area, and recommended next steps.

Quality Checklist

Every question must pass all of these:

  • Codebase-grounded — References a real file path, function, or pattern from the current project
  • Single focus — Tests one concept. If you need "and" to describe it, split it.
  • Unambiguous — Has exactly one correct answer. No trick questions.
  • Self-contained — Answerable from the codebase alone, no external knowledge required
  • Plausible distractors — Multiple-choice options use real names from the project, not random strings
  • Spread coverage — Questions cover different files and areas, no clustering
  • Difficulty-matched — Matches the cognitive level of the selected difficulty
  • No generated files — Never asks about lock files, node_modules, or build output
  • Explanation ready — Medium and hard questions have a prepared explanation with file:line references

Anti-patterns

  • Do not ask questions about external libraries or frameworks (only the project's own code)
  • Do not ask questions that require running the code to answer
  • Do not reveal all questions at once (present one at a time, wait for response)
  • Do not skip the explanation on wrong answers (the quiz is for learning)
  • Do not ask trick questions or ambiguous questions with multiple valid answers
  • Do not repeat questions about the same file or function
  • Do not generate questions before exploring the codebase (Step 2 must complete first)

Related Skills

  • plan-feature for understanding codebase architecture before quizzing
  • review-pr for code review exercises on recent changes

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

31.36%
按下载量换算44

Claude

31.19%
按下载量换算44

Cursor

20%
按下载量换算28

Gemini CLI

9.54%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills