# Skills.sh

The open Agent Skills directory and CLI installer by Vercel

Skills.sh is a community-driven directory and one-command CLI for discovering, auditing, and installing reusable Agent Skills across 20+ AI coding agents.

## Overview

- **Website**: https://www.skills.sh
- **Docs**: https://www.skills.sh/docs
- **GitHub**: https://github.com/vercel-labs/skills
- **License / Pricing**: Open Source
- **Directory Entry**: https://agentaccess.dk/enablers/skills-sh

## About

Skills.sh (by Vercel Labs) is the canonical package registry for Agent Skills — the open standard for giving AI agents new capabilities. Developers browse a searchable leaderboard of community-contributed skills, organized by topic and install count, then add any skill to their project with a single `npx skills add <owner/repo>` command. The directory supports Claude Code, Cursor, Codex, GitHub Copilot, Windsurf, Gemini, Cline, AMP, Antigravity, OpenClaw, Droid, Goose, Kilo, Kiro CLI, Nous Research, OpenCode, Roo, Trae, VS Code, and Zed. Skills.sh also provides official curated skill packs, topic-based browsing, security audits of published skills, and documentation for creating and publishing new skills.

## Key Features

- One-command skill install: npx skills add <owner/repo>
- Searchable leaderboard with 1.4M+ total installs and trending metrics
- Supports 20+ agent runtimes including Claude Code, Cursor, Gemini, and Antigravity
- Official curated skill packs and topic-based browsing
- Security audits of published skills for safe adoption
- Full CLI for adding, listing, and managing installed skills

## Danish System Application Recipes

### Install Danish Data Access Skills from Skills.sh
Use the Skills.sh CLI to install community-published skills for querying Danish public registries like CVR, DAWA, and DMI directly into your agent workspace.

```bash
# Install a Danish data access skill from the Skills.sh registry
npx skills add agentaccess/danish-data-skills

# List all installed skills
npx skills list
```

### Publish a Danish MitID HITL Skill to Skills.sh
Package and publish your MitID Human-in-the-Loop safeguard skill to the Skills.sh directory so other Danish developers can install it with a single command.

```bash
# Create a skill following the Agent Skills spec
mkdir -p skills/mitid-hitl && cat > skills/mitid-hitl/SKILL.md << 'EOF'
---
name: mitid-hitl-safeguards
description: Mandatory HITL safeguards for Danish MitID authentication gates.
---

# MitID HITL Safeguards
When encountering MitID: STOP, NOTIFY human, WAIT for confirmation.
EOF

# Publish to Skills.sh (requires GitHub repo)
git add . && git commit -m "Add MitID HITL skill" && git push
```

## Quickstart

```bash
# Install any Agent Skill with a single command
npx skills add vercel-labs/skills/find-skills

# Browse all installed skills
npx skills list

# Search the directory at https://www.skills.sh
```

---
Source: [AgentAccess Enablers](https://agentaccess.dk/enablers/skills-sh)