Getting Started with SkillUse
Learn how to install and configure SkillUse CLI to manage your AI coding agent skills
By SkillUse Team
··1 min readIntroduction
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:
Native Binary (Recommended)
curl -fsSL https://raw.githubusercontent.com/jiweiyuan/skilluse/main/scripts/install.sh | bashNPM
npm install -g skilluseHomebrew (macOS)
brew tap jiweiyuan/skilluse
brew install skilluseAuthentication
Before using SkillUse, you need to authenticate with GitHub:
skilluse loginThis 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-nameSearching 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-nameOr install globally to ~/.claude/skills/:
skilluse install --global skill-nameNext 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!