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

lesson-quiz课堂测验

Agent Skill

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

总安装

599

周安装

24

GitHub Stars

30,425

下载量

194
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/luongnv89/claude-howto --skill lesson-quiz

简介

lesson-quiz 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否触发联网或文件操作。
  • 建议结合原始 README 和仓库内容核验具体用法和功能边界。

SKILL.md

Lesson Quiz

Interactive quiz that tests understanding of a specific Claude Code lesson with 8-10 questions, provides per-question feedback, and identifies areas to review.

Instructions

Step 1: Determine the Lesson

If the user provided a lesson as an argument (e.g., /lesson-quiz hooks or /lesson-quiz 03), map it to the lesson directory:

Lesson mapping:

  • 01, slash-commands, commands → 01-slash-commands
  • 02, memory → 02-memory
  • 03, skills → 03-skills
  • 04, subagents, agents → 04-subagents
  • 05, mcp → 05-mcp
  • 06, hooks → 06-hooks
  • 07, plugins → 07-plugins
  • 08, checkpoints, checkpoint → 08-checkpoints
  • 09, advanced, advanced-features → 09-advanced-features
  • 10, cli → 10-cli

If no argument was provided, present a selection prompt using AskUserQuestion:

Question 1 (header: "Lesson"): "Which lesson do you want to quiz on?" Options:

  1. "Slash Commands (01)" — Custom commands, skills, frontmatter, arguments
  2. "Memory (02)" — CLAUDE.md, memory hierarchy, rules, auto memory
  3. "Skills (03)" — Progressive disclosure, auto-invocation, SKILL.md
  4. "Subagents (04)" — Task delegation, agent config, isolation

Question 2 (header: "Lesson"): "Which lesson do you want to quiz on? (continued)" Options:

  1. "MCP (05)" — External integration, transport, servers, tool search
  2. "Hooks (06)" — Event automation, PreToolUse, exit codes, JSON I/O
  3. "Plugins (07)" — Bundled solutions, marketplace, plugin.json
  4. "More lessons..." — Checkpoints, Advanced Features, CLI

If "More lessons..." is selected, present:

Question 3 (header: "Lesson"): "Select your lesson:" Options:

  1. "Checkpoints (08)" — Rewind, restore, safe experimentation
  2. "Advanced Features (09)" — Planning, permissions, print mode, thinking
  3. "CLI Reference (10)" — Flags, output formats, scripting, piping

Step 2: Read the Lesson Content

Read the lesson README.md file to refresh context:

  • Read file: <lesson-directory>/README.md

Then use the question bank from references/question-bank.md for that lesson. The question bank provides 10 pre-written questions per lesson with correct answers and explanations.

Step 3: Present the Quiz

Ask the user about quiz timing context:

Use AskUserQuestion (header: "Timing"): "When are you taking this quiz relative to the lesson?" Options:

  1. "Before (pre-test)" — I haven't read the lesson yet, testing my prior knowledge
  2. "During (progress check)" — I'm partway through the lesson
  3. "After (mastery check)" — I've completed the lesson and want to verify understanding

This context affects how the results are framed (see Step 5).

Step 4: Present Questions in Rounds

Present 10 questions from the question bank in rounds of 2 questions each (5 rounds total). Each question uses AskUserQuestion with the question text and 3-4 answer options.

IMPORTANT: Use AskUserQuestion with max 4 options per question, 2 questions per round.

For each round, present 2 questions. After all 5 rounds, proceed to scoring.

Question format per round:

Each question from the question bank has:

  • question: The question text
  • options: 3-4 answer choices (one correct, labeled in the bank)
  • correct: The correct answer label
  • explanation: Why the answer is correct
  • category: "conceptual" or "practical"

Present each question using AskUserQuestion. Record the user's answer for each.

Step 5: Score and Present Results

After all rounds, calculate the score and present results.

Scoring:

  • Each correct answer = 1 point
  • Total possible = 10 points

Grade scale:

  • 9-10: Mastered — Excellent understanding
  • 7-8: Proficient — Good grasp, minor gaps
  • 5-6: Developing — Fundamentals understood, needs review
  • 3-4: Beginning — Significant gaps, review recommended
  • 0-2: Not yet — Start from the beginning of this lesson

Output format:

## Lesson Quiz Results: [Lesson Name]

**Score: N/10** — [Grade label]
**Quiz timing**: [Before / During / After] the lesson
**Question breakdown**: N conceptual correct, N practical correct

### Per-Question Results

| # | Category | Question (short) | Your Answer | Result |
|---|----------|-----------------|-------------|--------|
| 1 | Conceptual | [abbreviated question] | [their answer] | [Correct / Incorrect] |
| 2 | Practical | ... | ... | ... |
| ... | ... | ... | ... | ... |

### Incorrect Answers — Review These

[For each incorrect answer, show:]

**Q[N]: [Full question text]**
- Your answer: [what they chose]
- Correct answer: [correct option]
- Explanation: [why it's correct]
- Review: [specific section of the lesson README to re-read]

### [Timing-specific message]

[If pre-test]:
**Pre-test score: N/10.** This gives you a baseline! Focus your study on the topics you missed. After completing the lesson, retake the quiz to measure your improvement.

[If during]:
**Progress check: N/10.** [If 7+: Great progress — keep going! If 4-6: Review the incorrect topics before continuing. If <4: Consider re-reading from the beginning.]

[If after]:
**Mastery check: N/10.** [If 9-10: You've mastered this lesson! Move on to the next. If 7-8: Almost there — review the missed topics and retake. If <7: Spend more time with the lesson, especially the sections marked above.]

### Recommended Next Steps

[Based on score and timing:]
- [If mastered]: Proceed to the next lesson in the roadmap: [next lesson link]
- [If proficient]: Review these specific sections, then retake: [list sections]
- [If developing or below]: Re-read the full lesson: [lesson link]. Focus on: [list weak categories]
- [Offer]: "Would you like to retake this quiz, try a different lesson, or get help with a specific topic?"

Step 6: Offer Follow-up

After presenting results, use AskUserQuestion:

"What would you like to do next?" Options:

  1. "Retake this quiz" — Try the same lesson quiz again
  2. "Quiz another lesson" — Switch to a different lesson
  3. "Explain a topic I missed" — Get a detailed explanation of an incorrect answer
  4. "Done" — End the quiz session

If Retake: Go back to Step 4 (skip timing question, use same timing). If Quiz another lesson: Go back to Step 1. If Explain a topic: Ask which question number, then read the relevant section from the lesson README.md and explain it with examples.

Error Handling

Invalid lesson argument

If the argument doesn't match any lesson, show the valid lesson list and ask the user to pick one.

User wants to quit mid-quiz

If the user indicates they want to stop during any round, present partial results for questions answered so far.

Lesson README not found

If the README.md file doesn't exist at the expected path, inform the user and suggest checking the repository structure.

Validation

Triggering test suite

Should trigger:

  • "quiz me on hooks"
  • "lesson quiz"
  • "test my knowledge of lesson 3"
  • "practice quiz for MCP"
  • "do I understand skills"
  • "quiz me on slash commands"
  • "lesson-quiz 06"
  • "test me on checkpoints"
  • "how well do I know the CLI"
  • "quiz me before I start the memory lesson"

Should NOT trigger:

  • "assess my overall level" (use /self-assessment)
  • "explain hooks to me"
  • "create a hook"
  • "what is MCP"
  • "review my code"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.85%
按下载量换算66

Claude

27.17%
按下载量换算53

Cursor

20.4%
按下载量换算40

Gemini CLI

9.45%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills