thedaviddias/front-end-checklist

all-noindex-pages

Use when auditing metadata, crawlability, structured data, or indexability related to Audit all noindex pages. Verify the rendered HTML and HTTP response rather than relying only on source files.

First seen Aug 11, 2026

Installation

$ npx skills add thedaviddias/front-end-checklist --skill all-noindex-pages

Also in this package

Other skills from thedaviddias/front-end-checklist · top by installs.

npx skills add thedaviddias/front-end-checklist

Browse all from thedaviddias/front-end-checklist

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 74.1K
License MIT
Default branch main
Open issues 5
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
category
seo
priority
medium
difficulty
intermediate
estimatedTime
10
source
frontendchecklist.io
url
https://frontendchecklist.io/en/rules/seo/all-noindex-pages

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,679 B
  • docs SUMMARY.md 220 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 9 installs

SKILL.md

Audit all noindex pages

An incorrect noindex tag can completely remove important pages from search results, while proper usage helps manage crawl budget and prevents duplicate content issues.

Quick Reference

  • Identify all pages using the noindex directive in meta tags or headers
  • Verify that critical pages (products, articles) aren't accidentally blocked
  • Ensure noindex is correctly applied to thin content, admin, or utility pages

Check

Verify that the noindex directive is only applied to pages that should not appear in search results.

Fix

Remove <meta name="robots" content="noindex"> from pages that should be indexed and ranking.

Explain

Explain the difference between noindex and disallow in robots.txt and when to use each for optimal SEO.

Code Review

Review metadata generation, rendered HTML, structured data, and response headers related to Audit all noindex pages. Flag exact routes or templates where search-facing output violates the rule, and describe how to verify the final page output.


For full implementation details, code examples, and framework-specific guidance, see references/rule.md.

Rule page: https://frontendchecklist.io/en/rules/seo/all-noindex-pages