From 9c7caa8c1d66429dacfce88c3201882e9e15ce00 Mon Sep 17 00:00:00 2001 From: Lee Reilly Date: Sun, 1 Mar 2026 13:34:24 -0800 Subject: [PATCH 1/5] Add CNAME for custom domain --- CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 CNAME diff --git a/CNAME b/CNAME new file mode 100644 index 00000000..9762d927 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +awesome-copilot.github.com From 805e472df31243f8eb5944c9abd81e38826ebc57 Mon Sep 17 00:00:00 2001 From: Lee Reilly Date: Sun, 1 Mar 2026 13:43:00 -0800 Subject: [PATCH 2/5] Update old URL --- README.md | 2 +- website/astro.config.mjs | 2 +- website/src/pages/llms.txt.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5ab34b4e..90bfdd7d 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ To make it easy to add these customizations to your editor, we have created an [ ## 📄 llms.txt -An [`llms.txt`](https://github.github.io/awesome-copilot/llms.txt) file following the [llmstxt.org](https://llmstxt.org/) specification is available on the GitHub Pages site. This machine-readable file makes it easy for Large Language Models to discover and understand all available agents, instructions, and skills, providing a structured overview of the repository's resources with names and descriptions. +An [`llms.txt`](https://awesome-copilot.github.com//llms.txt) file following the [llmstxt.org](https://llmstxt.org/) specification is available on the GitHub Pages site. This machine-readable file makes it easy for Large Language Models to discover and understand all available agents, instructions, and skills, providing a structured overview of the repository's resources with names and descriptions. ## 🔧 How to Use diff --git a/website/astro.config.mjs b/website/astro.config.mjs index 34ac6f16..18995c39 100644 --- a/website/astro.config.mjs +++ b/website/astro.config.mjs @@ -3,7 +3,7 @@ import { defineConfig } from "astro/config"; // https://astro.build/config export default defineConfig({ - site: "https://github.github.io/awesome-copilot", + site: "https://awesome-copilot.github.com/", base: "/awesome-copilot/", output: "static", integrations: [sitemap()], diff --git a/website/src/pages/llms.txt.ts b/website/src/pages/llms.txt.ts index bd5a0647..b75153ab 100644 --- a/website/src/pages/llms.txt.ts +++ b/website/src/pages/llms.txt.ts @@ -10,7 +10,7 @@ export const GET: APIRoute = () => { const agents = agentsData.items; const instructions = instructionsData.items; const skills = skillsData.items; - + const url = (path: string) => `${GITHUB_RAW_BASE}/${path}`; let content = ""; @@ -79,7 +79,7 @@ export const GET: APIRoute = () => { content += "## Repository\n\n"; content += "- **GitHub**: https://github.com/github/awesome-copilot\n"; content += "- **License**: MIT\n"; - content += "- **Website**: https://github.github.io/awesome-copilot\n"; + content += "- **Website**: awesome-copilot.github.com\n"; return new Response(content, { headers: { "Content-Type": "text/plain; charset=utf-8" }, From a79f12fe1999b841f88bedffe2f9fc41668e7261 Mon Sep 17 00:00:00 2001 From: Lee Reilly Date: Sun, 1 Mar 2026 13:45:58 -0800 Subject: [PATCH 3/5] Remove linebreak --- CNAME | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CNAME b/CNAME index 9762d927..9e2995ab 100644 --- a/CNAME +++ b/CNAME @@ -1 +1 @@ -awesome-copilot.github.com +awesome-copilot.github.com \ No newline at end of file From e5084eba1cad496fe36f4795e889962b0169a8b4 Mon Sep 17 00:00:00 2001 From: Lee Reilly Date: Sun, 1 Mar 2026 13:50:29 -0800 Subject: [PATCH 4/5] Update URL --- website/src/pages/llms.txt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/llms.txt.ts b/website/src/pages/llms.txt.ts index b75153ab..5ac88aed 100644 --- a/website/src/pages/llms.txt.ts +++ b/website/src/pages/llms.txt.ts @@ -79,7 +79,7 @@ export const GET: APIRoute = () => { content += "## Repository\n\n"; content += "- **GitHub**: https://github.com/github/awesome-copilot\n"; content += "- **License**: MIT\n"; - content += "- **Website**: awesome-copilot.github.com\n"; + content += "- **Website**: https://awesome-copilot.github.com\n"; return new Response(content, { headers: { "Content-Type": "text/plain; charset=utf-8" }, From affdc3b50571ab7eca939bb4fe798939983b2cd7 Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Mon, 2 Mar 2026 09:10:58 +1100 Subject: [PATCH 5/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 90bfdd7d..9c374261 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ To make it easy to add these customizations to your editor, we have created an [ ## 📄 llms.txt -An [`llms.txt`](https://awesome-copilot.github.com//llms.txt) file following the [llmstxt.org](https://llmstxt.org/) specification is available on the GitHub Pages site. This machine-readable file makes it easy for Large Language Models to discover and understand all available agents, instructions, and skills, providing a structured overview of the repository's resources with names and descriptions. +An [`llms.txt`](https://awesome-copilot.github.com/llms.txt) file following the [llmstxt.org](https://llmstxt.org/) specification is available on the GitHub Pages site. This machine-readable file makes it easy for Large Language Models to discover and understand all available agents, instructions, and skills, providing a structured overview of the repository's resources with names and descriptions. ## 🔧 How to Use