Add robots.txt explicitly allowing all crawlers - #3995
Merged
Conversation
https://www.ruby-lang.org/robots.txt returns 404 today. Serve a permissive robots.txt with a Sitemap directive, as recommended by the Evil Martians LLM discoverability scorecard (https://ruby.evilmartians.com/). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Deploying www-ruby-lang-org with
|
| Latest commit: |
b54c9e7
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://58a5917a.www-ruby-lang-org.pages.dev |
| Branch Preview URL: | https://claude-optimistic-antonelli.www-ruby-lang-org.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://www.ruby-lang.org/robots.txtcurrently returns 404, so the crawler policy is only implicit. This adds a staticrobots.txtthat explicitly allows all crawlers, including AI crawlers such as GPTBot, ClaudeBot and CCBot, as recommended by Layer 0 of the Evil Martians LLM discoverability scorecard (https://ruby.evilmartians.com/). Jekyll copies the file to_site/robots.txtas-is, verified withbundle exec jekyll build.The
Sitemap:line points tohttps://www.ruby-lang.org/sitemap.xml, which does not exist yet. It will be added in a separate task introducingjekyll-sitemap. ASitemapdirective pointing to a not-yet-existing URL is harmless.Generated with Claude Code