---
name: seo-audit-images
description: Machine-verified image alt text audit. Scans every page for images with missing or empty alt attributes. Outputs CSV with per-page and per-image data.
disable-model-invocation: true
allowed-tools: Bash
argument-hint: "[domain] [sitemap-url] [output-dir]"
---

# SEO Audit: Image Alt Text Check

Run the Python image scanner on every page in the sitemap.

```bash
python3 ${CLAUDE_SKILL_DIR}/scripts/images.py $ARGUMENTS
```

This produces:
- `{domain}_images.csv` — Every image on every page with its alt text status (good/empty/missing)
- `{domain}_images_summary.csv` — Per-page summary with counts and percentages
- `{domain}_images_stats.json` — Overall statistics

After completion, report:
1. Total images vs images with missing/empty alt
2. Pages with the worst alt text coverage
3. Patterns (e.g., product images missing alt, slider images missing alt)
