seo-ready
Installation
SKILL.md
Full SEO and AEO audit that reads the codebase, scores every signal, and applies the fixes. Not just a report — it changes the files.
Phase 1: Detect the Stack
Identify the framework and routing pattern before doing anything else.
Check for these in order:
next.config.*→ Next.js (check version in package.json — v13+ uses App Router withgenerateMetadata, older uses_documentandnext/head)astro.config.*→ Astro (uses frontmatter +<head>in layouts)nuxt.config.*→ Nuxt (usesuseHeadoruseSeoMeta)svelte.config.*→ SvelteKit (uses<svelte:head>)index.htmlat root → Static HTML / Vite SPAgatsby-config.*→ Gatsby (usesgatsby-plugin-react-helmet)
Find all pages/routes:
- Next.js App Router:
app/**/page.tsxorpage.jsx - Next.js Pages Router:
pages/**/*.tsx - Astro:
src/pages/**/*.astro - Static: all
.htmlfiles