From ab5712f773ceefddba343f16ab767bf82f9181de Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 25 Jul 2026 16:44:02 +0000 Subject: [PATCH 1/2] Initial plan From b88d2de6bd26c3bf6f08a89b6c2dc4ffbc4c614a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 25 Jul 2026 16:54:58 +0000 Subject: [PATCH 2/2] Add AI discovery endpoints for GEO optimization - Update /.well-known/ai.txt with explicit bot-specific Allow directives (GPTBot, ClaudeBot, PerplexityBot, GoogleBot, BingBot) and a Name field - Update /ai/summary.json to add url, repository, and category fields as required by the GEO spec for AI search visibility Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/public/.well-known/ai.txt | 9 +++++++-- docs/public/ai/summary.json | 9 +++++++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/docs/public/.well-known/ai.txt b/docs/public/.well-known/ai.txt index 6c49e5a6f3a..6084902f92e 100644 --- a/docs/public/.well-known/ai.txt +++ b/docs/public/.well-known/ai.txt @@ -1,5 +1,10 @@ -# GitHub Agentic Workflows - AI crawler permissions -Allow: / +# AI crawler permissions for github.github.com/gh-aw +Allow: GPTBot +Allow: ClaudeBot +Allow: PerplexityBot +Allow: GoogleBot +Allow: BingBot +Name: gh-aw — GitHub Agentic Workflows CLI extension Llms-txt: https://github.github.com/gh-aw/llms.txt Agents-txt: https://github.github.com/gh-aw/agents.txt Summary: https://github.github.com/gh-aw/ai/summary.json diff --git a/docs/public/ai/summary.json b/docs/public/ai/summary.json index 5a4afe5e961..0b9283ac11f 100644 --- a/docs/public/ai/summary.json +++ b/docs/public/ai/summary.json @@ -1,6 +1,11 @@ { - "name": "GitHub Agentic Workflows (gh-aw)", - "description": "Write agentic AI workflows in natural language markdown, run as GitHub Actions.", + "name": "gh-aw", + "description": "GitHub CLI extension that compiles markdown workflows into GitHub Actions", + "url": "https://github.github.com/gh-aw/", + "repository": "https://github.com/github/gh-aw", + "category": "developer-tools", + "longName": "GitHub Agentic Workflows (gh-aw)", + "longDescription": "Write agentic AI workflows in natural language markdown, run as GitHub Actions.", "version": "latest", "docs": "https://github.github.com/gh-aw/", "source": "https://github.com/github/gh-aw",