Getting Started
The sb CLI syncs skills, commands, prompts, plugins, agents, and statuslines between your local machine and SkillsBin.
Installation
Quick install (macOS / Linux)
curl -fsSL https://raw.githubusercontent.com/chronoboost/homebrew-sb-cli/main/install.sh | bashThis detects your OS and architecture, downloads the latest release, and installs the sb binary to /usr/local/bin.
Build from source
Requires Go 1.22+.
git clone https://github.com/skillsbin/sb.gitcd sbgo build -o sb .sudo mv sb /usr/local/bin/Verify
sb version# sb version 0.1.0Authentication
- Go to skillsbin.com/settings and create an API key.
- Copy the key (it starts with
sk-) and run:
sb auth sk-your-api-key-hereYou should see:
Authenticated successfully. Token sk-your-api... saved.The token is stored in ~/.config/sb/config.json with restricted file permissions (0600).
Check auth status
sb auth --status# Authenticated as sk-your-api...Quick start
Once authenticated, you can pull a skill into your project:
sb get deploy-helper# Pulled deploy-helper (skill) into .claude/skills/deploy-helper/SKILL.mdSearch for available skills:
sb search deploy# Found 2 result(s) for 'deploy':# deploy-helper (skill) Deploy Helper personalUpload a skill from your project:
sb put .claude/skills/my-skill# Created my-skill (skill) in personalSee the Commands section for full details on each command.