Independent directory and educational resource. Not affiliated with Anthropic or Claude.
Tutorial

How to Install Claude Code Skills in 60 Seconds

A step-by-step beginner's guide — from zero to your first supercharged Claude session in under a minute. No coding experience required.

Install Claude Skills in 60 Seconds — The Complete Beginner's Guide

If you've been using Claude and wondering why some developers seem to get dramatically better results — the answer is almost always Skills. Claude Code Skills are reusable instruction sets that change how Claude behaves for specific tasks. Think of them as plugins that make Claude smarter at exactly what you need.

The best part? Installing one takes less than 60 seconds. Here's everything you need to know.

Before you begin

You'll need Claude Code CLI installed. If you haven't done that yet, start here. This guide assumes you already have a working claude command in your terminal.

What Exactly Is a Claude Skill?

A Claude Skill is a SKILL.md file — a plain Markdown file that contains instructions, rules, and examples for Claude. When a skill is installed, Claude reads those instructions before responding to any relevant prompt.

"Skills are like giving Claude a specialist's briefing before they start a job. Instead of explaining the same context every time, you write it once and Claude applies it automatically."

For example, the Smart Git Commit skill tells Claude exactly how to format commit messages, which conventions to follow, and what format the output should take. Every time you ask Claude to help with a commit, it applies those rules without you having to repeat them.

What You Need

Before installing a skill, make sure you have:

  • Claude Code CLI — installed and working (claude --version should return a version number)
  • Node.js 18+ — required for npx to work
  • A terminal or command prompt — Terminal on Mac/Linux, PowerShell on Windows
  • An internet connection — to download the skill from GitHub

Quick check

Run node --version and npx --version in your terminal. If both return version numbers, you're ready to go.

The 3-Step Installation Process

Installing a Claude Skill takes three steps. We'll use the Smart Git Commit skill as our example.

Navigate to your project folder

Open your terminal and navigate to the root of your project — the folder that contains your code.

Run the install command

Copy the install command from the skill's page and run it in your terminal. The skill downloads automatically.

Start Claude Code and test it

Run claude in your terminal. Claude will automatically detect and load the skill.

The Exact Command

bash
npx skills add user/smart-git-commit
output
 Fetching skill from GitHub...
 Validating SKILL.md schema...
 Installing to .agents/skills/smart-git-commit/
 Done! Skill installed successfully.

# Start Claude:
claude

Verifying the Skill is Working

Once Claude starts, verify the skill loaded by asking Claude directly:

claude prompt
What skills do you currently have loaded?

"The most common mistake: running the command from the wrong directory. Always install from your project root — the same folder where you run claude."

Where Skills Live

folder structure
your-project/
├── .agents/
│   └── skills/
│       └── smart-git-commit/
│           └── SKILL.md          # The skill file
├── src/
│   └── ...
└── package.json

Installing Multiple Skills

bash
# Install multiple skills one by one
npx skills add user/smart-git-commit
npx skills add user/pr-review-assistant
npx skills add user/code-documentor

Pro tip: commit your skills to version control

Add your .agents/ folder to Git. Your whole team gets the same skills when they clone the repo — no manual installation required.

What to Do Next

  • Browse the directory — Check our full skills directory to find skills for your workflow
  • Read the SKILL.md — Open it to understand what instructions Claude is using
  • Build your own — Ready to make a custom skill? Our creation guide walks you through it
  • Share with your team — Commit the .agents/ folder and push it

Skills are one of the highest-leverage things you can do to improve your Claude workflow. Once you have two or three installed that match your daily tasks, you'll wonder how you ever worked without them.