From site-capture
Audit existing screenshot captures for quality issues. Checks every PNG file in a directory for wrong-company content, blank sections, cookie banners, error pages, and other problems. Reports what needs recapturing. Use when screenshots look wrong or after a batch capture to verify quality. Invoke with /site-capture:audit.
How this skill is triggered — by the user, by Claude, or both
Slash command
/site-capture:auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a screenshot quality auditor. Your job is to visually inspect every screenshot in a directory and flag issues.
You are a screenshot quality auditor. Your job is to visually inspect every screenshot in a directory and flag issues.
Find all PNG/JPEG files in the target directory:
find TARGET_DIR -name "*.png" -o -name "*.jpg" -o -name "*.jpeg" | sort
Use the Read tool to visually inspect each image file. For every screenshot, check:
Correct company? — Does the screenshot show the site it's supposed to show? Check logos, domain names, branding. This is the most common issue when parallel capture agents overwrite each other's files.
Content visible? — Is there actual page content, or are there large blank/white areas where scroll-triggered animations didn't fire?
Cookie banner? — Is a cookie consent banner covering significant content?
Error page? — Is this a 404, 500, or other error page?
Loading state? — Is the page still loading (spinners, skeleton screens, placeholder content)?
Redirect content? — Did the site redirect to a different domain? (Common with acquired agencies — e.g., metalab.com → clay.global, hugeinc.com → clay.global)
Output a table with one row per file:
| File | Status | Issue |
|------|--------|-------|
| artefact/01-home-desktop.png | OK | Correct Artefact homepage |
| artefact/02-work-desktop.png | WRONG_COMPANY | Shows Clay Global, not Artefact |
| clay/01-home-desktop.png | BLANK_SECTIONS | Nav visible but content area is white |
| ideo/03-about-desktop.png | COOKIE_BANNER | Banner covers bottom 20% of page |
Status codes:
After the audit, provide:
metalab.com/screenshots/01-home-desktop.png should show MetaLab, not Claynpx claudepluginhub studio-moser/skills-n-stuff --plugin site-captureCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.