Skip to content
Open app

Delivery URLs

Skillist uses a single GitHub-like namespace on the apex domain. The org is the organization slug; repo is the skill identifier (formerly called slug in older API versions).

PurposeURL
Registry browsehttps://skillist.dev/registry
Skill pagehttps://skillist.dev/{org}/{repo}
SKILL.mdhttps://skillist.dev/{org}/{repo}/SKILL.md
Discovery metahttps://skillist.dev/{org}/{repo}/meta
Full bundlehttps://skillist.dev/{org}/{repo}/bundle
Script listhttps://skillist.dev/{org}/{repo}/scripts
Run scriptPOST https://skillist.dev/{org}/{repo}/run
Run historyhttps://skillist.dev/{org}/{repo}/runs

For the public skill skillist/web-perf-audit:

https://skillist.dev/skillist/web-perf-audit
https://skillist.dev/skillist/web-perf-audit/SKILL.md
https://skillist.dev/skillist/web-perf-audit/meta

Registry metadata and mutations still use the API worker under /v1:

GET https://api.skillist.dev/v1/registry
GET https://api.skillist.dev/v1/registry/{org}/{repo}

Raw delivery and hosted execution are also available on api.skillist.dev when called directly, but canonical public URLs use skillist.dev.

The CLI defaults delivery to https://skillist.dev:

Terminal window
skillist install skillist/web-perf-audit
curl https://skillist.dev/skillist/web-perf-audit/SKILL.md

Override for staging or local dev:

Terminal window
export SKILLIST_DELIVERY_URL=http://localhost:5173
export SKILLIST_API_URL=http://localhost:8787

registry_install_help returns apex delivery URLs:

  • skillMdUrlhttps://skillist.dev/{org}/{repo}/SKILL.md
  • registryUrlhttps://skillist.dev/{org}/{repo}

See Tools reference for parameters (org and repo).

DNS zone routing cannot place wildcards mid-path (e.g. skillist.dev/*/SKILL.md), so delivery is implemented in two layers:

  1. API worker — serves /{org}/{repo}/SKILL.md, /meta, /bundle, and authenticated /scripts, /run, /runs
  2. Web worker — intercepts the same paths on skillist.dev and forwards them to the API worker via a service binding; also proxies /v1/* and /api/* for same-origin SPA requests

The registry browse UI and skill detail pages are served as static assets with SPA fallback.