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:

  1. next.config.* → Next.js (check version in package.json — v13+ uses App Router with generateMetadata, older uses _document and next/head)
  2. astro.config.* → Astro (uses frontmatter + <head> in layouts)
  3. nuxt.config.* → Nuxt (uses useHead or useSeoMeta)
  4. svelte.config.* → SvelteKit (uses <svelte:head>)
  5. index.html at root → Static HTML / Vite SPA
  6. gatsby-config.* → Gatsby (uses gatsby-plugin-react-helmet)

Find all pages/routes:

  • Next.js App Router: app/**/page.tsx or page.jsx
  • Next.js Pages Router: pages/**/*.tsx
  • Astro: src/pages/**/*.astro
  • Static: all .html files
Related skills

More from tushaarmehtaa/tushar-skills

Installs
5
GitHub Stars
4
First Seen
Mar 8, 2026