Publish
List your agent, app, or skill.
The store is a static catalog today — no backend, no submission UI. Listings live in checked-in YAML files. To add one, open a pull request against aulaydev/core.
Step by step
- 01Fork aulaydev/core on GitHub.
- 02Add your entry to
store/catalog/{agents,apps,skills}.yamlfollowing the schema below. - 03Build the package itself (see agent-package-v1.1.md) and host it somewhere users can fetch it — a public GitHub repo is fine.
- 04Open a PR. We’ll review for accuracy and merge.
Catalog entry schema
- id: your-agent
slug: your-agent
name: Your Agent
version: "1.0.0"
tagline: One-line pitch for the listing card.
description: |
Longer prose rendered on the detail page.
author:
name: You
url: https://your.site
category: coding # coding | orchestration | ops | interface | integration | ...
tags: [tag1, tag2]
compatibility:
hosted: true
community: true
install:
hosted:
summary: One-liner for the hosted path.
steps:
- "What to click."
- "Next step."
community:
summary: One-liner for the self-hosted path.
steps:
- "git clone ..."
- "./dev.sh restart"
links:
source: https://github.com/you/your-agent
docs: null
homepage: null
featured: false # optional — true surfaces on the home page
Coming later
When the catalog has enough momentum to warrant it, we’ll add a proper publisher portal: authenticated submissions, version management, automated validation of the package manifest, and a review queue. Until then, pull requests keep the overhead low.