mirror of
https://github.com/github/awesome-copilot.git
synced 2026-03-13 12:45:13 +00:00
Merge pull request #847 from leereilly/patch-1
Add `awesome-copilot.github.com` CNAME :copilot:
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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()],
|
||||
|
||||
@@ -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**: https://awesome-copilot.github.com\n";
|
||||
|
||||
return new Response(content, {
|
||||
headers: { "Content-Type": "text/plain; charset=utf-8" },
|
||||
|
||||
Reference in New Issue
Block a user