--- name: seo-llmo description: 'Use this skill whenever the user is building, reviewing, or preparing to launch any public-facing website or web app. SEO, LLMO, and agent-readiness are baseline requirements for every public site, not optional add-ons. Covers meta tags, Open Graph, JSON-LD structured data (including SoftwareApplication and Product types), robots.txt (including the Content-Signal directive), sitemap.xml, llms.txt (including agent instruction block and MCP declaration), AI crawler access (GPTBot, ClaudeBot, PerplexityBot), Markdown content negotiation for agents, Link response headers, Agent Skills index, A2A Agent Card, MCP server discovery, agent.json, pricing.md, and the "explicit absence beats silence" principle for agent-facing files. Trigger for marketing sites, landing pages, blogs, docs, and e-commerce stores; before any "launch" or "go live"; during pre-launch checklists; when the user mentions isitagentready.com, ora.run, agent-readiness, A2A, MCP discovery, Cloudflare Markdown for Agents, or wants AI agents (ChatGPT deep research, Claude, Perplexity, browser agents) to use their site; and when scaffolding a new public site, even if the user does not explicitly mention SEO. Skip for internal tools, admin panels, or auth-gated dashboards with no public surface.' --- # SEO & LLMO Implementation Guide > Applies to: Any website or web app | Updated: April 2026 A practical guide for implementing Search Engine Optimization (SEO), Large Language Model Optimization (LLMO), and agent-readiness - making your site discoverable and usable by search engines, AI chat tools, and autonomous agents. Agents (ChatGPT deep research, Claude with web, Perplexity, Cloudflare Agents, browser agents) don't just index your page, they fetch and act on it. That raises the bar on three things beyond classic SEO: telling crawlers what they may do with your content (Content Signals), serving a clean Markdown version on demand, and advertising any programmatic entry points you expose. You can check your agent-readiness score at [isitagentready.com](https://isitagentready.com/). --- ## Section 0: Before You Start Answer these questions before generating any code. Each has a default - use it if the user hasn't said otherwise. **Q: What kind of site is this?** (blog, online shop, company/marketing site, web app, documentation) Default: company/marketing site - drives which schema types to prioritize. **Q: How is the site built?** (plain HTML, React/Vue/Angular SPA, Next.js/Astro/Nuxt with server rendering, WordPress/CMS) Default: if a framework config file (e.g. `vite.config.*`, `next.config.*`, `astro.config.*`) is visible in the project, detect from that; otherwise assume plain HTML. **Q: Where are your visitors?** (one country, multiple countries/languages, worldwide) Default: worldwide, single language - skip hreflang unless multiple languages are confirmed. **Q: What's your main goal with SEO?** (show up in Google search, get cited by AI chat tools like ChatGPT/Perplexity, be usable by autonomous agents, social sharing, all of the above) Default: all of the above - the baseline checklist covers Google + AI chat citation + agent-readiness in one pass. **Q: Do you already have a robots.txt, sitemap, or structured data set up?** Default: no - but check for existing files before creating new ones, and merge rather than overwrite. > **AI assistant:** Read the user's answers (or use the defaults above) before generating any code. Skip sections that don't apply to their setup. --- ## Contents 1. [Structured Data (JSON-LD)](#structured-data-json-ld) 2. [llms.txt and llms-full.txt](#llmstxt-and-llms-fulltxt) 3. [robots.txt for AI and Search Crawlers](#robotstxt-for-ai-and-search-crawlers) 4. [Sitemap](#sitemap) 5. [Meta Tags and Social Sharing](#meta-tags-and-social-sharing) 6. [Agent-Readiness](#agent-readiness) 7. [Core Web Vitals](#core-web-vitals) 8. [SPA Considerations](#spa-considerations) 9. [Static Hosting Notes](#static-hosting-notes) 10. [Validation](#validation) --- ## Structured Data (JSON-LD) Applies when: any site where you want Google rich results or AI citation. JSON-LD (JavaScript Object Notation for Linked Data) is the highest-impact addition for both SEO and LLMO. Add it in `
`: ```html ``` **CSP interaction:** If your site uses a strict `Content-Security-Policy` with `script-src`, inline `What you do in one paragraph.