
Seo Visual
- 32 installs
- 548 repo stars
- Updated July 20, 2026
- agricidaniel/codex-seo
seo-visual is a Claude Code skill that captures screenshots and checks above-the-fold and mobile rendering signals for SEO audits.
About
seo-visual is a Claude Code skill that handles the visual sub-track of a full SEO audit. It captures multi-viewport screenshots, evaluates above-the-fold signals like H1 and CTA visibility, and checks mobile rendering basics such as viewport, horizontal scroll, touch-target sizing, and minimum font size. A developer uses it to assess how a page renders and reads visually as part of a larger SEO review.
- Captures screenshots and evaluates above-the-fold SEO signals
- Checks mobile viewport, horizontal scroll, touch targets, and font size
- Runs as the visual sub-track of a full SEO audit
Seo Visual by the numbers
- 32 all-time installs (skills.sh)
- Ranked #1,397 of 1,879 Marketing & SEO skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
seo-visual capabilities & compatibility
- Capabilities
- seo audit · visual audit · mobile audit · screenshot capture
- Works with
- playwright
- Use cases
- seo
- Pricing
- Free
What seo-visual says it does
Visual specialist for full audits. Captures screenshots, evaluates above-the-fold signals, and checks mobile rendering basics.
H1 and CTA visibility above the fold
`screenshots/` (if Playwright available)
npx skills add https://github.com/agricidaniel/codex-seo --skill seo-visualAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 32 |
|---|---|
| repo stars | ★ 548 |
| Last updated | July 20, 2026 |
| Repository | agricidaniel/codex-seo ↗ |
What it does
Capture screenshots and check above-the-fold and mobile rendering signals as the visual part of an SEO audit.
Who is it for?
Evaluating above-the-fold and mobile rendering as part of a full SEO audit
Skip if: Standalone use outside a full audit or non-SEO visual design work
When should I use this skill?
running the visual sub-track of a full SEO audit
What you get
A VISUAL-AUDIT-REPORT.md with above-the-fold and mobile findings plus multi-viewport screenshots.
- VISUAL-AUDIT-REPORT.md
- SUMMARY.json
- screenshots
By the numbers
- Outputs VISUAL-AUDIT-REPORT.md, SUMMARY.json, and a screenshots folder
Files
Visual Specialist
Use this for the visual sub-track in full audits.
Shared Data Cache
Step 0 -- Check shared data cache:
Before gathering, check .seo-cache/ for cached data from other skills. Reference: ../seo/references/shared-data-cache.md for schemas and dependency map.
This specialist does not require upstream cache inputs before running fresh visual checks.
- If found: no prerequisite cache is needed; continue with current visual capture workflow
- If missing: proceed normally and gather fresh visual data
- If JSON is corrupt or unreadable: treat it as missing and continue normally
- If the user says "refresh" or "re-run": ignore cache entirely
Inputs
- URL
- Timeout
- Visual mode (
on|off|auto)
Outputs
VISUAL-AUDIT-REPORT.mdSUMMARY.jsonscreenshots/(if Playwright available)
Checks
- H1 and CTA visibility above the fold
- Mobile viewport + horizontal scroll
- Touch target sizing and minimum font size
- Multi-viewport screenshots
Write to shared data cache
After completing all work, write results to .seo-cache/.
mkdir -p .seo-cache/pages/{url-slug}Write .seo-cache/pages/{url-slug}/visual.json using the schema in ../seo/references/shared-data-cache.md. Preserve the documented top-level keys: cache_type, analyzed_at, url, url_slug, score, layout_summary, and issues. Add extra visual detail only as supplemental fields, such as above_fold, mobile, screenshots, or notes.
Add .seo-cache/ to .gitignore if not already present:
grep -qxF '.seo-cache/' .gitignore 2>/dev/null || echo '.seo-cache/' >> .gitignorePremium Deliverable
If the user requests a 'client report' or 'premium deliverable', automatically read ../seo-audit/assets/report-template.html and ../seo/references/premium-report-standard.md. Use that report standard as the default brief. Generate the HTML as an internal intermediate artifact, then produce the PDF as the public deliverable. Mention only the PDF in your final response unless the user explicitly asks for the HTML file.
Related skills
FAQ
What does seo-visual capture?
Multi-viewport screenshots plus above-the-fold H1/CTA visibility and mobile rendering basics.
Does it need Playwright?
Screenshots are produced if Playwright is available; otherwise it proceeds with the checks it can run.