Install
openclaw skills install @ahmed181283/quiz-creatorGenerate 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.
openclaw skills install @ahmed181283/quiz-creatorGenerate 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 Title and Description
Questions Each question must include:
Answer Key
Scoring Guide (optional)
### 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.
Understand the Source
Plan Question Distribution
Generate Questions
Review and Refine
Deliver the quiz in the user's preferred format:
{
"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"
}
}
Before finalizing a quiz, verify: