Agent OS can use an optional skill store (registry) to list and install skills by slug. The store is a separate service or app that exposes:
url in the registry.Agent OS does not include a store app in this repo. You can:
~/.agent-os/skills/), system skills (seed dir), or upload (zip / Markdown).https://your-store.example.com/api/sulalahub/registry). The exact key may be in config or env (e.g. a store URL used by the dashboard and by POST /api/skills/install).{ "slug": "weather" } (or similar as implemented).GET <registry_url> → { "skills": [ { "slug", "name", "description", "version?", "url" } ] }.url is used to fetch the skill content (e.g. Markdown or a zip). Paid skills may require ?license=TOKEN.The in-repo API GET /api/skills/store-registry returns the current registry data (skills list, storeBase, registryUrl) if configured.
~/.agent-os/skills/<name>/ with skill.yaml (or SKILL.md) and optional tools.yaml.data/skills/) and run Install system skills (dashboard or POST /api/skills/install-system).If you run a SulalaHub-style store (separate repo/app), its roadmap (registry contract, storefront, submit, admin, paid skills, etc.) lives in that repo (e.g. store/ROADMAP.md). Agent OS only consumes the registry and installs from URLs; it does not implement the store itself.