qa-detect-images

Detect missing alt text, broken images, and visual distortion in rendered images.

Updated May 22, 2026
One-click install
npx skills add https://github.com/Luqman-Ud-Din/blackbox-qa-agent --skill qa-detect-images
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: qa-detect-images
Source: https://github.com/Luqman-Ud-Din/blackbox-qa-agent/tree/main/skills/qa-detect-images
Command: npx skills add https://github.com/Luqman-Ud-Din/blackbox-qa-agent --skill qa-detect-images

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps QA teams find image-related accessibility and layout defects that are easy to miss in manual review, such as missing alt text, broken assets, stretched photos, and hero images that render poorly across screens.

Core Features & Use Cases

  • Accessibility checks: Detects missing alt text and decorative icons that should use empty alt or aria-hidden to avoid screen reader noise.
  • Visual quality checks: Flags broken images, oversized downloads rendered at tiny sizes, and aspect-ratio distortion that makes images look stretched.
  • Hero/banner validation: Identifies large visual sections and banner images that need background-size: cover or object-fit: cover to prevent letterboxing and distortion.
  • Use case: Run it during responsive QA on a marketing page to quickly catch image regressions across mobile, tablet, laptop, and desktop layouts.

Quick Start

Ask the agent to scan the current page or app for image accessibility and visual defects and report any missing alt text, broken images, stretched renders, or hero images that need cover styling.

Frequently Asked Questions about qa-detect-images

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect missing alt text and broken images during responsive web testing?

To detect missing alt text and broken images, inspect the rendered DOM to evaluate image elements, natural dimensions, and computed styles. This process separates real defects from hidden or decorative assets during viewport-driven QA scenarios.

What is the best way to check hero banner images for visual distortion across different viewports?

The best way to check hero banner images for visual distortion is to validate large visual sections by verifying if they require background-size: cover or object-fit: cover styling. This prevents letterboxing and stretching across mobile, tablet, and desktop layouts.

How do I differentiate decorative icons from content images in automated accessibility checks?

Differentiate decorative icons from content images by applying DOM inspection and visibility checks to evaluate computed styles. Decorative icons should use empty alt or aria-hidden to avoid screen reader noise, whereas content images require descriptive alt text.

Does visual regression testing catch oversized image downloads rendered at tiny sizes?

Yes, visual regression testing catches oversized image downloads by inspecting natural dimensions against computed styles. This flags visual quality issues where large assets are rendered at tiny sizes, ensuring optimized asset delivery.

Can I scan a web page for image accessibility defects without manually checking every screen reader output?

Yes, you can scan a web page for image accessibility defects automatically by inspecting DOM elements and computed styles. This identifies missing alt text and incorrectly labeled decorative elements, bypassing manual screen reader verification.