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.
Create educational quizzes using radiology images (X-ray, CT, MRI, ultrasound) for medical students, residents, and board exam preparation.
scripts/main.py.references/Python: 3.10+. Repository baseline for current packaged skills.Third-party packages: not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.cd "20260318/scientific-skills/Academic Writing/radiology-image-quiz"
python -m py_compile scripts/main.py
python scripts/main.py --help
Example run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/main.py with the validated inputs.See ## Workflow above for related details.
scripts/main.py.references/ contains supporting rules, prompts, or checklists.Use this command to verify that the packaged script entry point can be parsed before deeper execution.
python -m py_compile scripts/main.py
Use these concrete commands for validation. They are intentionally self-contained and avoid placeholder paths.
python -m py_compile scripts/main.py
python scripts/main.py --help
from scripts.radiology_quiz import RadiologyQuiz
quiz = RadiologyQuiz()
# Generate quiz
questions = quiz.generate(
modality="chest_xray",
difficulty="intermediate",
topic="pulmonary_pathology",
num_questions=10
)
quiz = quiz.create(
images=["case1.png", "case2.png"],
question_type="multiple_choice",
include_findings=True,
include_differential=True
)
Question Types:
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"
)
quiz = quiz.set_difficulty(
level="resident", # medical_student, resident, fellow, attending
include_rare_findings=False
)
python scripts/radiology_quiz.py \
--modality ct \
--topic emergency \
--num 20 \
--output quiz.pdf
Skill ID: 212 | Version: 1.0 | License: MIT
Every final response should make these items explicit when they are relevant:
scripts/main.py fails, report the failure point, summarize what still can be completed safely, and provide a manual fallback.This skill accepts requests that match the documented purpose of radiology-image-quiz and include enough context to complete the workflow safely.
Do not continue the workflow when the request is out of scope, missing a critical input, or would require unsupported assumptions. Instead respond:
radiology-image-quizonly handles its documented workflow. Please provide the missing required inputs or switch to a more suitable skill.
Use the following fixed structure for non-trivial requests:
If the request is simple, you may compress the structure, but still keep assumptions and limits explicit when they affect correctness.