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

1

Install All Skills

Run this command to download and install all 70+ skills to your local machine:

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

Done!

Skills are installed following the official directory structure:

~/.claude/skills/
├── code-review/
│ └── SKILL.md
├── docker/
│ └── SKILL.md
└── ...

Your AI agent will automatically discover and use them.

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