{"id":"582a411b-21ef-40a9-b439-84b8f18ccc4d","shortId":"JRMU4P","kind":"skill","title":"seo-best-practices","tagline":"SEO patterns, conventions, and audit for web applications. Use when implementing meta tags, structured data, Core Web Vitals, sitemaps, Open Graph, auditing SEO, or optimizing pages for search engines. Triggers on \"audit SEO\", \"check SEO\", \"review SEO\", or tasks involving search ","description":"# SEO Best Practices\n\nComprehensive SEO patterns for web applications built with React and Laravel. Contains 31 rules across 8 categories covering Core Web Vitals, technical SEO, structured data, performance, social sharing, and mobile-first indexing. Supports both **coding reference** and **audit mode**.\n\n## Metadata\n\n- **Version:** 1.2.0\n- **Scope:** Laravel Blade and Laravel + Inertia.js + React\n- **Rule Count:** 31 rules across 8 categories\n- **License:** MIT\n\n## How to Audit\n\nWhen the user asks to \"audit SEO\", \"check SEO\", or \"review SEO\" — run the checklist below against their codebase.\n\n### Audit Step 1: Determine Scope\n\n- If arguments provided (`$ARGUMENTS`): audit only those pages or files\n- If no arguments: audit all pages and layouts in the codebase\n\n### Audit Step 2: Detect Project Type\n\nUse the detection logic in \"Step 1: Detect Project Type\" below to determine Laravel Blade vs Laravel + Inertia + React.\n\n### Audit Step 3: Run SEO Checklist\n\nWork through every item below. For each, output:\n- **PASS** — brief confirmation of what was verified\n- **FAIL** — exact `file:line`, description of the issue, and fix recommendation\n- **N/A** — if the check does not apply to this project\n\n#### Core Web Vitals\n- [ ] Hero/above-the-fold images use `fetchpriority=\"high\"` and are preloaded (LCP < 2.5s)\n- [ ] No long-running JavaScript tasks blocking interaction (INP < 200ms)\n- [ ] All images and embeds have explicit `width`/`height` attributes (CLS < 0.1)\n- [ ] No dynamically injected content that shifts layout without reserved space\n\n#### Technical SEO\n- [ ] Every page has a unique `<title>` tag (50-60 characters)\n- [ ] Every page has a `<meta name=\"description\">` (150-160 characters)\n- [ ] Every page has a `<link rel=\"canonical\">` pointing to the correct URL\n- [ ] `robots.txt` exists and does not block important pages\n- [ ] XML sitemap exists and includes all indexable pages\n- [ ] URLs are clean, lowercase, hyphenated — no query params for indexable pages\n\n#### On-Page SEO\n- [ ] One `<h1>` per page containing the primary keyword\n- [ ] Heading hierarchy is sequential (h1 → h2 → h3) — no skipped levels\n- [ ] Images have descriptive `alt` text (not empty, not \"image\", not filename)\n- [ ] Internal links use descriptive anchor text (not \"click here\")\n- [ ] Semantic HTML used (`<article>`, `<section>`, `<nav>`, `<main>`)\n\n#### Structured Data\n- [ ] JSON-LD structured data present on key pages (Article, Product, FAQ, BreadcrumbList)\n- [ ] JSON-LD uses `@graph` when combining multiple schema types\n- [ ] Structured data validates with Google Rich Results Test (no errors)\n- [ ] Organization/WebSite schema present on homepage\n\n#### Performance SEO\n- [ ] Images use modern formats (WebP/AVIF) with fallbacks\n- [ ] Below-the-fold images use `loading=\"lazy\"`\n- [ ] Fonts use `font-display: swap` or `optional`\n- [ ] Critical resources use `<link rel=\"preconnect\">` or `<link rel=\"preload\">`\n\n#### Social Sharing\n- [ ] Open Graph tags present (`og:title`, `og:description`, `og:image`, `og:url`, `og:type`)\n- [ ] `og:image` is at least 1200x630px\n- [ ] Twitter Card tags present (`twitter:card`, at minimum `summary_large_image`)\n\n#### React/SPA SEO (if applicable)\n- [ ] SSR or SSG configured for indexable pages — not client-side only\n- [ ] Meta tags update on route change (via `<Head>` component or equivalent)\n- [ ] `head-key` attribute used to prevent duplicate meta tags (Inertia.js)\n\n#### Mobile-First\n- [ ] `<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">` present\n- [ ] Content parity between mobile and desktop (no hidden content)\n- [ ] Touch targets are at least 48x48px with adequate spacing\n\n### Audit Step 4: Summary\n\nEnd the audit with:\n```\n## SEO Audit Summary\n- **PASS**: X checks\n- **FAIL**: X checks\n- **N/A**: X checks\n- **Top Priority Fixes**: (list the 3 most impactful FAIL items)\n```\n\n---\n\n## When to Apply\n\nReference these guidelines when:\n- Running an SEO audit on a codebase\n- Adding meta tags (`<title>`, description, canonical, robots)\n- Implementing structured data (JSON-LD / Schema.org)\n- Optimizing Core Web Vitals (LCP, INP, CLS)\n- Setting up Open Graph and Twitter Card meta tags\n- Creating sitemaps and robots.txt\n- Building SEO-friendly React SPAs\n- Configuring Laravel SEO middleware and packages\n- Optimizing images, fonts, and loading performance for search\n\n## Step 1: Detect Project Type\n\n**Always check the project stack before giving advice.** Different stacks need different SEO approaches.\n\nCheck `package.json` and project structure:\n\n| Signal | Project Type |\n|--------|-------------|\n| `@inertiajs/react` in dependencies | Laravel + Inertia + React |\n| `resources/views/**/*.blade.php` only (no React) | Laravel Blade (server-rendered) |\n\n**If Laravel Blade:** Apply `tech-`, `onpage-`, `schema-`, `perf-`, `social-`, `mobile-` rules. Meta tags go in Blade layouts. Sitemaps via `spatie/laravel-sitemap`. Skip `spa-` rules — pages are already server-rendered.\n\n**If Laravel + Inertia + React:** Apply all rules. Meta tags via `@inertiaHead` in Blade layout + `<Head>` component from `@inertiajs/react` in React pages. For SSR, create `resources/js/ssr.jsx` using `createServer` from `@inertiajs/react/server`, add `ssr: 'resources/js/ssr.jsx'` to Vite config, build with `vite build && vite build --ssr`, and run `php artisan inertia:start-ssr`. Use `head-key` attribute on meta tags to prevent duplicates between layout and page. Focus on `schema-`, `social-`, and `perf-` rules.\n\n## Rule Categories by Priority\n\n| Priority | Category | Impact | Prefix |\n|----------|----------|--------|--------|\n| 1 | Core Web Vitals | CRITICAL | `cwv-` |\n| 2 | Technical SEO | CRITICAL | `tech-` |\n| 3 | On-Page SEO | HIGH | `onpage-` |\n| 4 | Structured Data | HIGH | `schema-` |\n| 5 | Performance SEO | HIGH | `perf-` |\n| 6 | Social Sharing | HIGH | `social-` |\n| 7 | React/SPA SEO | HIGH | `spa-` |\n| 8 | Mobile-First | MEDIUM | `mobile-` |\n\n## Quick Reference\n\n### 1. Core Web Vitals (CRITICAL)\n\n- `cwv-lcp` - Largest Contentful Paint optimization (<2.5s)\n- `cwv-inp` - Interaction to Next Paint optimization (<200ms)\n- `cwv-cls` - Cumulative Layout Shift prevention (<0.1)\n\n### 2. Technical SEO (CRITICAL)\n\n- `tech-meta-tags` - Essential HTML meta tags (title, description, canonical)\n- `tech-canonical-urls` - Canonical URL implementation\n- `tech-robots-txt` - Robots.txt configuration\n- `tech-sitemap-xml` - XML sitemap generation\n- `tech-url-structure` - SEO-friendly URL patterns\n\n### 3. On-Page SEO (HIGH)\n\n- `onpage-headings` - Heading hierarchy and structure\n- `onpage-semantic-html` - Semantic HTML for SEO and accessibility\n- `onpage-internal-linking` - Internal linking strategy\n- `onpage-images` - Image optimization and alt text\n\n### 4. Structured Data (HIGH)\n\n- `schema-json-ld` - JSON-LD structured data basics\n- `schema-article` - Article and BlogPosting markup\n- `schema-product` - Product schema for e-commerce\n- `schema-breadcrumb` - BreadcrumbList navigation markup\n- `schema-graph` - Combining multiple schema types with @graph\n- `schema-faq` - FAQ page schema markup\n- `schema-validation` - Structured data validation and monitoring\n\n### 5. Performance SEO (HIGH)\n\n- `perf-image-formats` - Modern image formats (WebP/AVIF)\n- `perf-lazy-loading` - Lazy loading implementation\n- `perf-font-loading` - Web font loading strategy\n- `perf-resource-hints` - Preconnect, preload, and prefetch\n\n### 6. Social Sharing (HIGH)\n\n- `social-open-graph` - Open Graph meta tags\n- `social-twitter-cards` - Twitter/X Card meta tags\n\n### 7. React/SPA SEO (HIGH)\n\n- `spa-rendering-strategy` - SSR vs CSR vs SSG for SEO\n- `spa-meta-management` - Dynamic meta tag management\n- `spa-routing` - SPA routing and crawlability\n\n### 8. Mobile-First (MEDIUM)\n\n- `mobile-viewport` - Viewport and responsive configuration\n- `mobile-content-parity` - Content parity between mobile and desktop\n- `mobile-ux` - Mobile UX requirements for SEO\n\n## Essential Patterns\n\n### Meta Tags (HTML)\n\n```html\n<head>\n  <meta charset=\"utf-8\" />\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n  <title>Page Title — Site Name</title>\n  <meta name=\"description\" content=\"Concise 150-160 character description of page content.\" />\n  <link rel=\"canonical\" href=\"https://example.com/page\" />\n\n  <!-- Open Graph -->\n  <meta property=\"og:title\" content=\"Page Title\" />\n  <meta property=\"og:description\" content=\"Description for social sharing.\" />\n  <meta property=\"og:image\" content=\"https://example.com/og-image.jpg\" />\n  <meta property=\"og:url\" content=\"https://example.com/page\" />\n  <meta property=\"og:type\" content=\"website\" />\n\n  <!-- Twitter Card -->\n  <meta name=\"twitter:card\" content=\"summary_large_image\" />\n</head>\n```\n\n### JSON-LD Structured Data\n\n```html\n<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"Article\",\n  \"headline\": \"Article Title\",\n  \"author\": {\n    \"@type\": \"Person\",\n    \"name\": \"Author Name\"\n  },\n  \"datePublished\": \"2026-03-14\",\n  \"dateModified\": \"2026-03-14\",\n  \"image\": \"https://example.com/article-image.jpg\",\n  \"publisher\": {\n    \"@type\": \"Organization\",\n    \"name\": \"Site Name\",\n    \"logo\": {\n      \"@type\": \"ImageObject\",\n      \"url\": \"https://example.com/logo.png\"\n    }\n  }\n}\n</script>\n```\n\n### React Meta Management (Inertia.js)\n\n```tsx\nimport { Head } from '@inertiajs/react'\n\ninterface Post {\n  title: string;\n  slug: string;\n  excerpt: string;\n  image: string;\n}\n\nfunction BlogPost({ post }: { post: Post }) {\n  return (\n    <>\n      <Head>\n        <title>{post.title} — Blog</title>\n        <meta head-key=\"description\" name=\"description\" content={post.excerpt} />\n        <link rel=\"canonical\" href={`https://example.com/blog/${post.slug}`} />\n        <meta property=\"og:title\" content={post.title} />\n        <meta property=\"og:description\" content={post.excerpt} />\n        <meta property=\"og:image\" content={post.image} />\n        <meta property=\"og:type\" content=\"article\" />\n        <meta name=\"twitter:card\" content=\"summary_large_image\" />\n      </Head>\n      <article>{/* content */}</article>\n    </>\n  )\n}\n```\n\n### Core Web Vitals Quick Checks\n\n```\nLCP  < 2.5s   Preload hero image, use fetchpriority=\"high\"\nINP  < 200ms  Break long tasks, yield to main thread\nCLS  < 0.1    Set width/height on images, reserve space for dynamic content\n```\n\n### Image Optimization\n\n```html\n<!-- Modern formats with fallback -->\n<picture>\n  <source srcset=\"hero.avif\" type=\"image/avif\" />\n  <source srcset=\"hero.webp\" type=\"image/webp\" />\n  <img\n    src=\"hero.jpg\"\n    alt=\"Descriptive alt text for the image\"\n    width=\"1200\"\n    height=\"630\"\n    fetchpriority=\"high\"\n  />\n</picture>\n\n<!-- Responsive images -->\n<img\n  srcset=\"photo-400.webp 400w, photo-800.webp 800w, photo-1200.webp 1200w\"\n  sizes=\"(max-width: 600px) 400px, (max-width: 900px) 800px, 1200px\"\n  src=\"photo-800.webp\"\n  alt=\"Descriptive alt text\"\n  width=\"1200\"\n  height=\"800\"\n  loading=\"lazy\"\n/>\n```\n\n## How to Use\n\nRead individual rule files for detailed explanations and code examples:\n\n```\nrules/tech-meta-tags.md\nrules/schema-json-ld.md\nrules/cwv-lcp.md\nrules/spa-rendering-strategy.md\nrules/social-open-graph.md\n```\n\nEach rule file contains:\n- YAML frontmatter with metadata (title, impact, tags)\n- Brief explanation of why it matters\n- Incorrect example with explanation\n- Correct example with explanation\n- Framework-specific examples (React, Laravel)\n\n## References\n\n- [Google Search Central](https://developers.google.com/search) - Official Google SEO documentation\n- [web.dev Core Web Vitals](https://web.dev/articles/vitals) - CWV measurement and optimization\n- [Schema.org](https://schema.org/) - Structured data vocabulary\n- [Open Graph Protocol](https://ogp.me/) - Social sharing meta tags\n- [Google Rich Results Test](https://search.google.com/test/rich-results) - Structured data validation\n\n## Full Compiled Document\n\nFor the complete guide with all rules expanded: `AGENTS.md`","tags":["seo","best","practices","agent","skills","asyrafhussin","agent-rules","agent-skills","ai-agents","ai-slop","claude-code","code-quality"],"capabilities":["skill","source-asyrafhussin","skill-seo-best-practices","topic-agent-rules","topic-agent-skills","topic-ai-agents","topic-ai-slop","topic-claude-code","topic-code-quality","topic-code-review","topic-codex","topic-cursor","topic-laravel","topic-nodejs","topic-react"],"categories":["agent-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/AsyrafHussin/agent-skills/seo-best-practices","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add AsyrafHussin/agent-skills","source_repo":"https://github.com/AsyrafHussin/agent-skills","install_from":"skills.sh"}},"qualityScore":"0.469","qualityRationale":"deterministic score 0.47 from registry signals: · indexed on github topic:agent-skills · 39 github stars · SKILL.md body (11,921 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T18:58:25.340Z","embedding":null,"createdAt":"2026-05-16T18:57:14.977Z","updatedAt":"2026-05-18T18:58:25.340Z","lastSeenAt":"2026-05-18T18:58:25.340Z","tsv":"'-160':284 '-60':277 '/)':1299,1308 '/articles/vitals)':1291 '/blog/$':1167 '/search)':1280 '/test/rich-results)':1319 '0.1':257,851,1212 '1':132,168,625,775,821 '1.2.0':91 '1200x630px':456 '150':283 '2':158,781,852 '2.5':235,833,1194 '200ms':246,843,1203 '3':183,552,786,896 '31':61,101 '4':529,793,934 '48x48px':523 '5':798,994 '50':276 '6':803,1029 '7':808,1049 '8':64,104,813,1079 'access':918 'across':63,103 'ad':571 'add':724 'adequ':525 'advic':636 'agents.md':1334 'alreadi':692 'alt':346,932 'alway':629 'anchor':358 'appli':219,559,670,700 'applic':12,54,471 'approach':642 'argument':136,138,147 'articl':377,950,951 'artisan':740 'ask':114 'attribut':255,497,749 'audit':9,26,36,87,110,116,130,139,148,156,181,527,533,536,567 'basic':947 'below-the-fold':415 'best':3,47 'blade':94,176,663,669,682,708 'blade.php':658 'block':243,300 'blog':1151 'blogpost':953,1145 'breadcrumb':966 'breadcrumblist':380,967 'break':1204 'brief':196,1254 'build':604,730,733,735 'built':55 'canon':575,866,869,871,1163 'card':458,462,597,1044,1046 'categori':65,105,768,772 'central':1277 'chang':489 'charact':278,285 'check':38,118,216,540,543,546,630,643,1192 'checklist':125,186 'clean':313 'click':361 'client':481 'client-sid':480 'cls':256,590,846,1211 'code':84,1236 'codebas':129,155,570 'combin':387,973 'commerc':963 'compil':1324 'complet':1328 'compon':491,710 'comprehens':49 'config':729 'configur':475,610,879,1090 'confirm':197 'contain':60,329,1246 'content':261,509,517,830,1093,1095,1159,1173,1179,1185,1187,1221 'convent':7 'core':20,67,223,585,776,822,1188,1286 'correct':293,1264 'count':100 'cover':66 'crawlabl':1078 'creat':600,718 'createserv':721 'critic':431,779,784,825,855 'csr':1059 'cumul':847 'cwv':780,827,836,845,1292 'cwv-cls':844 'cwv-inp':835 'cwv-lcp':826 'data':19,73,367,372,392,579,795,936,946,990,1123,1301,1321 'depend':653 'descript':206,345,357,444,574,865,1156,1158,1178 'desktop':514,1100 'detail':1233 'detect':159,164,169,626 'determin':133,174 'developers.google.com':1279 'developers.google.com/search)':1278 'differ':637,640 'display':427 'document':1284,1325 'duplic':501,755 'dynam':259,1068,1220 'e':962 'e-commerc':961 'emb':250 'empti':349 'end':531 'engin':33 'equival':493 'error':400 'essenti':860,1109 'everi':189,270,279,286 'exact':203 'exampl':1237,1261,1265,1271 'example.com':1166 'example.com/blog/$':1165 'excerpt':1140 'exist':296,305 'expand':1333 'explan':1234,1255,1263,1267 'explicit':252 'fail':202,541,555 'fallback':414 'faq':379,981,982 'fetchprior':229,1200 'file':144,204,1231,1245 'filenam':353 'first':80,507,816,1082 'fix':211,549 'focus':760 'fold':418 'font':423,426,618,1015,1018 'font-display':425 'format':411,1001,1004 'framework':1269 'framework-specif':1268 'friend':607,893 'frontmatt':1248 'full':1323 'function':1144 'generat':886 'give':635 'go':680 'googl':395,1275,1282,1313 'graph':25,385,438,594,972,978,1036,1038,1304 'guid':1329 'guidelin':562 'h1':337 'h2':338 'h3':339 'head':333,495,747,904,905,1131,1154 'head-key':494,746,1153 'height':254 'hero':1197 'hero/above-the-fold':226 'hidden':516 'hierarchi':334,906 'high':230,791,796,801,806,811,901,937,997,1032,1052,1201 'hint':1024 'homepag':405 'href':1164 'html':364,861,912,914,1113,1114,1124,1224 'hyphen':315 'imag':227,248,343,351,408,419,446,452,467,617,928,929,1000,1003,1142,1184,1198,1216,1222 'impact':554,773,1252 'implement':15,577,873,1012 'import':301,1130 'includ':307 'incorrect':1260 'index':81,309,320,477 'individu':1229 'inertia':179,655,698,741 'inertia.js':97,504,1128 'inertiahead':706 'inertiajs/react':651,712,1133 'inertiajs/react/server':723 'inject':260 'inp':245,589,837,1202 'interact':244,838 'interfac':1134 'intern':354,921,923 'involv':44 'issu':209 'item':190,556 'javascript':241 'json':369,382,581,940,943,1120 'json-ld':368,381,580,942,1119 'key':375,496,748,1155 'keyword':332 'laravel':59,93,96,175,178,611,654,662,668,697,1273 'larg':466 'largest':829 'layout':152,264,683,709,757,848 'lazi':422,1008,1010 'lcp':234,588,828,1193 'ld':370,383,582,941,944,1121 'least':455,522 'level':342 'licens':106 'line':205 'link':355,922,924,1161 'list':550 'load':421,620,1009,1011,1016,1019 'logic':165 'long':239,1205 'long-run':238 'lowercas':314 'main':1209 'manag':1067,1071,1127 'markup':954,969,985 'matter':1259 'measur':1293 'medium':817,1083 'meta':16,484,502,572,598,678,703,751,858,862,1039,1047,1066,1069,1111,1126,1152,1169,1175,1181,1311 'metadata':89,1250 'middlewar':613 'minimum':464 'mit':107 'mobil':79,506,512,676,815,818,1081,1085,1092,1098,1102,1104 'mobile-content-par':1091 'mobile-first':78,505,814,1080 'mobile-ux':1101 'mobile-viewport':1084 'mode':88 'modern':410,1002 'monitor':993 'multipl':388,974 'n/a':213,544 'name':1118,1157 'navig':968 'need':639 'next':840 'offici':1281 'og':441,443,445,447,449,451,1171,1177,1183 'ogp.me':1307 'ogp.me/)':1306 'on-pag':322,787,897 'one':326 'onpag':672,792,903,910,920,927 'onpage-head':902 'onpage-imag':926 'onpage-internal-link':919 'onpage-semantic-html':909 'open':24,437,593,1035,1037,1303 'optim':29,584,616,832,842,930,1223,1295 'option':430 'organization/website':401 'output':194 'packag':615 'package.json':644 'page':30,142,150,271,280,287,302,310,321,324,328,376,478,690,715,759,789,899,983,1115 'paint':831,841 'param':318 'pariti':510,1094,1096 'pass':195,538 'pattern':6,51,895,1110 'per':327 'perf':674,765,802,999,1007,1014,1022 'perf-font-load':1013 'perf-image-format':998 'perf-lazy-load':1006 'perf-resource-hint':1021 'perform':74,406,621,799,995 'php':739 'point':290 'post':1135,1146,1147,1148 'post.excerpt':1160,1180 'post.image':1186 'post.slug':1168 'post.title':1150,1174 'practic':4,48 'preconnect':1025 'prefetch':1028 'prefix':774 'preload':233,1026,1196 'present':373,403,440,460,508 'prevent':500,754,850 'primari':331 'prioriti':548,770,771 'product':378,957,958 'project':160,170,222,627,632,646,649 'properti':1170,1176,1182 'protocol':1305 'provid':137 'queri':317 'quick':819,1191 'react':57,98,180,608,656,661,699,714,1125,1272 'react/spa':468,809,1050 'read':1228 'recommend':212 'refer':85,560,820,1274 'rel':1162 'render':666,695,1055 'requir':1106 'reserv':266,1217 'resourc':432,1023 'resources/js/ssr.jsx':719,726 'resources/views':657 'respons':1089 'result':397,1315 'return':1149 'review':40,121 'rich':396,1314 'robot':576,876 'robots.txt':295,603,878 'rout':488,1074,1076 'rule':62,99,102,677,689,702,766,767,1230,1244,1332 'rules/cwv-lcp.md':1240 'rules/schema-json-ld.md':1239 'rules/social-open-graph.md':1242 'rules/spa-rendering-strategy.md':1241 'rules/tech-meta-tags.md':1238 'run':123,184,240,564,738 'schema':389,402,673,762,797,939,949,956,959,965,971,975,980,984,987 'schema-articl':948 'schema-breadcrumb':964 'schema-faq':979 'schema-graph':970 'schema-json-ld':938 'schema-product':955 'schema-valid':986 'schema.org':583,1296,1298 'schema.org/)':1297 'scope':92,134 'search':32,45,623,1276 'search.google.com':1318 'search.google.com/test/rich-results)':1317 'semant':363,911,913 'seo':2,5,27,37,39,41,46,50,71,117,119,122,185,269,325,407,469,535,566,606,612,641,783,790,800,810,854,892,900,916,996,1051,1063,1108,1283 'seo-best-practic':1 'seo-friend':605,891 'sequenti':336 'server':665,694 'server-rend':664,693 'set':591,1213 'share':76,436,805,1031,1310 'shift':263,849 'side':482 'signal':648 'site':1117 'sitemap':23,304,601,684,882,885 'skill' 'skill-seo-best-practices' 'skip':341,687 'slug':1138 'social':75,435,675,763,804,807,1030,1034,1042,1309 'social-open-graph':1033 'social-twitter-card':1041 'source-asyrafhussin' 'spa':688,812,1054,1065,1073,1075 'spa-meta-manag':1064 'spa-rendering-strategi':1053 'spa-rout':1072 'space':267,526,1218 'spas':609 'spatie/laravel-sitemap':686 'specif':1270 'ssg':474,1061 'ssr':472,717,725,736,744,1057 'stack':633,638 'start':743 'start-ssr':742 'step':131,157,167,182,528,624 'strategi':925,1020,1056 'string':1137,1139,1141,1143 'structur':18,72,366,371,391,578,647,794,890,908,935,945,989,1122,1300,1320 'summari':465,530,537 'support':82 'swap':428 'tag':17,275,439,459,485,503,573,599,679,704,752,859,863,1040,1048,1070,1112,1253,1312 'target':519 'task':43,242,1206 'tech':671,785,857,868,875,881,888 'tech-canonical-url':867 'tech-meta-tag':856 'tech-robots-txt':874 'tech-sitemap-xml':880 'tech-url-structur':887 'technic':70,268,782,853 'test':398,1316 'text':347,359,933 'thread':1210 'titl':442,864,1116,1136,1172,1251 'top':547 'topic-agent-rules' 'topic-agent-skills' 'topic-ai-agents' 'topic-ai-slop' 'topic-claude-code' 'topic-code-quality' 'topic-code-review' 'topic-codex' 'topic-cursor' 'topic-laravel' 'topic-nodejs' 'topic-react' 'touch':518 'trigger':34 'tsx':1129 'twitter':457,461,596,1043 'twitter/x':1045 'txt':877 'type':161,171,390,450,628,650,976 'uniqu':274 'updat':486 'url':294,311,448,870,872,889,894 'use':13,162,228,356,365,384,409,420,424,433,498,720,745,1199,1227 'user':113 'ux':1103,1105 'valid':393,988,991,1322 'verifi':201 'version':90 'via':490,685,705 'viewport':1086,1087 'vital':22,69,225,587,778,824,1190,1288 'vite':728,732,734 'vocabulari':1302 'vs':177,1058,1060 'web':11,21,53,68,224,586,777,823,1017,1189,1287 'web.dev':1285,1290 'web.dev/articles/vitals)':1289 'webp/avif':412,1005 'width':253 'width/height':1214 'without':265 'work':187 'x':539,542,545 'xml':303,883,884 'yaml':1247 'yield':1207","prices":[{"id":"13f59dc5-8382-42fe-8167-93b572a8a9c0","listingId":"582a411b-21ef-40a9-b439-84b8f18ccc4d","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"AsyrafHussin","category":"agent-skills","install_from":"skills.sh"},"createdAt":"2026-05-16T18:57:14.977Z"}],"sources":[{"listingId":"582a411b-21ef-40a9-b439-84b8f18ccc4d","source":"github","sourceId":"AsyrafHussin/agent-skills/seo-best-practices","sourceUrl":"https://github.com/AsyrafHussin/agent-skills/tree/main/skills/seo-best-practices","isPrimary":false,"firstSeenAt":"2026-05-16T18:57:14.977Z","lastSeenAt":"2026-05-18T18:58:25.340Z"}],"details":{"listingId":"582a411b-21ef-40a9-b439-84b8f18ccc4d","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"AsyrafHussin","slug":"seo-best-practices","github":{"repo":"AsyrafHussin/agent-skills","stars":39,"topics":["agent-rules","agent-skills","ai-agents","ai-slop","claude-code","code-quality","code-review","codex","cursor","laravel","nodejs","react","technical-debt","typescript","windsurf"],"license":"mit","html_url":"https://github.com/AsyrafHussin/agent-skills","pushed_at":"2026-05-16T19:24:02Z","description":"Agent skills for AI coding agents (Claude Code, Cursor, Codex, Windsurf) — Laravel, React, TypeScript, MySQL, code quality, technical debt, documentation, and security.","skill_md_sha":"19f1fa2da56ec71ecf1b2df9854397ac50ccbc24","skill_md_path":"skills/seo-best-practices/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/AsyrafHussin/agent-skills/tree/main/skills/seo-best-practices"},"layout":"multi","source":"github","category":"agent-skills","frontmatter":{"name":"seo-best-practices","license":"MIT","description":"SEO patterns, conventions, and audit for web applications. Use when implementing meta tags, structured data, Core Web Vitals, sitemaps, Open Graph, auditing SEO, or optimizing pages for search engines. Triggers on \"audit SEO\", \"check SEO\", \"review SEO\", or tasks involving search optimization, schema markup, or social sharing meta tags."},"skills_sh_url":"https://skills.sh/AsyrafHussin/agent-skills/seo-best-practices"},"updatedAt":"2026-05-18T18:58:25.340Z"}}