L5/custom_skills/generating-practice-questions/SKILL.md
Generate educational practice questions from lecture notes to test student understanding. Use when users request practice questions, exam preparation materials, study guides, or assessment items based on lecture content.
npx skillsauth add https-deeplearning-ai/sc-agent-skills-files generating-practice-questionsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate comprehensive practice questions from lecture notes to test student understanding of learning objectives and key concepts.
Supported formats: LaTeX (.tex), PDF, Markdown (.md), plain text (.txt)
PDF: Use pdfplumber for text extraction
LaTeX: Read as text, strip preamble (everything before \begin{document}), preserve math environments ($...$, \[...\], \begin{equation}, etc.)
Markdown/Text
Content to extract:
Generate questions in this order:
For each question type, follow guidelines below, and never include answer key.
Test factual understanding and common misconceptions.
Coverage:
Difficulty progression:
Quality criteria:
Examples:
Test deeper understanding by requiring students to articulate concepts, compare approaches, and explain reasoning.
Topic selection:
Question formulations:
Quality criteria:
Examples:
Test practical implementation through code.
Scope:
Required structure:
Language:
Test ability to apply concepts or algorithms explained in lecture notes to realistic scenarios.
Components:
Data generation: If needed, provide simple, clear code to generate appropriate data.
Output format depends on user request (LaTeX, PDF, Markdown, plain text).
General structure for all formats:
For specific formats: For LaTeX and Markdown document structures, use the following templates (in assets/ folder):
questions_template.tex - Complete LaTeX document structure with formattingmarkdown_template.md - Complete Markdown document structureReferences (in references/ folder):
examples_by_topic.md - Domain-specific question examples for ML topics (algorithms, preprocessing, evaluation, etc.)tools
Create learning paths for programming tools, and define what information should be researched to create learning guides. Use when user asks to learn, understand, or get started with any programming tool, library, or framework.
tools
Provides checklist for reviewing Typer CLI command implementations. Covers structure, Annotated syntax, error handling, exit codes, display module usage, destructive action patterns, and help text conventions. Use when user asks to review/check/verify a CLI command, wants feedback on implementation, or asks if a command follows best practices.
tools
Generate pytest tests for Typer CLI commands. Includes fixtures (temp_storage, sample_data), CliRunner patterns, confirmation handling (y/n/--force), and edge case coverage. Use when user asks to "write tests for", "test my CLI", "add test coverage", or any CLI + test request.
tools
Provides Typer templates, handles registration, and ensures consistency. ALWAYS use this skill when adding or modifying CLI commands. Use when user requests to add/create/implement/build/write a new command (e.g., "add edit command", "create search feature") OR update/modify/change/edit an existing command.