Getting Started
Authentication
- 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.