Full AI allowlist in robots.txt.liquid
The most direct way to open your Shopify store to robots and AI crawlers for GEO is to edit your robots.txt.liquid file manually. Navigate to Online Store › Themes › Actions › Edit Code, then find or create robots.txt.liquid under Templates.
Add the following block above the default Liquid loop so that AI-crawler rules take precedence:
# AI crawler allowlist for GEO
User-agent: GPTBot
Allow: /
User-agent: OAI-SearchBot
Allow: /
User-agent: ChatGPT-User
Allow: /
User-agent: Google-Extended
Allow: /
User-agent: ClaudeBot
Allow: /
User-agent: Anthropic-ai
Allow: /
User-agent: PerplexityBot
Allow: /
User-agent: Applebot-Extended
Allow: /
# Default rules follow
{% for group in robots.default_groups %}
{{- group.user_agent -}}
{% for rule in group.rules %}
{{- rule -}}
{% endfor %}
{%- if group.sitemap != blank -%}
{{ group.sitemap }}
{%- endif -%}
{% endfor %}This configuration covers OpenAI (GPTBot for training, OAI-SearchBot for ChatGPT search, ChatGPT-User for browsing), Google Gemini and AI Overviews (Google-Extended), Anthropic Claude (ClaudeBot and Anthropic-ai), Perplexity, and Apple Siri and Spotlight (Applebot-Extended). Verify it is live by visiting yourstore.myshopify.com/robots.txt in a browser after saving.


























