skillshub install
skillshub install
Section titled “skillshub install”The install command downloads and installs a skill from a configured tap. During installation, skillshub fetches the skill from GitHub, validates the SKILL.md manifest, and places the skill files into the local skills directory at ~/.skillshub/skills/.
skillshub install <owner/repo/skill>The skill argument uses the format owner/repo/skill-name, referencing a skill from a tap.
Options
Section titled “Options”| Option | Description |
|---|---|
--force | Overwrite the skill if it is already installed. |
Install by commit
Section titled “Install by commit”Install a specific version of a skill by appending @commit:
skillshub install EYH0602/skillshub/code-reviewer@abc1234Install all skills
Section titled “Install all skills”Install all skills from the default taps:
skillshub install-allOr install all skills from a specific tap:
skillshub tap install-all anthropics/skillsWhat happens during install
Section titled “What happens during install”- Download — The skill source is fetched from the corresponding GitHub repository.
- Validate — The
SKILL.mdfile is parsed and validated. - Install — Skill files are written to
~/.skillshub/skills/<owner>/<repo>/<skill>/. - Register — The skill is recorded in the database at
~/.skillshub/db.json.
Examples
Section titled “Examples”Install a skill from the default tap:
skillshub install EYH0602/skillshub/code-reviewerInstall from a third-party tap:
skillshub install anthropics/skills/frontend-designInstall a specific commit:
skillshub install EYH0602/skillshub/code-reviewer@abc1234Force reinstall an existing skill:
skillshub install EYH0602/skillshub/code-reviewer --force