Add AI Catalog generation for .well-known manifest#2060
Open
aaronpowell wants to merge 1 commit into
Open
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Adds phase 1 ARD support by generating and publishing an AI Catalog manifest (.well-known/ai-catalog.json) from the repository’s existing website metadata pipeline, enabling static discovery without introducing a runtime API service.
Changes:
- Added AI Catalog generation that aggregates agents, instructions, skills, hooks, workflows, and plugins into a single manifest.
- Introduced helpers for normalized URLs and stable URN-style identifiers.
- Wrote the AI Catalog output into
website/public/.well-known/ai-catalog.jsonduringnpm run website:data.
Show a summary per file
| File | Description |
|---|---|
| eng/generate-website-data.mjs | Generates an AI Catalog manifest from existing resource metadata and writes it to website/public/.well-known/ai-catalog.json. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 2
Comment on lines
+152
to
+158
| return { | ||
| identifier: `urn:ai:awesome-copilot.github.com:${category}:${toUrnSegment(id)}`, | ||
| displayName: normalizeText(displayName, id), | ||
| type, | ||
| url, | ||
| description: normalizeDescription(description), | ||
| }; |
Comment on lines
+259
to
+262
| host: { | ||
| displayName: "Awesome GitHub Copilot", | ||
| identifier: "awesome-copilot.github.com", | ||
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
This adds phase 1 ARD support by publishing an AI Catalog manifest from the repository's existing metadata pipeline. The goal is to make Awesome Copilot resources discoverable by external ARD-compatible discovery services (for example, Agent Finder) without introducing a new runtime API service.
Implementation details:
eng/generate-website-data.mjsto build AI Catalog entries from existing generated resource sets: agents, instructions, skills, hooks, workflows, and plugins.website/public/.well-known/ai-catalog.jsonduringnpm run website:data.Type of Contribution
Additional Notes
This PR intentionally focuses on static publication only. It does not add ARD
POST /searchorPOST /exploreendpoints, which would require a separate hosted service beyond the current static website model.By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.