trackmcp
Back to directory
daniel-amekpoagbe

react-seo-skills

View on GitHub

Agent skill for Cursor, Claude Code & Codex — SEO + GEO for Next.js and React apps. Metadata, JSON-LD, sitemaps, llms.txt.

3 stars JavaScriptOthers Updated Jul 24, 2026

Documentation

React SEO Skills

npm
license

An agent skill that teaches Cursor, Claude Code, and Codex how to

implement SEO and GEO (AI visibility) in Next.js and React apps.

It covers the full workflow — keyword strategy, metadata, Open Graph, Schema.org

JSON-LD, sitemaps, `robots.txt`, and `llms.txt` — with patterns tailored to your

stack: Next.js App Router, Pages Router, or Vite + React.

> [!IMPORTANT]

> This is a CLI installer, not a runtime dependency.

> Run `npx react-seo-skills` — do not run `npm install react-seo-skills`.

> `npm install` only downloads the package; it never copies the skill into your

> agent's directory, so nothing will appear to happen. If you added it to your

> dependencies by mistake, remove it with `npm uninstall react-seo-skills` and

> run `npx react-seo-skills` instead.

bash
npx react-seo-skills

Contents


How agent skills work

This package does not add a runtime dependency to your app. It installs a set of

Markdown files — an *agent skill* — into your AI coding agent's skill directory.

When you ask the agent an SEO question, it discovers the skill from the

`description` in `SKILL.md` and reads the relevant reference files on demand.

In short, you are installing knowledge, not a library. Nothing is imported

into your code and nothing ships to production. This is also why you run it with

`npx` (which executes the installer) instead of `npm install` (which would only

download the files without copying them into place).


Why this exists

Most SEO advice is generic and stack-agnostic. This skill is built for how modern

React apps actually ship:

  • Language-aware. Detects JavaScript vs TypeScript and writes code in the

matching language — no stray types in a JS project, no missing types in a TS one.

  • Stack-aware. Detects Next.js App Router, Pages Router, or Vite + React and

applies the correct APIs for each. It never mixes Next.js patterns into a Vite

project, or vice versa.

  • GEO-ready. Covers Generative Engine Optimization — making your site legible

and citable to ChatGPT, Perplexity, Claude, and Google AI Overviews.

  • Version-aware. Tells the agent its training data may be stale — it must

check the installed framework versions and current docs before writing code,

instead of implementing from memory.

  • Asks, doesn't guess. The agent asks for your real site name, domain, OG

image, and social handles — placeholder values never slip silently into your

codebase.

  • DRY by design. Metadata is defined once — through a shared `SEO` component,

layout-level defaults, or schema helpers — never copy-pasted across pages.

  • SPA-honest. Installs and configures

`react-helmet-async` for

client-rendered apps, and warns clearly about the SEO limits of CSR.

  • Audit-capable. Includes a structured SEO audit workflow the agent can run

against an existing project and report back as Critical / Suggestion / OK.


Quick start

Run from your project root and follow the prompts:

bash
npx react-seo-skills

By default this installs the skill for all three agents (Cursor, Claude Code, and

Codex) into the current project. No extra configuration is required — agents

discover the skill automatically from the `description` in `SKILL.md`.


CLI reference

bash
npx react-seo-skills [options]
OptionDescription
*(none)*Install for all agents into the current project
`--all`Install for all agents (explicit form of the default)
`--cursor`Install for Cursor only
`--claude`Install for Claude Code only
`--codex`Install for Codex only
`--global`Install to user-level directories (`~/.cursor`, `~/.claude`, `~/.codex`)
`--force`Overwrite an existing installation
`--dry-run`Show what would be installed without writing any files
`--help`Show usage information

You can combine flags. A few common examples:

bash
npx react-seo-skills --global              # available in every project
npx react-seo-skills --cursor --claude     # only these two agents
npx react-seo-skills --codex --force       # reinstall for Codex, overwriting
npx react-seo-skills --dry-run             # preview the changes first

Where it installs

AgentProject pathGlobal path (`--global`)
Cursor`.cursor/skills/react-seo-skills/``~/.cursor/skills/react-seo-skills/`
Claude Code`.claude/skills/react-seo-skills/``~/.claude/skills/react-seo-skills/`
Codex`.agents/skills/react-seo-skills/``~/.codex/skills/react-seo-skills/`

