seo

Solid

Optimize for search engine visibility and ranking. Use when asked to "improve SEO", "optimize for search", "fix meta tags", "add structured data", "sitemap optimization", or "search engine optimization".

Testing & QA 2,147 stars 198 forks Updated 3 weeks ago MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
100
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# SEO optimization Search engine optimization based on Lighthouse SEO audits and Google Search guidelines. Focus on technical SEO, on-page optimization, and structured data. ## SEO fundamentals Search ranking factors (approximate influence): | Factor | Influence | This Skill | |--------|-----------|------------| | Content quality & relevance | ~40% | Partial (structure) | | Backlinks & authority | ~25% | ✗ | | Technical SEO | ~15% | ✓ | | Page experience (Core Web Vitals) | ~10% | See [Core Web Vitals](../core-web-vitals/SKILL.md) | | On-page SEO | ~10% | ✓ | --- ## Technical SEO ### Crawlability **robots.txt:** ```text # /robots.txt User-agent: * Allow: / # Block admin/private areas Disallow: /admin/ Disallow: /api/ Disallow: /private/ # Don't block resources needed for rendering # ❌ Disallow: /static/ Sitemap: https://example.com/sitemap.xml ``` **Meta robots:** ```html <!-- Default: indexable, followable --> <meta name="robots" content="index, follow"> <!-- Noindex specific pages --> <meta name="robots" content="noindex, nofollow"> <!-- Indexable but don't follow links --> <meta name="robots" content="index, nofollow"> <!-- Control snippets --> <meta name="robots" content="max-snippet:150, max-image-preview:large"> ``` **Canonical URLs:** ```html <!-- Prevent duplicate content issues --> <link rel="canonical" href="https://example.com/page"> <!-- Self-referencing canonical (recommended) --> <link rel="canonical" href="https://example.com/current-page"> <!...

Details

Author
addyosmani
Repository
addyosmani/web-quality-skills
Created
4 months ago
Last Updated
3 weeks ago
Language
Shell
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category