Back to list
SiTaggart

skills-sh-marketplace

by SiTaggart

Claude agent config

1🍴 0📅 Jan 22, 2026

SKILL.md


name: skills-sh-marketplace description: This skill should be used when searching, discovering, or installing skills from the skills.sh marketplace (Vercel's open agent skills ecosystem). It applies when the user wants to find skills for AI agents, browse the skills leaderboard, install skills to Claude Code or other agents, or explore what capabilities are available in the skills.sh directory. allowed-tools: [Bash, WebFetch]

Skills.sh Marketplace

Search, discover, and install skills from skills.sh - the open agent skills ecosystem by Vercel.

Quick Start

# Browse top skills
curl -s "https://skills.sh/api/skills" | jq '.skills[:10]'

# Install a skill to Claude Code
bunx skills add vercel-labs/agent-skills

# List available skills in a repository
bunx skills add vercel-labs/agent-skills --list

Commands

Browse Skills

Fetch the skills leaderboard from skills.sh:

# Get all skills (ranked by installs)
curl -s "https://skills.sh/api/skills" | jq '.skills'

# Get top 20 skills with formatting
curl -s "https://skills.sh/api/skills" | jq -r '.skills[:20] | .[] | "\(.name) (\(.installs) installs) - \(.topSource)"'

# Check if more skills are available
curl -s "https://skills.sh/api/skills" | jq '.hasMore'

Search for Skills

Filter skills by name pattern:

# Find React-related skills
curl -s "https://skills.sh/api/skills" | jq '.skills | map(select(.name | contains("react")))'

# Find skills from a specific author
curl -s "https://skills.sh/api/skills" | jq '.skills | map(select(.topSource | startswith("expo/")))'

# Find authentication-related skills
curl -s "https://skills.sh/api/skills" | jq '.skills | map(select(.name | test("auth|login|session"; "i")))'

List Skills in a Repository

Preview what skills are available before installing:

# List skills from a repository
bunx skills add <owner/repo> --list

# Examples
bunx skills add vercel-labs/agent-skills --list
bunx skills add expo/skills --list
bunx skills add anthropics/skills --list

Install Skills

Install skills to your AI agent:

# Interactive install (prompts for skill selection and agent)
bunx skills add <owner/repo>

# Install specific skills
bunx skills add <owner/repo> --skill <skill-name>

# Install to a specific agent
bunx skills add <owner/repo> --agent claude-code

# Install globally (user-level, not project-level)
bunx skills add <owner/repo> --global

# Install all skills to all agents without prompts
bunx skills add <owner/repo> --all

# Skip confirmation prompts
bunx skills add <owner/repo> --yes

Supported Agents

The skills CLI supports installation to:

AgentFlag Value
Claude Codeclaude-code
OpenCodeopencode
Codexcodex
Cursorcursor
Antigravityantigravity
GitHub Copilotgithub-copilot
Roo Coderoo

Examples

Discover Skills for a Specific Use Case

# Find frontend/UI skills
curl -s "https://skills.sh/api/skills" | jq '.skills | map(select(.name | test("ui|frontend|design|react|next"; "i"))) | .[0:10]'

# Find testing/QA skills
curl -s "https://skills.sh/api/skills" | jq '.skills | map(select(.name | test("test|qa|quality"; "i")))'

# Find deployment/DevOps skills
curl -s "https://skills.sh/api/skills" | jq '.skills | map(select(.name | test("deploy|cicd|workflow"; "i")))'
# Install Vercel's React best practices
bunx skills add vercel-labs/agent-skills --skill vercel-react-best-practices --agent claude-code --yes

# Install Expo's mobile development skills
bunx skills add expo/skills --skill react-native-best-practices --agent claude-code --yes

# Install Anthropic's official skills
bunx skills add anthropics/skills --all --agent claude-code --yes
# Top 5 most installed skills
curl -s "https://skills.sh/api/skills" | jq -r '.skills[:5] | .[] | "[\(.installs | tostring | (5 - length) * " " + .)] \(.name) from \(.topSource)"'
RepositoryFocus
vercel-labs/agent-skillsReact, Next.js, web design
anthropics/skillsFrontend design, PDF handling
expo/skillsReact Native, mobile development
softaworks/agent-toolkitGeneral development utilities
coreyhaines31/marketingskillsMarketing, SEO, copywriting
better-auth/skillsAuthentication patterns
remotion-dev/skillsVideo generation with Remotion

Creating Your Own Skills

Initialize a new skill:

# Create a skill in the current directory
bunx skills init

# Create a named skill directory
bunx skills init my-custom-skill

This creates a SKILL.md file with the standard frontmatter structure.

Environment Variables

VariablePurpose
SKILLS_NO_TELEMETRY=1Opt out of anonymous telemetry

Notes

  • Skills are ranked by anonymous install telemetry
  • The CLI clones repositories temporarily during installation
  • Skills are installed to agent-specific config directories
  • Use --list to preview before installing
  • Always use bunx instead of npx per project requirements

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon