Agent skill · Testing & QA

nextjs-seo-indexing

Fix SEO indexing issues, crawl budget problems, and Search Console coverage errors for Next.js apps. Covers canonical tags, noindex audits, sitemap health, static rendering, and internal linking.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill nextjs-seo-indexing --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Whoisabhishekadhikari
Path: skills/nextjs-seo-indexing/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Next.js SEO Indexing & Crawl Budget Skill Fix Google Search Console coverage issues, canonical problems, sitemap errors, and crawl budget waste in Next.js apps. --- ## When to Use - Use when a Next.js site has Google Search Console coverage issues such as duplicate canonicals, accidental noindex, crawl waste, or discovered-but-not-indexed URLs. - Use when auditing sitemap, robots.txt, redirect, internal-linking, or static-rendering problems before an SEO release. - Use when you need framework-specific examples for Next.js App Router metadata, `generateMetadata`, `robots.js`, and sitemap routes. --- ## Understanding Search Console Coverage States | Status | Meaning | Fix | |--------|---------|-----| | Crawled – not indexed | Google crawled but chose not to index | Improve content quality + canonical + internal links | | Duplicate without canonical | Multiple URLs serve same content, no canonical | Add explicit canonical to the preferred URL | | Excluded by noindex | `noindex` tag present | Remove noindex if page should be indexed | | Duplicate, Google chose different canonical | Google prefers a different URL than you specified | Align canonical with the URL Google naturally picks

What's inside
Steps it walks through
  1. When to Use
  2. Understanding Search Console Coverage States
  3. Step 1 — Canonical Audit
  4. Next.js App Router (metadata export)
  5. Next.js App Router (generateMetadata)
  6. Common canonical mistakes to fix:
  7. Step 2 — Noindex Audit
  8. Step 3 — Sitemap Health
  9. Verify sitemap routes return 200 + valid XML
  10. Next.js App Router sitemap (recommended pattern)
  11. Multiple sitemaps (sitemap index)
  12. Step 4 — Static Rendering Verification
  13. Step 5 — Internal Linking Audit
  14. Step 6 — Redirect Audit
Commands it runs
Search for noindex in metadata
rg -n --glob '*.{js,ts,jsx,tsx}' 'noindex|robots.*noindex' app pages
Check layout.js — a noindex here affects ALL pages
grep -n "robots" app/layout.js
curl -sI https://www.yourdomain.com/sitemap.xml | grep -i "content-type\|status"
curl -s https://www.yourdomain.com/sitemap.xml | head -20
Check build output — pages should show ● (static) not λ (dynamic)
npm run build 2>&1 | grep -E "○|●|λ|/blog|/tools"
Find pages that have no inbound links from other pages
grep -r "/blog/my-orphan-post" --include="*.{js,ts,jsx,tsx,md}" . | grep -v "sitemap\|the-page-itself"
More from agentic-awesome-skills
All skills →
About this skill
What does the nextjs-seo-indexing skill do?

Fix SEO indexing issues, crawl budget problems, and Search Console coverage errors for Next.js apps. Covers canonical tags, noindex audits, sitemap health, static rendering, and internal linking.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill nextjs-seo-indexing --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going