Merge pull request #847 from leereilly/patch-1

Add `awesome-copilot.github.com` CNAME :copilot:
This commit is contained in:
Aaron Powell
2026-03-02 09:11:18 +11:00
committed by GitHub
4 changed files with 5 additions and 4 deletions

1
CNAME Normal file
View File

@@ -0,0 +1 @@
awesome-copilot.github.com

View File

@@ -57,7 +57,7 @@ To make it easy to add these customizations to your editor, we have created an [
## 📄 llms.txt ## 📄 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 ## 🔧 How to Use

View File

@@ -3,7 +3,7 @@ import { defineConfig } from "astro/config";
// https://astro.build/config // https://astro.build/config
export default defineConfig({ export default defineConfig({
site: "https://github.github.io/awesome-copilot", site: "https://awesome-copilot.github.com/",
base: "/awesome-copilot/", base: "/awesome-copilot/",
output: "static", output: "static",
integrations: [sitemap()], integrations: [sitemap()],

View File

@@ -10,7 +10,7 @@ export const GET: APIRoute = () => {
const agents = agentsData.items; const agents = agentsData.items;
const instructions = instructionsData.items; const instructions = instructionsData.items;
const skills = skillsData.items; const skills = skillsData.items;
const url = (path: string) => `${GITHUB_RAW_BASE}/${path}`; const url = (path: string) => `${GITHUB_RAW_BASE}/${path}`;
let content = ""; let content = "";
@@ -79,7 +79,7 @@ export const GET: APIRoute = () => {
content += "## Repository\n\n"; content += "## Repository\n\n";
content += "- **GitHub**: https://github.com/github/awesome-copilot\n"; content += "- **GitHub**: https://github.com/github/awesome-copilot\n";
content += "- **License**: MIT\n"; content += "- **License**: MIT\n";
content += "- **Website**: https://github.github.io/awesome-copilot\n"; content += "- **Website**: https://awesome-copilot.github.com\n";
return new Response(content, { return new Response(content, {
headers: { "Content-Type": "text/plain; charset=utf-8" }, headers: { "Content-Type": "text/plain; charset=utf-8" },