Agent skill
radiology-image-quiz
Use when creating radiology educational quizzes, preparing board exam questions, or studying medical imaging cases. Generates interactive quizzes with X-ray, CT, MRI, and ultrasound images for medical education.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/radiology-image-quiz
Metadata
Additional technical details for this skill
- version
- 1.0
- skill author
- AIPOCH
SKILL.md
Radiology Image Quiz Generator
Create educational quizzes using radiology images (X-ray, CT, MRI, ultrasound) for medical students, residents, and board exam preparation.
Quick Start
from scripts.radiology_quiz import RadiologyQuiz
quiz = RadiologyQuiz()
# Generate quiz
questions = quiz.generate(
modality="chest_xray",
difficulty="intermediate",
topic="pulmonary_pathology",
num_questions=10
)
Core Capabilities
1. Quiz Generation
quiz = quiz.create(
images=["case1.png", "case2.png"],
question_type="multiple_choice",
include_findings=True,
include_differential=True
)
Question Types:
- Multiple choice (single best answer)
- Select all that apply
- Fill in the blank
- Open-ended interpretation
2. Case Creation
case = quiz.create_case(
image_path="ct_scan.png",
diagnosis="Pulmonary embolism",
findings=["Filling defect in pulmonary artery", "Right heart strain"],
clinical_history="Sudden onset dyspnea"
)
3. Difficulty Calibration
quiz = quiz.set_difficulty(
level="resident", # medical_student, resident, fellow, attending
include_rare_findings=False
)
CLI Usage
python scripts/radiology_quiz.py \
--modality ct \
--topic emergency \
--num 20 \
--output quiz.pdf
Skill ID: 212 | Version: 1.0 | License: MIT
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?