web-seo-crawl-indexing

Guides robots.txt edits, crawl-budget analysis, and indexing decisions before changing crawler access rules.

1|Updated Jun 23, 2026
One-click install
npx skills add https://github.com/bitranox/bitranox-skills --skill web-seo-crawl-indexing-bitranox
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: web-seo-crawl-indexing
Source: https://github.com/bitranox/bitranox-skills/tree/main/plugins/bitranox/skills/web-seo-crawl-indexing
Command: npx skills add https://github.com/bitranox/bitranox-skills --skill web-seo-crawl-indexing-bitranox

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Robots.txt mistakes fail silently: a wrong Disallow freezes pages in search results, kills image search, or disapproves product-feed listings, and the damage surfaces weeks later. This Skill forces the data checks that must happen before editing crawler rules. ## Core Features & Use Cases - Pre-edit data checks: Classify access logs by URL class and user-agent, and identify which paths real search visitors land on before blocking anything. - Crawl-versus-index rules: Explains why Disallow controls crawling while noindex controls indexing, and why combining both cancels deindexing. - Crawl trap and sitemap guidance: Identifies URL spaces multiplied by filters or language parameters, and covers sitemap staleness and retirement pitfalls. - Use Case: Ops asks you to block an asset host to cut crawler load. The Skill walks you through checking search arrivals first, keeping asset paths fetchable for image search and Merchant Center, and blocking only the noindex HTML surface. ## Quick Start Ask the AI to review a proposed robots.txt change for your site before applying it, including whether any blocked paths receive search traffic or serve images.

Frequently Asked Questions about web-seo-crawl-indexing

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I remove a page from Google search results?▼

Allow crawling and keep a noindex tag on the page until it drops from the index, then block it if needed. Blocking first with Disallow prevents the crawler from ever seeing the noindex, freezing the entry in results. A 410 Gone response is a faster permanent removal signal.

Does robots.txt reduce bandwidth or server load from crawlers?▼

Robots.txt is advisory and the wrong tool for bandwidth problems. Compliant crawlers like Googlebot are the ones sending you visitors, while scrapers driving the load ignore it. Use rate limiting, caching, or a WAF to control volume instead.

What happens if I block an image or asset host in robots.txt?▼

Blocking asset paths removes images from image search entirely, since you cannot put a noindex meta tag on a JPEG. Product feeds also fail validation because the crawler cannot fetch referenced images, which disapproves the listing rather than demoting it.

Does noindex save crawl budget?▼

No. A noindex page is still fetched every time, so it consumes crawl budget. Only blocking the path in robots.txt saves budget, but blocking should be reserved for paths that were never candidates to rank.

What is a crawl trap and how do I fix it?▼

A crawl trap is a URL space that multiplies without adding rankable pages, such as filter parameters, language pickers, or calendars. Noindex does not fix it because pages are still fetched; only blocking the trap at its root in robots.txt recovers the budget.

How do I retire a sitemap submitted to Search Console?▼

Removing the Sitemap line from robots.txt does not retire a sitemap submitted through a search console; it keeps being fetched. You must retire it at the source in the console. A stale sitemap is worse than none because it steers crawlers into dead ends.