
Seo Auditing
- 235 installs
- 655 repo stars
- Updated August 2, 2026
- spencerpauly/awesome-cursor-skills
seo-auditing is a Claude Code skill that audits technical SEO - meta tags, structured data, sitemaps, robots.txt and Core Web Vitals - and fixes the issues.
About
seo-auditing is a Claude Code skill that audits and fixes technical SEO in a web project. It checks meta tags, canonical URLs, Open Graph, JSON-LD structured data, sitemaps, robots.txt, Core Web Vitals, crawlability and accessibility signals, and includes curl commands for quick automated checks. A developer uses it to make a site indexable and improve search rankings. It is mislabeled as security in the current catalog.
- Meta, canonical and Open Graph checks
- JSON-LD structured-data guidance
- Sitemap, robots.txt and crawlability audit
- Core Web Vitals thresholds
Seo Auditing by the numbers
- 235 all-time installs (skills.sh)
- +32 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #924 of 1,879 Marketing & SEO skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
seo-auditing capabilities & compatibility
free, no API key required
- Capabilities
- seo audit · structured data · sitemap audit · robots txt audit · core web vitals · meta tag audit
- Use cases
- seo · marketing
- IDEs
- cursor ide
- Pricing
- Free
What seo-auditing says it does
Audit technical SEO — meta tags, structured data, Open Graph, sitemaps, robots.txt, performance, and accessibility signals.
Google Search Console is the source of truth for indexing issues
npx skills add https://github.com/spencerpauly/awesome-cursor-skills --skill seo-auditingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 235 |
|---|---|
| repo stars | ★ 655 |
| Last updated | August 2, 2026 |
| Repository | spencerpauly/awesome-cursor-skills ↗ |
Why isn't my site indexing or ranking, and what technical SEO should I fix?
seo
Who is it for?
Developers making a site indexable and improving search rankings.
Skip if: Security review or content/keyword strategy that is not technical SEO.
When should I use this skill?
When you need to check and fix technical SEO issues in a web project.
What you get
A site with correct meta tags, structured data, sitemap, robots.txt and passing Core Web Vitals.
By the numbers
- 8-section SEO audit checklist
Files
SEO Auditing
Check and fix technical SEO issues in a web project.
Audit Checklist
1. Meta Tags
Every page must have:
<head>
<title>Page Title — Site Name</title>
<meta name="description" content="155 chars max, compelling summary" />
<link rel="canonical" href="https://example.com/page" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>Check for:
- [ ] Unique
<title>per page (50-60 chars) - [ ] Unique
<meta description>per page (120-155 chars) - [ ] Canonical URL set (avoids duplicate content)
- [ ] No
noindexon pages that should be indexed
2. Open Graph & Social
<meta property="og:title" content="Page Title" />
<meta property="og:description" content="Description for social sharing" />
<meta property="og:image" content="https://example.com/og-image.png" />
<meta property="og:url" content="https://example.com/page" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />- OG image should be 1200x630px
- Test with https://developers.facebook.com/tools/debug/ and https://cards-dev.twitter.com/validator
3. Structured Data (JSON-LD)
Add schema markup for rich search results:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Article Title",
"author": { "@type": "Person", "name": "Author Name" },
"datePublished": "2026-04-10",
"image": "https://example.com/image.jpg"
}
</script>Common types: Article, Product, FAQPage, Organization, BreadcrumbList
Test with: https://search.google.com/test/rich-results
4. Sitemap
/sitemap.xml should:
- List all indexable pages
- Include
<lastmod>dates - Exclude pages with
noindex - Be under 50MB / 50,000 URLs per file
- Be referenced in
robots.txt
5. Robots.txt
/robots.txt should:
User-agent: *
Allow: /
Disallow: /api/
Disallow: /admin/
Sitemap: https://example.com/sitemap.xml- Not block CSS/JS files (search engines need them to render)
- Not block pages you want indexed
6. Performance (Core Web Vitals)
| Metric | Good | Needs Work |
|---|---|---|
| LCP (Largest Contentful Paint) | < 2.5s | > 4.0s |
| INP (Interaction to Next Paint) | < 200ms | > 500ms |
| CLS (Cumulative Layout Shift) | < 0.1 | > 0.25 |
Key fixes:
- Compress and lazy-load images
- Preload critical fonts and CSS
- Avoid layout shifts from dynamic content
- Use
next/imageor equivalent for automatic optimization
7. Crawlability
- [ ] All important pages are reachable from internal links
- [ ] No orphan pages (pages with zero internal links)
- [ ] No redirect chains (A→B→C should be A→C)
- [ ] 404 pages return proper HTTP 404 status
- [ ] No broken internal links
8. Accessibility (SEO Signals)
- [ ] All images have
alttext - [ ] Heading hierarchy is correct (one
h1, thenh2,h3etc.) - [ ] Links have descriptive text (not "click here")
- [ ] Language attribute set:
<html lang="en">
Quick Automated Check
# Check robots.txt
curl -s https://example.com/robots.txt
# Check sitemap
curl -s https://example.com/sitemap.xml | head -20
# Check meta tags
curl -s https://example.com | grep -E '<title>|<meta name="description"|<link rel="canonical"'
# Check HTTP status codes
curl -o /dev/null -s -w "%{http_code}" https://example.com/pageTips
- Run Lighthouse in Chrome DevTools → check SEO score
- Google Search Console is the source of truth for indexing issues
- Mobile-friendliness is a ranking factor — test on mobile viewports
- Page speed directly affects rankings — optimize Core Web Vitals
Related skills
FAQ
What does seo-auditing check?
Meta tags, Open Graph, JSON-LD structured data, sitemaps, robots.txt, Core Web Vitals, crawlability and accessibility SEO signals.
Is this a security skill?
No. Despite the current catalog label, it audits technical SEO - meta tags, structured data, sitemaps and Core Web Vitals - not security.