senternet-site-ahrefs-audit

Fix Ahrefs Site Audit issues by applying standard fixes and verifying triggers locally.

Updated May 8, 2026
One-click install
npx skills add https://github.com/MattSenter/senternet-site-skills --skill senternet-site-ahrefs-audit-mattsenter
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: senternet-site-ahrefs-audit
Source: https://github.com/MattSenter/senternet-site-skills/tree/main/.claude/skills/senternet-site-ahrefs-audit
Command: npx skills add https://github.com/MattSenter/senternet-site-skills --skill senternet-site-ahrefs-audit-mattsenter

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Ahrefs Site Audit crawls surface SEO issues like broken links, missing alt text, and unoptimized images, but manually triaging each issue class and confirming fixes is slow and error-prone. This Skill reads the latest crawl, applies the standard fix per issue class, and verifies the trigger condition is gone before committing. ## Core Features & Use Cases - Issue triage from live crawls: Pulls projects, issues, and affected URLs from the Ahrefs MCP tools, prioritizing Error and Warning issues with crawled > 0. - Standard fixes per issue class: Converts images to WebP and strips PNG/JPG fallbacks, adds descriptive alt text, and repairs 4xx links and broken assets. - Local verification before commit: Greps for leftover .png/.jpg references, checks <img> alt attributes, and rebuilds the site so the next Ahrefs crawl confirms the fixes. - Use Case: After an Ahrefs crawl flags 40 images missing alt text and 12 broken internal links on your marketing site, run this Skill to fix every affected URL, rebuild, and push a commit naming the resolved issue classes. ## Quick Start Ask the AI to pull the latest Ahrefs Site Audit issues for your site, fix each issue class, verify the triggers are gone, and commit the changes.

Frequently Asked Questions about senternet-site-ahrefs-audit

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

FAQPage Schema
How do I fix Ahrefs Site Audit issues automatically?▼

Connect the Ahrefs MCP server, then pull issues with site-audit-issues and affected URLs with site-audit-page-explorer. Apply the standard fix per issue class, verify the trigger is gone from source, rebuild, and commit.

How to fix images not using next-gen formats flagged by Ahrefs?▼

Convert images to WebP and update every reference, removing leftover .png/.jpg refs and format-fallback <picture> tags. Keep <picture> only for art direction, with the fallback <img src> pointing at .webp.

Can Ahrefs audit fixes handle Shopify-hosted images?▼

No. Images served from cdn.shopify.com or similar third-party hosts cannot be converted or re-hosted locally. These are marked out-of-scope, skipped, and called out explicitly in the summary.

Why does site-audit-page-explorer return empty or wrong results?▼

The select and order_by parameters use outputSchema column identifiers, but the where filter uses a different identifier set. Call the doc tool for each Ahrefs tool before first use to read the real schema.

Do I need to wait for a new Ahrefs crawl to confirm fixes?▼

No. Verify the local trigger is gone instead: grep for remaining .png/.jpg refs, confirm every affected <img> has an alt attribute, and ensure broken links resolve. The next scheduled crawl confirms the drop.