Technical & DevelopmentAdvanced
seo
Search engine optimization, crawlability, and structured data
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/addyosmani/web-quality-skills --skill seonpx skills add https://github.com/addyosmani/web-quality-skills --skill seoOr paste this URL into your assistant to install:
Overview
What This Skill Does
Search engine optimization, crawlability, and structured data
Application
When to use this Skill
- Integrating seo into your development workflow.
- Following best practices for search engine optimization, crawlability, and structured data.
- Automating repetitive tasks with AI-assisted tooling.
- Building production-grade applications with proper standards.
- Debugging and troubleshooting common implementation issues.
Documentation
Show Skills.md file
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 |
| On-page SEO | ~10% | ✓ |
Technical SEO
Crawlability
robots.txt:
# /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
Lines 1 - 38 of 518
Recommendations