Claude Skills Installation Path: Where to Put Your Skills
The exact paths for installing SKILL.md skills in Claude Code on every platform. Mac, Linux, Windows WSL, and project-level paths covered.
A quick reference for the exact file paths used by Claude Code and other AI agents for SKILL.md skills.
Claude Code paths
Personal (all projects):
- macOS:
/Users/yourname/.claude/skills/ - Linux:
/home/yourname/.claude/skills/ - Windows WSL:
/home/yourname/.claude/skills/
Project-level (current repo only):
- Any OS:
<project-root>/.claude/skills/
OpenClaw paths
Personal: ~/.openclaw/skills/
Project: .openclaw/skills/
Codex CLI paths
Personal: ~/.codex/skills/
Project: .codex/skills/
Cursor paths
Project: .cursor/skills/
Creating the directories
# Claude Code
mkdir -p ~/.claude/skills
# OpenClaw
mkdir -p ~/.openclaw/skills
# Codex CLI
mkdir -p ~/.codex/skills
# All at once
mkdir -p ~/.claude/skills ~/.openclaw/skills ~/.codex/skills
Verifying the correct path
The number one installation issue is putting skills in the wrong path. Verify with:
# This should show your skill folders
ls ~/.claude/skills/
# Each folder should contain SKILL.md
ls ~/.claude/skills/code-reviewer/SKILL.md
If ls shows nothing after installing, the path is wrong. Common mistakes:
~/.claude/skill/ (missing the 's') — wrong
~/.claude/Skills/ (capitalized) — wrong on case-sensitive systems
~/.claude/skills/code-reviewer/code-reviewer/SKILL.md (double nested) — wrong
The correct structure is always: ~/.claude/skills/<skill-name>/SKILL.md
Installing a skill to the right path in one command
# From Agensi
unzip skill.zip -d ~/.claude/skills/
# From GitHub
git clone https://github.com/author/repo.git /tmp/repo && \
cp -r /tmp/repo/skill-name ~/.claude/skills/ && \
rm -rf /tmp/repo
Sharing skills across agents
# Symlink Claude skills to OpenClaw
ln -s ~/.claude/skills/code-reviewer ~/.openclaw/skills/code-reviewer
Download skills ready for any path from Agensi.
Find the right skill for your workflow
Browse our marketplace of AI agent skills, ready to install in seconds.
Browse SkillsRelated Articles
Claude Code Skills Folder: Location, Structure, and Setup
Where is the Claude Code skills folder? How should it be structured? This guide covers everything about the ~/.claude/skills/ directory.
4 min read
Where Are Claude Skills Stored? File Paths and Locations Explained
Find out exactly where AI coding agents store SKILL.md skills. Covers Claude Code, OpenClaw, Codex CLI, and Cursor file paths and directory structures.
4 min read
How to Add Skills to Claude Code CLI
Add skills to Claude Code without leaving your terminal. CLI commands for downloading, installing, verifying, and managing SKILL.md skills.
4 min read