Update old URL

This commit is contained in:
Lee Reilly
2026-03-01 13:43:00 -08:00
committed by Aaron Powell
parent 9c7caa8c1d
commit 805e472df3
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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()],

View File

@@ -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" },