Local Installation

Install Skills Locally

Set up agent skills in your ~/.claude/skills directory with one command. Works with Claude Code, Cursor, and other AI agents.

Quick Start

Choose your preferred installation method

Recommended Method

Works with Claude Code, Cursor, Codex, Gemini CLI, and 36+ other AI agents

1

Install All Skills

Use the skills.sh CLI to install all skills to all your AI agents:

npx skills add ranbot-ai/awesome-skills --all
2

Or Install Specific Skills

Choose which skills to install:

npx skills add ranbot-ai/awesome-skills --skill code-review --skill docker
3

Target Specific Agents

Install only to specific AI agents:

npx skills add ranbot-ai/awesome-skills -a claude-code -a cursor

Supported agents: claude-code, cursor, codex, gemini-cli, github-copilot, cline, opencode, windsurf, and more.

More Commands

npx skills list- List installed skills
npx skills find- Search for skills
npx skills update- Update installed skills
npx skills remove- Remove skills

Available Sources

Install skills from trusted repositories

anthropic16+ skills

Official Anthropic skills

./scripts/install-skills.sh --source anthropic
composio16+ skills

Community Claude skills

./scripts/install-skills.sh --source composio
superpowers14+ skills

Agentic development skills

./scripts/install-skills.sh --source superpowers
openhands10+ skills

AI-driven development

./scripts/install-skills.sh --source openhands

Command Reference

All available commands for managing skills

List Skills

Show all available skills grouped by source

./scripts/install-skills.sh --list

Search Skills

Find skills by name or description

./scripts/install-skills.sh --search docker

Skill Info

Get detailed information about a specific skill

./scripts/install-skills.sh --info code-review

Update Skills

Overwrite existing skills with latest versions

./scripts/install-skills.sh --update

Uninstall / Clean

Remove specific skills or all installed skills

Uninstall specific skill
./scripts/install-skills.sh --uninstall skill-name
Remove all skills
./scripts/install-skills.sh --clean

Configuration

Customize the installation behavior

Environment Variables

VariableDefaultDescription
CLAUDE_SKILLS_DIR~/.claude/skillsOverride the default skills installation directory

Example: Install skills to a custom directory

CLAUDE_SKILLS_DIR=~/my-skills ./scripts/install-skills.sh

Requirements

What you need to run the install script

Required

  • curl - For downloading files
  • bash - Shell interpreter

Recommended

  • jq - For better JSON parsing & search

Install jq: brew install jq (macOS) or apt install jq (Linux)

Ready to Get Started?

Browse all available skills or install them right now

Quick install - run this in your terminal:

curl -fsSL https://raw.githubusercontent.com/ranbot-ai/awesome-skills/main/scripts/install-skills.sh | bash