Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

quiz-creator测验创建者

Agent Skill

quiz-creator 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,016

周安装

84

GitHub Stars

公开资料未说明

下载量

672
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:quiz-creator(测验创建者)
来源仓库:https://github.com/ahmed181283/quiz-creator
安装命令:
openclaw skills install quiz-creator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install quiz-creator

简介

quiz-creator 可根据任意主题自动生成测验,支持多题型与难度分级。

  • 适用于教师备课、培训考核与自我测试内容生成。
  • 输出包含答案解析,便于即时反馈与学习巩固。
  • 依赖输入材料质量,复杂主题需人工校验题目准确性。
  • 大规模题库建议导出后二次编辑优化。quiz-creator 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
quiz-generator
description
Generate quizzes and assessments from any topic or content. Create questions of varying difficulty (easy, medium, hard), multiple formats (multiple choice, true/false, fill-in-blank), with answers and detailed explanations. Use when the user asks to create a quiz, test knowledge, generate questions, or build assessments.

Quiz Generator

Overview

Generate comprehensive quizzes from topics, documents, or learning materials. Include questions of varying difficulty, different question formats, correct answers, and detailed explanations to reinforce learning.

Quiz Structure

Required Elements

  1. Quiz Title and Description

- Clear, descriptive title - Topic focus - Target audience level - Estimated completion time - Question count

  1. Questions

Each question must include: - Question text - Question difficulty (easy/medium/hard) - Question type (see formats below) - Correct answer(s) - Detailed explanation - Optional: reference to source material

  1. Answer Key

- Quick reference for all correct answers - Usually at the end of the quiz

  1. Scoring Guide (optional)

- How many points per question - What score indicates mastery - Recommended follow-up based on score ranges

Question Formats

Multiple Choice (default)

  • 3-5 answer options (1 correct, others plausible distractors)
  • Label options A, B, C, D, E
  • Distractors should be common misconceptions

True/False

  • Statement to evaluate
  • Explanation for why it's true or false

Fill-in-the-Blank

  • Sentence or statement with blank(s)
  • Case-insensitive matching preferred
  • List acceptable alternative answers

Short Answer

  • Open-ended question
  • Provide example acceptable answers
  • Explain key points that should be included

Matching

  • Two columns to match (terms to definitions, dates to events, etc.)
  • Indicate the relationship clearly

Difficulty Guidelines

Easy

  • Basic facts, definitions, terminology
  • Direct recall from source material
  • Should be answerable after one pass through material
  • Example: "What does API stand for?"

Medium

  • Requires understanding concepts, not just facts
  • Inference or application of knowledge
  • May require connecting multiple pieces of information
  • Example: "Which HTTP method would you use to update an existing resource?"

Hard

  • Requires synthesis, analysis, or critical thinking
  • Complex scenarios or edge cases
  • Comparison or evaluation of options
  • Example: "Compare REST and GraphQL architectures for a real-time chat application."

Writing Guidelines

Question Quality

  • Ensure each question tests something meaningful
  • Avoid ambiguous phrasing
  • Make questions independent (don require previous answers)
  • Balance question types and difficulty levels
  • Include 10-20 questions for a comprehensive quiz

Explanations

  • Explain not just the correct answer, but why alternatives are wrong
  • Reference the source material when applicable
  • Add additional context or related concepts
  • Help the learner understand, not just memorize

Distractor Generation

  • Create plausible wrong answers
  • Use common misconceptions or errors
  • Avoid "all of the above" or "none of the above" (become guesswork)
  • Keep distractors similar in length and tone to correct answer

Example Question

### Question 3 (Medium)
What is the primary purpose of environment variables in application configuration?

A) To store sensitive credentials securely
B) To configure application behavior across environments
C) To manage database connections
D) To handle user authentication

**Correct Answer:** B

**Explanation:** Environment variables allow applications to be configured differently across development, testing, and production environments without changing code. While they can store credentials (A), their primary purpose is configuration flexibility. Database connections (C) and authentication (D) are specific use cases, not the primary purpose.

Generation Workflow

  1. Understand the Source

- Read the topic or provided material - Identify key concepts, facts, and relationships - Note common pitfalls or misconceptions

  1. Plan Question Distribution

- Target: 40% easy, 40% medium, 20% hard - Mix question types based on content - Ensure coverage of all key topics

  1. Generate Questions

- Draft questions with answers and explanations - Review for clarity and accuracy - Check that explanations actually explain

  1. Review and Refine

- Remove redundant or overlapping questions - Ensure difficulty is consistent - Verify all answers are correct - Add a practice question or bonus if appropriate

Output Format

Deliver the quiz in the user's preferred format:

  • Markdown (default) - with sections clearly marked
  • JSON - for programmatic use or quiz platforms
  • Plain text - for simple assessments

JSON Format Example

{
  "title": "Web Development Fundamentals Quiz",
  "description": "Test your knowledge of HTML, CSS, and JavaScript basics",
  "questions": [
    {
      "id": 1,
      "difficulty": "easy",
      "type": "multiple_choice",
      "question": "What does HTML stand for?",
      "options": [
        "Hyper Text Markup Language",
        "High Tech Modern Language",
        "Hyper Transfer Markup Language",
        "Home Tool Markup Language"
      ],
      "correct_answer": 0,
      "explanation": "HTML stands for Hyper Text Markup Language. It's the standard markup language for creating web pages."
    }
  ],
  "answer_key": {
    "1": "A"
  }
}

Quality Checklist

Before finalizing a quiz, verify:

  • [ ] All questions are clear and unambiguous
  • [ ] Correct answers are accurate
  • [ ] Explanations are helpful and educational
  • [ ] Difficulty levels are appropriate for audience
  • [ ] Question types are varied
  • [ ] Key topics from source are covered
  • [ ] Distractors are plausible but clearly wrong
  • [ ] Quiz title and description are informative
  • [ ] Answer key is complete and accurate

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

77.74%
按下载量换算522

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills