Drop this repo into your AI coding assistant. It auto-detects the workflow, maps every public route of your site, audits each page against Google's official SEO rules, and fixes the gaps β step by step, nothing left out.
SEO Prompt Master is two things in one repo:
- A complete, up-to-date knowledge base of Google's SEO guidance (
docs/), distilled from Google Search Central and web.dev, split into 9 focused, cited topics. - A self-executing prompt workflow (
START.md+prompts/) that turns any AI coding assistant into an autonomous SEO auditor for your codebase.
You don't read a 200-page guide and try to remember it. You hand the whole thing to your AI, and it does the audit-and-fix loop for your actual routes, citing the exact rule behind every change.
Built from a real audit of a 40-locale, 574K-concurrent-user production site (mcstat.org) β the methodology is battle-tested, not theoretical.
- Copy this folder into your project (or open it alongside your repo).
- Tell your assistant:
"Read
START.mdand run the workflow on this project." - It will produce
ROUTES-INVENTORY.mdandSEO-AUDIT-PROGRESS.md, then fix issues page by page, verifying as it goes.
- Paste the contents of
START.md(and, if it fits, thedocs/). - Give it your repo (zip, paste files, or connect the tool to your codebase).
- Say "Begin at Phase 0."
Read docs/ as a clean, current reference for Google SEO. Start at docs/README.md.
seo-prompt-master/
βββ START.md β the bootstrap prompt (AI reads this first)
βββ prompts/ β the 5-phase workflow
β βββ 00-bootstrap.md detect stack + load knowledge base
β βββ 01-discover-routes.md enumerate & classify every route
β βββ 02-audit-page.md 9-point audit per public page
β βββ 03-prioritize-fixes.md one ordered backlog (infra-first)
β βββ 04-apply-and-verify.md fix + typecheck/lint/build + prove it
βββ docs/ β the knowledge base (source of truth)
β βββ 01-meta-and-head.md
β βββ 02-internationalization.md
β βββ 03-ugc-forums-blogs.md
β βββ 04-page-structure.md
β βββ 05-rendering-and-core-web-vitals.md
β βββ 06-sitemaps.md
β βββ 07-image-seo.md
β βββ 08-structured-data.md
β βββ 09-2024-2026-updates.md
βββ checklists/ β quick pass/fail lists
β βββ public-page-checklist.md
β βββ infrastructure-checklist.md
βββ templates/ β output files the AI fills in
β βββ routes-inventory.md
β βββ audit-progress.md
βββ examples/ β a worked example
START.md
β
ββ Phase 0 Bootstrap ......... detect framework, rendering, i18n; load docs/
ββ Phase 1 Discover .......... list EVERY route β ROUTES-INVENTORY.md
β classify: public-index / public-noindex / private
ββ Phase 2 Audit ............. 9-point check per public page β SEO-AUDIT-PROGRESS.md
ββ Phase 3 Prioritize ........ one backlog, infra-first (P1 β P2 β P3)
ββ Phase 4 Fix & verify ...... change β typecheck/lint/build β prove β tick
Metadata Β· Canonical + hreflang Β· Robots/indexing Β· Structured data (JSON-LD) Β· Headings & semantics Β· Images Β· Internal links & pagination Β· Rendering (SSR/CSR) Β· Sitemap.
Every rule traces to a cited section in docs/. See checklists/public-page-checklist.md.
Most "SEO checklists" are shallow, outdated, or generic. This one is:
- Current (2024β2026: Helpful Content, core updates, AI Overviews, the 2024 Starter Guide refresh).
- Cited (every claim links to Google's own docs).
- Executable (an AI can actually run it on your code, not just read it).
- Honest (it distinguishes ranking factors from a11y-only niceties, and logs deliberate skips).
Umut Bayraktar β @umutxyp
Full-stack developer (React Β· Next.js Β· Node.js Β· PostgreSQL) & AI-systems tinkerer. Founder at Codeshare Technology. Antalya, Turkey.
Building things people actually use:
- π΅ Beatra β multi-platform Discord music bot (1.2M+ users)
- π‘οΈ Sylon β AI-powered Discord moderation (20K+ users)
- π§© Codeshare β digital marketplace for code & content (15K+ users)
- βοΈ McStat.org β Minecraft server stats (574K+ concurrent players) β the site this toolkit was forged on
π Links: Portfolio Β· GitHub Β· Codeshare β Notable OSS: MusicBot (1.3kβ ) Β· Personal-Website Β· Discord-Bot-Website
If this saved you time, star the repo and share it. π
MIT Β© Umut Bayraktar (@umutxyp). Knowledge base compiled from public Google Search Central & web.dev documentation; all trademarks belong to their owners. This project is not affiliated with or endorsed by Google.
Google's guidance evolves β PRs that update a rule (with a source link) or add a framework recipe are very welcome. See CONTRIBUTING.md.