Getting Started with SkillUse

Learn how to install and configure SkillUse CLI to manage your AI coding agent skills

By SkillUse Team
··1 min read

Introduction

SkillUse is a CLI tool for managing and installing AI Coding Agent Skills. This guide will walk you through the installation process and basic usage.

Installation

You can install SkillUse using one of the following methods:

curl -fsSL https://raw.githubusercontent.com/jiweiyuan/skilluse/main/scripts/install.sh | bash

NPM

npm install -g skilluse

Homebrew (macOS)

brew tap jiweiyuan/skilluse
brew install skilluse

Authentication

Before using SkillUse, you need to authenticate with GitHub:

skilluse login

This will open a browser window where you can authorize SkillUse to access your GitHub account.

Adding a Repository

Add a skill repository to start discovering skills:

skilluse repo add owner/repo-name

Searching for Skills

Search for skills across your configured repositories:

skilluse search "commit"

Installing a Skill

Install a skill to your local project:

skilluse install skill-name

Or install globally to ~/.claude/skills/:

skilluse install --global skill-name

Next Steps

  • Explore the documentation for more detailed guides
  • Check out the skill repository for available skills
  • Join our community to share and discover new skills

Happy coding!

Share this post