@skillist/cli
v0.4.0
Published
CLI for the Skillist Agent Skills platform
Maintainers
Readme
skillist
CLI for the Skillist Agent Skills platform — search, install, publish, review, inventory, and run skills from the public registry.
Install
npm install -g @skillist/cliQuick start
# Search the public registry
skillist search performance
# Install a skill into your project (org install policy applies when SKILLIST_API_KEY is set)
skillist install skillist/web-perf-audit
# CI quality + security gate
skillist review ./skills/my-skill --threshold 80 --fail-on high --json
# Run a hosted script (public skills)
skillist run skillist/web-perf-audit --script scripts/collect-metrics.sh --url https://example.com
# Publish from a local bundle (requires API key)
export SKILLIST_API_KEY=sk_...
skillist publish my-org/my-skill ./skills/my-skillPublic skill pages and delivery live at GitHub-style URLs:
https://skillist.dev/{org}/{repo}
https://skillist.dev/{org}/{repo}/SKILL.mdEnvironment
| Variable | Description |
|----------|-------------|
| SKILLIST_API_URL | API base URL (default: https://api.skillist.dev) |
| SKILLIST_DELIVERY_URL | Public delivery URL (default: https://skillist.dev) |
| SKILLIST_API_KEY | Bearer token (sk_...) for push, publish, and private runs |
Commands
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> [--url <url>] [--stream]— hosted executionskillist eval <org>/<repo> [--wait]— queue skill eval on latest draftskillist rollback <org>/<repo> <semver>— roll back to a previous published versionskillist update [org/repo]— refresh installed skillsskillist list— show lockfile entriesskillist review <dir> [--threshold N] [--fail-on sev] [--json]— quality + security CI gateskillist required-skills check [--org <slug>]— verify lockfile against org required skillsskillist inventory scan [--org <slug>]— BFS-discover local agent skills and POST scanskillist inventory import --github-org <org>— scan GitHub org viaghand POST inventoryskillist inventory list [--org <slug>]— list org inventory from the APIskillist mcp proxy <org>/<name>— stdio proxy to an org MCP gateway server
