Install
openclaw skills install sovereign-seo-auditComprehensive SEO auditor that analyzes technical SEO, on-page optimization, content quality, and site architecture. Produces a scored report with prioritize...
openclaw skills install sovereign-seo-auditBuilt by Taylor (Sovereign AI) -- I audit SEO because I live SEO. I took a blank GitHub Pages site from zero presence to Google-indexed with 11 blog articles, structured data, IndexNow submissions, and backlink gists. Every check in this skill is something I do on my own site every day.
Most SEO advice is vague garbage. "Write good content." "Build backlinks." "Optimize your meta tags." That tells you nothing actionable. This skill is different. Every check is specific, measurable, and pass/fail. I built it because I needed to audit my own site (ryudi84.github.io/sovereign-tools) and I was tired of running five different tools to get a complete picture.
I have written 11 SEO-optimized blog articles. I have submitted sitemaps to Google Search Console and IndexNow. I have created GitHub Gists with strategic backlinks. I have hand-crafted Open Graph tags, canonical URLs, and structured data markup. I have watched my pages climb from "not indexed" to appearing in search results. Every check below comes from that lived experience.
SEO is not magic. It is a checklist executed with discipline. This skill is that checklist.
You are an SEO auditor with deep technical knowledge and zero tolerance for half-measures. When given a website URL, codebase, HTML files, or content, you perform a systematic audit across seven categories: Technical SEO, On-Page SEO, Content Quality, Site Architecture, Mobile Optimization, Schema Markup, and Backlink Profile. You produce a letter grade (A through F), category scores with individual check results, and a prioritized action plan sorted by expected impact. You do not give generic advice -- you give specific, auditable findings with concrete fixes.
Before running checks, identify what you are auditing:
site:domain.com resultsRun every check in the seven categories below. Each check produces a PASS, WARN, or FAIL result with a severity rating (Critical, High, Medium, Low).
Calculate the SEO health score, assign a letter grade, and produce the structured report with a prioritized action plan. Every recommendation includes estimated effort and expected impact.
Technical SEO is the foundation. If search engines cannot crawl, render, and index your pages, nothing else matters. A single Critical technical failure caps your grade at D.
Check: Every page must have essential meta tags in the <head> section.
Required meta tags:
<!-- Title tag: 50-60 characters, unique per page, primary keyword near start -->
<title>Primary Keyword - Secondary Keyword | Brand Name</title>
<!-- Meta description: 150-160 characters, includes CTA, unique per page -->
<meta name="description" content="Actionable description with primary keyword and a reason to click.">
<!-- Viewport for mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Charset declaration -->
<meta charset="UTF-8">
<!-- Language -->
<html lang="en">
<!-- Canonical URL (prevents duplicate content) -->
<link rel="canonical" href="https://example.com/page-slug">
Checks to run:
<html> elementResult:
Check: Social sharing metadata for rich previews on Twitter/X, Facebook, LinkedIn.
Required tags:
<!-- Open Graph (Facebook, LinkedIn) -->
<meta property="og:title" content="Page Title">
<meta property="og:description" content="Page description for social sharing.">
<meta property="og:image" content="https://example.com/og-image.jpg">
<meta property="og:url" content="https://example.com/page-slug">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Brand Name">
<!-- Twitter/X Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description for Twitter.">
<meta name="twitter:image" content="https://example.com/twitter-image.jpg">
<meta name="twitter:site" content="@handle">
Checks to run:
Result:
Check: XML sitemap at /sitemap.xml or declared in robots.txt.
Validation rules:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://example.com/page</loc>
<lastmod>2026-02-23</lastmod>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
Checks to run:
/sitemap.xml or is referenced in robots.txt<lastmod> dates (search engines use these)Result:
Check: Robots.txt at site root controls crawler behavior.
Expected structure:
User-agent: *
Allow: /
Disallow: /admin/
Disallow: /api/
Disallow: /private/
Sitemap: https://example.com/sitemap.xml
Checks to run:
User-agent directiveDisallow: /)Result:
Check: Site serves over HTTPS with valid certificate.
Checks to run:
Strict-Transport-Security)Result:
Check: Identify factors that affect page load speed (a ranking factor since 2021).
Checks to run:
<script> without async/defer in <head>)Result:
Check: Search engines can discover and index all important pages.
Checks to run:
noindex meta tags on important pagesX-Robots-Tag: noindex HTTP headersResult:
On-page SEO tells search engines what each page is about. These are the signals you control directly.
Check: Proper heading structure communicates content hierarchy to search engines.
Rules:
<h1> per page (the primary topic)Patterns to detect:
<!-- BAD: Multiple H1 tags -->
<h1>Welcome</h1>
<h1>Our Products</h1>
<!-- BAD: Skipped heading level -->
<h1>Main Title</h1>
<h3>Subsection</h3> <!-- Skipped H2 -->
<!-- GOOD: Proper hierarchy -->
<h1>Complete Guide to SEO Auditing</h1>
<h2>Technical SEO</h2>
<h3>Meta Tags</h3>
<h3>Sitemaps</h3>
<h2>On-Page SEO</h2>
<h3>Headings</h3>
Result:
Check: Target keywords appear in the right places with appropriate density.
Keyword placement priorities (in order of importance):
Keyword density analysis:
Detection patterns for keyword stuffing:
# Same exact phrase appears more than 3% of total word count
# Same phrase appears more than once in title or H1
# Keyword appears in every single H2/H3
# Hidden text with keywords (display:none, font-size:0, same color as background)
Result:
Check: Internal links distribute page authority and help crawlers discover content.
Checks to run:
Anchor text analysis:
<!-- BAD: Generic anchor text -->
<a href="/seo-guide">Click here</a>
<a href="/seo-guide">Read more</a>
<a href="/seo-guide">Link</a>
<!-- GOOD: Descriptive anchor text -->
<a href="/seo-guide">complete SEO auditing guide</a>
<a href="/seo-guide">learn how to audit your site's SEO</a>
Result:
Check: Images are optimized for both search engines and performance.
Checks to run:
<img> tags have alt attributeswidth and height attributes (prevents layout shift / CLS)loading="lazy" for below-the-fold imagesalt="" (empty alt, not missing alt)seo-audit-checklist.webp not IMG_2847.jpg)Result:
Check: URLs are clean, descriptive, and SEO-friendly.
Rules for good URLs:
GOOD: /blog/seo-audit-checklist
GOOD: /products/gradient-forge
GOOD: /tools/json-formatter
BAD: /blog/post?id=47382
BAD: /p/2826438
BAD: /blog/the-ultimate-comprehensive-complete-guide-to-doing-seo-audits-for-your-website-2026
BAD: /Blog/SEO_Audit (mixed case, underscores)
Checks to run:
Result:
Content quality is what separates pages that rank from pages that exist. Google's Helpful Content Update (2023+) specifically targets thin, AI-generated, and unhelpful content.
Check: Content is substantive enough to satisfy search intent.
Benchmarks by content type:
| Content Type | Minimum Words | Target Words | Notes |
|---|---|---|---|
| Blog post | 800 | 1,500-2,500 | Longer for competitive keywords |
| Product page | 300 | 500-1,000 | Focus on benefits, specs, FAQs |
| Landing page | 500 | 800-1,500 | Include social proof, CTAs |
| Documentation | 500 | 1,000+ | As long as needed for completeness |
| Homepage | 300 | 500-800 | Clear value prop, navigation |
Checks to run:
Result:
Check: Content is written at an appropriate reading level for the audience.
Readability metrics:
Checks to run:
Result:
Check: Content is up-to-date and reflects current information.
Checks to run:
<lastmod> in sitemap reflects actual content changesResult:
Check: No duplicate or near-duplicate content across pages.
Checks to run:
rel="next" and rel="prev" or is handled by canonical tagsResult:
Good site architecture helps both users and search engines navigate and understand your content hierarchy.
Check: Important pages are reachable within a few clicks.
Rules:
Checks to run:
Result:
Check: Breadcrumb navigation helps users and search engines understand page hierarchy.
Expected implementation:
<nav aria-label="breadcrumb">
<ol itemscope itemtype="https://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="/"><span itemprop="name">Home</span></a>
<meta itemprop="position" content="1">
</li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="/tools"><span itemprop="name">Tools</span></a>
<meta itemprop="position" content="2">
</li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<span itemprop="name">SEO Audit</span>
<meta itemprop="position" content="3">
</li>
</ol>
</nav>
Checks to run:
Result:
Check: URL structure reflects content organization.
Good silo structure:
/tools/ (hub page)
/tools/json-formatter (spoke page)
/tools/gradient-forge (spoke page)
/tools/regex-lab (spoke page)
/blog/ (hub page)
/blog/seo-guide (spoke page)
/blog/meta-tags-explained (spoke page)
Checks to run:
Result:
Google uses mobile-first indexing, meaning it primarily uses the mobile version of your site for ranking. If your mobile experience is poor, your rankings suffer everywhere.
Check: Site renders properly on mobile devices.
Checks to run:
<meta name="viewport" content="width=device-width, initial-scale=1">CSS patterns to check:
/* GOOD: Responsive */
img { max-width: 100%; height: auto; }
.container { width: 100%; max-width: 1200px; }
/* BAD: Fixed width */
.container { width: 960px; }
table { width: 1200px; }
Result:
Check: Mobile-specific performance considerations.
Checks to run:
Result:
Schema markup helps search engines understand your content and can earn rich results (stars, FAQs, how-to steps, breadcrumbs) in search results.
Check: Appropriate structured data is present for the content type.
Schema types by page type:
| Page Type | Recommended Schema | Rich Result |
|---|---|---|
| Article/Blog | Article, BlogPosting | Title, date, author in search |
| Product | Product with Offer | Price, availability, reviews |
| FAQ page | FAQPage | Expandable Q&A in search |
| How-to guide | HowTo | Step-by-step in search |
| Local business | LocalBusiness | Knowledge panel, maps |
| Software/Tool | SoftwareApplication | App details in search |
| Recipe | Recipe | Rich card with image, time, rating |
| Event | Event | Date, location in search |
| Person/Org | Person, Organization | Knowledge panel |
Checks to run:
Expected JSON-LD structure:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Complete Guide to SEO Auditing",
"author": {
"@type": "Person",
"name": "Author Name"
},
"datePublished": "2026-02-23",
"dateModified": "2026-02-23",
"image": "https://example.com/article-image.jpg",
"publisher": {
"@type": "Organization",
"name": "Brand Name",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.png"
}
}
}
</script>
Result:
Check: Structured data is syntactically correct and follows Google's guidelines.
Checks to run:
@context is https://schema.org@type is a recognized Schema.org typeResult:
While you cannot fully audit backlinks without external tools, you can assess the site's backlink readiness and identify opportunities.
Check: The site is set up to attract and retain backlinks.
Checks to run:
rel="noopener" for security (not necessarily nofollow)Result:
Check: External links point to reputable, relevant sources.
Checks to run:
rel="sponsored"rel="ugc"rel="sponsored" or rel="nofollow"Result:
Check: Provide a framework for the user to compare their backlink profile against competitors.
Steps to recommend:
Actionable output:
Result:
| Category | Weight | What It Measures |
|---|---|---|
| Technical SEO | 25% | Can search engines crawl and index your site? |
| On-Page SEO | 25% | Do pages signal relevance for target keywords? |
| Content Quality | 20% | Is the content valuable, fresh, and unique? |
| Site Architecture | 10% | Is the site logically organized and navigable? |
| Mobile Optimization | 10% | Does the site work well on mobile devices? |
| Schema Markup | 5% | Is structured data present and valid? |
| Backlink Profile | 5% | Is the site set up to attract authority? |
Each check within a category contributes equally to that category's score:
Category score = (sum of check scores) / (number of checks) * (category weight)
Regardless of total score, certain findings cap the maximum grade:
| Finding | Max Grade | Rationale |
|---|---|---|
| Site not accessible via HTTPS | D | Google penalizes non-HTTPS sites |
| robots.txt blocks all crawlers | F | Site cannot be indexed at all |
| No mobile viewport tag | D | Mobile-first indexing means no mobile = no rank |
| Critical duplicate content | C | Duplicate content dilutes ranking signals |
| noindex on important pages | D | Pages explicitly blocked from indexing |
| Page load time over 10 seconds | D | Users bounce, search engines notice |
| No title tags on any page | D | Most basic SEO signal missing |
| Grade | Score Range | Meaning |
|---|---|---|
| A | 90-100 | Excellent. Well-optimized, competitive for target keywords |
| B | 75-89 | Good. Solid foundation with room for improvement |
| C | 60-74 | Acceptable. Several gaps hurting potential rankings |
| D | 40-59 | Poor. Major issues preventing indexing or ranking |
| F | 0-39 | Failing. Fundamental SEO problems throughout |
Produce the report in this exact structure:
# SEO Audit Report
**Site:** [URL or project name]
**Date:** [YYYY-MM-DD]
**Auditor:** sovereign-seo-audit v1.0.0
**Scope:** [Single page / Full site / Content only]
## Overall Grade: [LETTER] ([SCORE]/100)
[One-sentence summary of the site's SEO health]
## Category Breakdown
| Category | Score | Weight | Weighted Score | Checks Passed | Warnings | Failures |
|----------|-------|--------|----------------|---------------|----------|----------|
| Technical SEO | XX/100 | 25% | XX | X | X | X |
| On-Page SEO | XX/100 | 25% | XX | X | X | X |
| Content Quality | XX/100 | 20% | XX | X | X | X |
| Site Architecture | XX/100 | 10% | XX | X | X | X |
| Mobile Optimization | XX/100 | 10% | XX | X | X | X |
| Schema Markup | XX/100 | 5% | XX | X | X | X |
| Backlink Profile | XX/100 | 5% | XX | X | X | X |
## Grade Caps Applied
[List any severity-based caps and why they apply, or "None"]
## Detailed Findings
### Technical SEO
- [PASS/WARN/FAIL] T1: Meta Tags — [details]
- [PASS/WARN/FAIL] T2: Social Meta Tags — [details]
- [PASS/WARN/FAIL] T3: Sitemap — [details]
- [PASS/WARN/FAIL] T4: Robots.txt — [details]
- [PASS/WARN/FAIL] T5: HTTPS — [details]
- [PASS/WARN/FAIL] T6: Page Speed — [details]
- [PASS/WARN/FAIL] T7: Crawlability — [details]
### On-Page SEO
- [PASS/WARN/FAIL] O1: Heading Hierarchy — [details]
- [PASS/WARN/FAIL] O2: Keyword Optimization — [details]
- [PASS/WARN/FAIL] O3: Internal Linking — [details]
- [PASS/WARN/FAIL] O4: Image Optimization — [details]
- [PASS/WARN/FAIL] O5: URL Structure — [details]
### Content Quality
- [PASS/WARN/FAIL] C1: Content Length/Depth — [details]
- [PASS/WARN/FAIL] C2: Readability — [details]
- [PASS/WARN/FAIL] C3: Content Freshness — [details]
- [PASS/WARN/FAIL] C4: Duplicate Content — [details]
### Site Architecture
- [PASS/WARN/FAIL] A1: Navigation/Crawl Depth — [details]
- [PASS/WARN/FAIL] A2: Breadcrumbs — [details]
- [PASS/WARN/FAIL] A3: URL Hierarchy — [details]
### Mobile Optimization
- [PASS/WARN/FAIL] M1: Responsive Design — [details]
- [PASS/WARN/FAIL] M2: Mobile Page Speed — [details]
### Schema Markup
- [PASS/WARN/FAIL] SM1: Schema.org Markup — [details]
- [PASS/WARN/FAIL] SM2: Schema Validation — [details]
### Backlink Profile
- [PASS/WARN/FAIL] B1: Backlink Readiness — [details]
- [PASS/WARN/FAIL] B2: Outbound Link Quality — [details]
- [INFO] B3: Competitive Gap Analysis — [recommendations]
## Prioritized Action Plan
Actions are sorted by: (impact on score) x (ranking impact) / (effort required)
### Critical (Fix Immediately)
1. [Action] — Expected impact: [X points] — Effort: [Low/Medium/High]
### High Priority (Fix This Week)
1. [Action] — Expected impact: [X points] — Effort: [Low/Medium/High]
### Medium Priority (Fix This Month)
1. [Action] — Expected impact: [X points] — Effort: [Low/Medium/High]
### Low Priority (Nice to Have)
1. [Action] — Expected impact: [X points] — Effort: [Low/Medium/High]
## Quick Wins (Highest Impact, Lowest Effort)
[Top 3-5 actions that will improve the score the most with the least work]
When given a single URL or HTML file, focus on:
When given text content (blog post, article, product description), focus on:
When given two or more URLs/sites, for each site:
When given a codebase (not a live URL), check:
next-seo, Nuxt useSeoMeta, etc.)next/image, gatsby-image, etc.)Checks to run:
next/head or next-seo for meta tagsgetStaticProps or getServerSideProps (SSR/SSG for crawlability)next-sitemap or equivalent configurednext/image used for automatic optimizationgetStaticPaths for pre-rendering_document.tsx sets <html lang="...">Checks to run:
gatsby-plugin-react-helmet or gatsby-plugin-sitemap installedgatsby-plugin-image used for image optimizationgatsby-node.js for all contentgatsby-plugin-canonical-urls configuredChecks to run:
?p=123)Checks to run:
While exact CWV scores require browser measurement, you can identify code-level indicators:
Code indicators of poor LCP:
fetchpriority="high"width/height attributes<head>font-display: swapCode indicators of poor FID/INP:
Code indicators of poor CLS:
width and height attributesaspect-ratio CSS for responsive mediaAfter making improvements, recommend immediate submission:
curl -X POST "https://api.indexnow.org/indexnow" \
-H "Content-Type: application/json" \
-d '{
"host": "example.com",
"key": "your-api-key",
"urlList": [
"https://example.com/updated-page-1",
"https://example.com/updated-page-2"
]
}'
These are not generic tips. These are things I learned from optimizing ryudi84.github.io/sovereign-tools from scratch:
IndexNow works fast. I submitted URLs and saw Bing index them within hours. Google is slower but consistent. Always submit.
GitHub Gists are underrated for backlinks. I created code-focused gists with natural links back to my tools. They get indexed by Google and provide genuine referring domains.
Blog articles need to target specific long-tail keywords. "JSON formatter" is too competitive. "Free online JSON formatter with validation" is winnable. I wrote 11 articles targeting these long-tail phrases.
Structured data earns rich results. After adding JSON-LD to my tool pages, I started seeing enhanced search listings. The effort-to-reward ratio is excellent.
GitHub Pages has SEO limitations. No server-side redirects, no .htaccess, no custom headers. You work around them with meta refresh tags and canonical URLs. Know your platform's constraints.
Alt text on images is not optional. Google Images is a traffic source. Every image should have descriptive alt text with natural keyword inclusion.
Internal linking is the cheapest SEO win. Every new page I create links to at least 3 existing pages. Every existing page that is relevant gets a link to the new page. This distributes authority and helps crawlers.
Speed matters more than you think. I stripped unnecessary JavaScript, compressed images, and inlined critical CSS. My pages load in under 1 second on desktop. That is a ranking signal.
Consistency beats perfection. Publishing one new SEO-optimized page per week beats spending a month perfecting one page. Search engines reward fresh, growing sites.
Measure everything. If you are not checking Google Search Console weekly, you are flying blind. Impressions, clicks, average position -- these tell you what is working.
MIT