Skip to content

sb get

Download a skill from SkillsBin and write it to your local filesystem, ready for Claude hot-reload.

Usage

Terminal window
sb get <slug>

Arguments

ArgumentDescription
slugThe unique identifier of the skill to download. Required.

Flags

FlagShortDefaultDescription
--output-o.claude/skillsOutput directory for downloaded skills.

Examples

Download a skill

Terminal window
sb get deploy-helper
# Pulled deploy-helper (skill) into .claude/skills/deploy-helper/SKILL.md
# Skill is now active for Claude hot-reload.

Download to a custom directory

Terminal window
sb get deploy-helper -o ./my-skills
# Pulled deploy-helper (skill) into my-skills/deploy-helper/SKILL.md

File naming

The downloaded file name depends on the item type:

TypeFilename
skillSKILL.md
command<slug>.md
prompt<slug>.md
agent<slug>.md
pluginplugin.json
statusline<slug>.sh

Files are written to <output-dir>/<slug>/<filename>.

Not found

If the slug doesn’t match any skill, sb get automatically searches for similar skills and shows suggestions:

Terminal window
sb get deplpy-helper
# Skill 'deplpy-helper' not found.
#
# Did you mean:
# deploy-helper (skill) Deploy Helper personal

Errors

CodeCause
NOT_FOUNDNo skill with that slug exists.
AUTH_INVALIDToken missing or expired.
LOCAL_ERRORCould not create directory or write file.