Skip to content

ClaudeBot blocked in robots.txt (HTML project)

Orino found Disallow: / under User-agent: ClaudeBot in your project’s robots.txt file. ClaudeBot is Anthropic’s web crawler. Blocking it prevents Anthropic from indexing your content once deployed, which reduces the likelihood of your site appearing in Claude’s responses.

This check runs during disk-only audits — when Orino scans a plain HTML project without fetching a live URL. It reads the robots.txt file directly from your project directory.

Open robots.txt in your project root and remove the ClaudeBot block:

# Remove these lines
User-agent: ClaudeBot
Disallow: /

To allow ClaudeBot site-wide, delete both lines. To restrict specific paths:

User-agent: ClaudeBot
Disallow: /private/

Check the file in your project:

Terminal window
grep -A 3 "ClaudeBot" robots.txt

No output means ClaudeBot falls back to your wildcard rules. Disallow: / means the block is still active. Re-run orino audit to confirm the check passes.