Web Platform Guide

The Agent Skill Hub web platform is your starting point for discovering and exploring AI agent skills.

Browsing Skills

Visit agentskillhub.dev/skills to browse the skill catalog.

Search and Filter

  • Search bar — Find skills by name, description, or keywords
  • Categories — Filter skills by category (e.g., Data Analysis, API Integration, DevOps)
  • Sorting — Sort by popularity, newest, or alphabetical

Skill Cards

Each skill card displays:

  • Name and description — Quick overview of what the skill does
  • Author — Who published the skill
  • Version — Latest available version
  • Install count — How many times the skill has been installed
  • Stars — Community rating

Skill Details Page

Click on any skill to view its details page, which includes:

Overview Tab

  • Full description
  • Key features
  • Use cases
  • Installation command

Documentation Tab

  • Detailed usage instructions
  • Configuration options
  • Examples

Versions Tab

  • Version history
  • Release notes
  • Install specific versions via CLI

Install Command

Every skill page shows the install command:

skhub add username/skill-name

Click the copy button to copy the command to your clipboard.

Skillsets

Skillsets are curated collections of related skills. Browse them at agentskillhub.dev/skillsets.

Using Skillsets

Install an entire skillset with one command:

skhub add --skillset username/skillset-name

This installs all skills in the skillset to your project.

Creating Skillsets

Logged-in users can create skillsets:

  1. Click "New Skillset" from your account menu
  2. Name your skillset and add a description
  3. Add skills from the catalog
  4. Publish to make it public

User Accounts

Authentication

Sign in with GitHub to:

  • Create and publish skills
  • Create skillsets
  • Star skills
  • Track your published content

Profile Page

Your profile page shows:

  • Published skills
  • Created skillsets
  • Activity history

Visit any user's profile by clicking their username.

Importing from GitHub

You can import skills directly from GitHub repositories:

  1. Go to the Import page (requires login)
  2. Enter a GitHub repository URL
  3. The platform will scan for SKILL.md files
  4. Select which skills to import
  5. Publish them to the platform

Repository Requirements

For auto-detection, your repository should contain:

Example repository structure:

my-skills/
├── data-analysis/
│   └── SKILL.md
├── api-client/
│   └── SKILL.md
└── README.md

API Endpoint for Agents

The web platform also exposes an MCP (Model Context Protocol) endpoint at:

https://agentskillhub.dev/mcp

This allows compatible agents to discover and use skills directly.