Want to list your augment (skill or MCP server) in the catalog? Open a pull request following the steps below. Contributions to this project are released to the public under the project's open source license.
catalog/
└── <publisher>/
└── <augment-name>.json
Each augment is a single JSON file located under your publisher directory.
gh repo fork github/agentfinder-catalog --clone
cd agentfinder-catalogYour publisher name should match your GitHub organization or username.
mkdir -p catalog/<your-publisher>Create a file at catalog/<your-publisher>/<augment-name>.json with the following schema:
{
"identifier": "urn:ai:github.com:<publisher>:<repo>:<augment-name>",
"displayName": "Human-Readable Name",
"mediaType": "application/ai-skill",
"url": "https://github.com/<publisher>/<repo>/blob/main/path/to/SKILL.md",
"description": "A short description of what this augment does.",
"metadata": {
"sourceSet": "<repo>",
"repoPath": "path/to/SKILL.md"
}
}| Field | Required | Description |
|---|---|---|
identifier |
✅ | A URN uniquely identifying the augment. Format: urn:ai:github.com:<publisher>:<repo>:<name> |
displayName |
✅ | A human-readable display name |
mediaType |
✅ | The type of augment (e.g., application/ai-skill) |
url |
✅ | URL to the augment's definition file (e.g., SKILL.md) |
description |
✅ | A brief description of the augment's purpose |
metadata.sourceSet |
✅ | The source repository name |
metadata.repoPath |
✅ | Path to the definition file within the repository |
Make sure your file is valid JSON:
python -m json.tool catalog/<your-publisher>/<augment-name>.jsongit checkout -b add-<augment-name>
git add catalog/
git commit -m "Add <augment-name> to catalog"
git push origin add-<augment-name>
gh pr create --title "Add <augment-name>" --body "Adds <augment-name> to the agentfinder catalog."- One file per augment — don't bundle multiple augments into a single file.
- Use kebab-case for file names (e.g.,
my-cool-skill.json). - Keep descriptions concise — one or two sentences.
- Ensure your URL is publicly accessible so reviewers can verify the augment definition.
Open an issue if you have questions or need help getting your augment listed.