Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions src/pages/robots.txt.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
import type { APIRoute } from "astro";

const robotsTxt = `
# AI Search & Citation Bots — block these = disappear from AI answers
User-agent: OAI-SearchBot
Allow: /

User-agent: ChatGPT-User
Allow: /

User-agent: Claude-SearchBot
Allow: /

User-agent: Claude-User
Allow: /

User-agent: PerplexityBot
Allow: /

# AI Training Bots — feeds model knowledge of Akash
User-agent: GPTBot
Allow: /

User-agent: ClaudeBot
Allow: /

User-agent: Google-Extended
Allow: /

User-agent: CCBot
Allow: /

# Block low-value scrapers
User-agent: Bytespider
Disallow: /

# Standard crawlers
User-agent: *
Allow: /

Expand Down
Loading