CLI
Install
Section titled “Install”npm install -g @skillist/cliPackage: @skillist/cli
Authentication
Section titled “Authentication”skillist login # browser OAuth / magic link flowskillist logoutskillist whoamiRegistry
Section titled “Registry”Skills are referenced as org/repo (GitHub-style):
skillist search <query> [--category <cat>] [--tag <tag>]skillist install <org>/<repo>skillist pull <org>/<repo>skillist listPublic delivery URLs default to https://skillist.dev/{org}/{repo}:
curl https://skillist.dev/skillist/web-perf-audit/SKILL.mdPublishing
Section titled “Publishing”From a skill directory with plugin.json and SKILL.md:
skillist push <org>/<repo> <dir>skillist publish <org>/<repo> <dir> [--bump major|minor|patch]Publishing queues an eval run. Your org policy may require a passing eval before the version goes live.
Sandbox runs
Section titled “Sandbox runs”For skills with hosted runtime scripts:
skillist run <org>/<repo> --script scripts/<name> [--stream]Requires a signed-in session. Anonymous sandbox runs are not permitted. See Sandbox execution.
Review & inventory
Section titled “Review & inventory”Quality/security gate for CI (see Install policy):
skillist review ./my-skill --threshold 80 --fail-on high --jsonDiscover local agent skills and sync estate inventory (see Skill inventory):
export SKILLIST_API_KEY=sk_...skillist inventory scan --org my-orgskillist inventory import --github-org my-github-org --org my-orgskillist inventory list --org my-orgInstalls and updates respect org install policy when SKILLIST_API_KEY is set.
Environment
Section titled “Environment”| Variable | Default | Description |
|---|---|---|
| SKILLIST_API_URL | https://api.skillist.dev | REST API and auth base URL |
| SKILLIST_DELIVERY_URL | https://skillist.dev | Public skill pages and SKILL.md delivery |
| SKILLIST_API_KEY | — | Bearer token (sk_...) for push, publish, and private runs |
Local development:
export SKILLIST_API_URL=http://localhost:8787export SKILLIST_DELIVERY_URL=http://localhost:5173Commands
skillist search [query]— search registry with filtersskillist install <org>/<repo>— download and record in.skillist.lockskillist pull <org>/<repo>— download without lockfileskillist push <org>/<repo> <dir>— upload draft versionskillist publish <org>/<repo> <dir>— push and publishskillist run <org>/<repo> --script <path>— hosted executionskillist eval <org>/<repo> [--wait]— queue skill eval on latest draftskillist rollback <org>/<repo> <semver>— roll back to a previous versionskillist update [org/repo]— refresh installed skillsskillist review <dir> [--threshold N] [--fail-on sev] [--json]— quality + security CI gateskillist required-skills check [--org <slug>]— verify lockfile against required skillsskillist inventory scan [--org <slug>]— BFS-discover local skills and POST inventory scanskillist inventory import --github-org <org>— scan a GitHub org viaghand POST inventoryskillist inventory list [--org <slug>]— list org skill inventoryskillist mcp proxy <org>/<name>— stdio proxy to an org MCP gateway