Skip to content

Commit e71955f

Browse files
authored
Merge pull request #847 from leereilly/patch-1
Add `awesome-copilot.github.com` CNAME :copilot:
2 parents f0ab433 + affdc3b commit e71955f

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
awesome-copilot.github.com

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To make it easy to add these customizations to your editor, we have created an [
5757

5858
## 📄 llms.txt
5959

60-
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.
60+
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.
6161

6262
## 🔧 How to Use
6363

website/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { defineConfig } from "astro/config";
33

44
// https://astro.build/config
55
export default defineConfig({
6-
site: "https://github.github.io/awesome-copilot",
6+
site: "https://awesome-copilot.github.com/",
77
base: "/awesome-copilot/",
88
output: "static",
99
integrations: [sitemap()],

website/src/pages/llms.txt.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const GET: APIRoute = () => {
1010
const agents = agentsData.items;
1111
const instructions = instructionsData.items;
1212
const skills = skillsData.items;
13-
13+
1414
const url = (path: string) => `${GITHUB_RAW_BASE}/${path}`;
1515

1616
let content = "";
@@ -79,7 +79,7 @@ export const GET: APIRoute = () => {
7979
content += "## Repository\n\n";
8080
content += "- **GitHub**: https://github.com/github/awesome-copilot\n";
8181
content += "- **License**: MIT\n";
82-
content += "- **Website**: https://github.github.io/awesome-copilot\n";
82+
content += "- **Website**: https://awesome-copilot.github.com\n";
8383

8484
return new Response(content, {
8585
headers: { "Content-Type": "text/plain; charset=utf-8" },

0 commit comments

Comments
 (0)