Getting Started

Welcome to Agent Skill Hub! This guide will help you get up and running with the platform.

What is Agent Skill Hub?

Agent Skill Hub is a platform for discovering, sharing, and deploying AI agent skills. It consists of:

  • Web Platform — Browse and discover skills at agentskillhub.dev
  • CLI Tool (skhub) — Install and manage skills directly in your projects
  • GitHub Integration — Import skills from any GitHub repository

Prerequisites

  • Node.js 20+ — Required for the CLI
  • A project with agent configuration — Skills install to .claude/ or .agents/ directories

Installation

Install the CLI

npm install -g skhub

Or use with npx (no installation required):

npx skhub <command>

Verify Installation

skhub --version

Quick Start

1. Browse Skills

Visit agentskillhub.dev to browse the skill catalog. You can:

  • Search for specific skills
  • Filter by category
  • View skill details and documentation
  • See installation instructions

2. Install Your First Skill

# Navigate to your project
cd my-project

# Install a skill
skhub add my-org/data-analysis

This will:

  1. Download the skill from the platform
  2. Install it to your project's .agents/ or .claude/ directory
  3. Add an entry to skills.json for tracking

3. Verify Installation

# List installed skills
skhub list

4. Use the Skill

Once installed, the skill is available to your AI agent. The exact usage depends on your agent framework—check the skill's documentation for details.

Next Steps