Quickstart

Install your first skill and start using OpenSkill

Install a Skill

The fastest way to get started is to install a skill from OpenSkill or a repository.

terminal
# Install a skill by name
$ osk install code-review

# Install from a GitHub repository
$ osk install https://github.com/user/skills

OpenSkill will automatically detect your installed AI agents and prompt you to choose which one to install the skill for. You can also specify the agent directly:

terminal
$ osk install code-review -t claude

Browse Available Skills

Use the interactive browser to discover skills:

terminal
$ osk browse

Or search for specific skills:

terminal
$ osk search "testing"
Add a repository first to browse skills from it: osk repo add https://github.com/user/skills

Manage Skills

View your installed skills:

terminal
$ osk list

Installed skills:
  • code-review (claude, global)
  • testing-helpers (cursor, project)

Update all skills to their latest versions:

terminal
$ osk update

Remove a skill:

terminal
$ osk uninstall code-review

Next Steps