ClaudeBot blocked in robots.txt (HTML project)
What this means
Section titled “What this means”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.
How to fix it
Section titled “How to fix it”Open robots.txt in your project root and remove the ClaudeBot block:
# Remove these linesUser-agent: ClaudeBotDisallow: /To allow ClaudeBot site-wide, delete both lines. To restrict specific paths:
User-agent: ClaudeBotDisallow: /private/Verify the fix
Section titled “Verify the fix”Check the file in your project:
grep -A 3 "ClaudeBot" robots.txtNo 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.