Radiology Image Quiz

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This appears to be a simple local radiology quiz generator, with no evidence of malicious behavior, but its documentation and package metadata have some low-risk inconsistencies.

This skill looks safe for local educational quiz generation. Before using it, verify the package source if provenance matters, run only the included scripts/main.py workflow, and provide de-identified case data rather than real patient information.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If the selected case file contains patient identifiers or other sensitive details, those details could appear in the quiz output.

Why it was flagged

The script reads a local file path supplied at runtime and includes the loaded case data in generated quiz output.

Skill content
parser.add_argument("--cases", "-c", help="JSON file with cases") ... with open(args.cases) as f:
            cases = json.load(f)
Recommendation

Confirm the exact JSON input file before running and use de-identified educational case data.

What this means

Some documented commands may fail or prompt a user or agent to look for code that is not included in the reviewed package.

Why it was flagged

The documentation references a radiology_quiz module/script that is not present in the provided file manifest, which only includes scripts/main.py as code.

Skill content
from scripts.radiology_quiz import RadiologyQuiz ... python scripts/radiology_quiz.py
Recommendation

Use only the reviewed scripts/main.py entry point unless the missing file is supplied and reviewed separately.