After installing, restart Claude Code or Codex if the skill does not

appear — they rescan their skill directories on startup. Cursor picks it up

automatically.


Updating

To pull the latest version into an existing install, re-run with `@latest` and

`--force`:

bash
npx react-seo-skills@latest --force
GoalCommand
Update a project install`npx react-seo-skills@latest --force`
Update a global install`npx react-seo-skills@latest --global --force`
  • `@latest` bypasses the `npx` cache. A plain `npx react-seo-skills` may

re-run an older cached copy without checking the registry.

  • `--force` overwrites the existing skill files — without it the installer

detects the current install and skips with "already exists."

After updating, restart Claude Code or Codex so they rescan the skill

directory. Cursor picks up changes automatically.


What the agent learns

AreaWhat it covers
KeywordsIdeation, search-intent clustering, validation, and cannibalization checks
MetadataTitle, description, canonical, Open Graph, Twitter cards, and hreflang
Structured dataSchema.org JSON-LD — Organization, Article, FAQ, LocalBusiness, and more
Sitemap & robots`sitemap.ts` / `sitemap.xml`, `robots.ts` / `robots.txt`, and AI crawler rules
GEO`llms.txt`, `/ai` knowledge pages, entity schema, and AI-citation structure
Vite / SPA`react-helmet-async` setup, CSR warnings, and prerendering guidance

Supported stacks

StackReferenceStatus
Next.js App Router`skill/references/app-router.md`Available
Next.js Pages Router`skill/references/pages-router.md`Available
Vite + React / CRA`skill/references/react-vite.md`Available
AstroPlanned (`0.1.0`)
TanStack StartPlanned (`0.2.0`)

See the roadmap for details on planned stacks.


Example prompts

Once the skill is installed, ask your agent things like:

  • "Set up SEO metadata for my Next.js app."
  • "Audit the SEO on this project and report what's missing."
  • "Add Schema.org JSON-LD to my blog posts."
  • "Write an `llms.txt` so AI search engines understand my site."
  • "My Vite SPA isn't ranking — what should I do?"
  • "Set up a sitemap and `robots.txt` that allow AI crawlers."

Skill structure

text
skill/
├── SKILL.md                       Entry point — rules, detection order, audit workflow
└── references/
    ├── language.md                JavaScript vs TypeScript detection
    ├── keywords.md                Keyword clustering and validation
    ├── app-router.md              Next.js App Router patterns
    ├── pages-router.md            Next.js Pages Router patterns
    ├── react-vite.md              Vite / SPA workflow
    ├── react-helmet-async.md      react-helmet-async install and API reference
    ├── structured-data.md         Schema.org JSON-LD templates
    ├── geo.md                     AI visibility (GEO)
    └── validation.md              Post-implementation checklist

`SKILL.md` stays intentionally small. It links to the reference files, which the

agent loads only when they are relevant to the task.


Requirements

  • Node.js 18 or newer
  • A project using Next.js or React (Vite or CRA)

Roadmap

Upcoming stack support is tracked in CHANGELOG.md:

VersionStackScope
`0.1.0`Astro`` metadata, content collections, `@astrojs/sitemap`, `robots.txt`, JSON-LD
`0.2.0`TanStack StartRoute-level `head()` metadata, server routes for sitemap/robots, JSON-LD

Want to help build these? See CONTRIBUTING.md.


Contributing

Contributions are welcome — content corrections, new stack support, and installer

improvements. Start with CONTRIBUTING.md and please read the

Code of Conduct.

bash
git clone https://github.com/daniel-amekpoagbe/react-seo-skills.git
cd react-seo-skills
npm test

Author

**Daniel Amekpoagbe** — Full-Stack Developer, Accra, Ghana.

Building fast, SEO-ready React and Next.js apps. Portfolio at

amekpoagbe.com.


License

MIT — Copyright (c) 2026 Daniel Amekpoagbe

Frequently asked questions

What is react-seo-skills?

react-seo-skills is Agent skill for Cursor, Claude Code & Codex — SEO + GEO for Next.js and React apps. Metadata, JSON-LD, sitemaps, llms.txt.

How do I install react-seo-skills?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is react-seo-skills open source?

Yes — it is hosted on GitHub at https://github.com/daniel-amekpoagbe/react-seo-skills and has 3 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP