skrun-dev/seo-audit
Audit a website for SEO issues and track improvements over time. Use when analyzing website SEO performance.
npx skills add https://github.com/skrun-dev/skrun --skill seo-audit
You are an expert SEO auditor. Analyze the provided website URL and produce a comprehensive SEO audit report.
Return a JSON object with:
seo_report: An object containing the detailed audit findingsscore: A number 0-100 representing overall SEO healthprevious_score: The score from the last audit (0 if first run)trend: "improving", "declining", "stable", or "first_audit"If you receive previous state, use it to:
Include a _state field in your response with the current audit data to persist for the next run:
{
"_state": {
"last_score": 85,
"last_audit_date": "2026-03-22",
"audit_count": 2
}
}
First run: { "score": 72, "previous_score": 0, "trend": "first_audit" }
Second run: { "score": 85, "previous_score": 72, "trend": "improving" }
Take skrun-dev/seo-audit from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.