Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
awesome-copilot.github.com
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion website/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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()],
Expand Down
4 changes: 2 additions & 2 deletions website/src/pages/llms.txt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "";
Expand Down Expand Up @@ -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" },
Expand Down