name: 'multimodal-medical-imaging'
description: 'Analyzes medical images (X-ray, MRI, CT) using multimodal LLMs to identify anomalies and generate reports.'
measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes.
allowed-tools:
- read_file
- run_shell_command
Multimodal Medical Imaging Analysis
The Multimodal Medical Imaging Analysis Skill leverages state-of-the-art Vision-Language Models (VLMs) like Gemini 1.5 Pro and GPT-4o to interpret medical imagery alongside clinical text.
When to Use This Skill
When you need a preliminary screening of medical images.
When correlating visual findings with textual clinical notes.
To generate structured reports (DICOM-SR-like) from raw images.
Core Capabilities
Anomaly Detection: Identify potential pathologies in X-rays, CTs, etc.
Report Generation: Draft radiology reports in standard formats.
VQA (Visual Question Answering): Answer specific questions about an image (e.g., "Is there a fracture in the left femur?").
Workflow
Input: Provide an image file path (JPG, PNG) and a specific clinical question or "generate report" instruction.
Analyze: The agent sends the image and prompt to the VLM.
Output: Returns a JSON object with findings, confidence scores, and reasoning.
Example Usage
User: "Analyze this chest X-ray for pneumonia."
Agent Action:
python3 Skills/Clinical/Medical_Imaging/Multimodal_Analysis/multimodal_agent.py \
--image "/path/to/cxr.jpg" \
--prompt "Check for signs of pneumonia and consolidation."
1---2name: multimodal-medical-imaging3description: <!--4---5<!--6# COPYRIGHT NOTICE7# This file is part of the "Universal Biomedical Skills" project.8# Copyright (c) 2026 MD BABU MIA, PhD <md.babu.mia@mssm.edu>9# All Rights Reserved.10#11# This code is proprietary and confidential.12# Unauthorized copying of this file, via any medium is strictly prohibited.13#14# Provenance: Authenticated by MD BABU MIA1516-->1718---19name: 'multimodal-medical-imaging'20description: 'Analyzes medical images (X-ray, MRI, CT) using multimodal LLMs to identify anomalies and generate reports.'21measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes.22allowed-tools:23 - read_file24 - run_shell_command25---262728# Multimodal Medical Imaging Analysis2930The **Multimodal Medical Imaging Analysis Skill** leverages state-of-the-art Vision-Language Models (VLMs) like Gemini 1.5 Pro and GPT-4o to interpret medical imagery alongside clinical text.3132## When to Use This Skill3334* When you need a preliminary screening of medical images.35* When correlating visual findings with textual clinical notes.36* To generate structured reports (DICOM-SR-like) from raw images.3738## Core Capabilities39401. **Anomaly Detection**: Identify potential pathologies in X-rays, CTs, etc.412. **Report Generation**: Draft radiology reports in standard formats.423. **VQA (Visual Question Answering)**: Answer specific questions about an image (e.g., "Is there a fracture in the left femur?").4344## Workflow45461. **Input**: Provide an image file path (JPG, PNG) and a specific clinical question or "generate report" instruction.472. **Analyze**: The agent sends the image and prompt to the VLM.483. **Output**: Returns a JSON object with findings, confidence scores, and reasoning.4950## Example Usage5152**User**: "Analyze this chest X-ray for pneumonia."5354**Agent Action**:55```bash56python3 Skills/Clinical/Medical_Imaging/Multimodal_Analysis/multimodal_agent.py \57 --image "/path/to/cxr.jpg" \58 --prompt "Check for signs of pneumonia and consolidation."59```60616263<!-- AUTHOR_SIGNATURE: 9a7f3c2e-MD-BABU-MIA-2026-MSSM-SECURE -->
Run npx skillmds@latest add biotender-max/multimodal-medical-imaging in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
<!-- It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
BioTender-max (@biotender-max) published this skill. Their other Agent Skills are listed on their SkillMD profile.