Frequently Asked Questions
New to Claude Code? Start here. Learn how to install it, set up your first project, install skills, and everything else you need to know about the Claude Skills marketplace.
About Claude Skills
What is Claude Skills?
Claude Skills is a free, community-driven marketplace where anyone can discover, download, and share skills for Claude Code — Anthropic's AI coding assistant.
Think of it as an app store for Claude Code workflows. Instead of writing the same instructions over and over, you install a skill once and use it with a simple slash command.
What is a Claude Code skill?
A skill is a small markdown instruction file (.md) that teaches Claude Code how to perform a specific task. For example:
- • /commit — create well-formatted git commits
- • /seo — run a full SEO audit on your site
- • /deploy — deploy your project to production
- • /pr — create a pull request with a proper description
You trigger them by typing the slash command inside Claude Code. The skill handles the rest.
Is Claude Skills free?
Yes, 100% free. No hidden costs. No premium tiers. No paywalls.
- Browsing and downloading skills — free
- Creating an account — free
- Uploading your own skills — free
We believe developer tools should be accessible to everyone.
Who built this?
Claude Skills is built and maintained by Champlin Enterprises.
There are amazing skills scattered across dozens of repos, built by talented people all over the globe. We built Claude Skills to bring them all into one searchable, sortable place — where you can filter by category, sort by views and downloads so the best rise to the top, and leave comments to help others. It's a community hub, not a walled garden.
Getting Started with Claude Code
How do I install Claude Code?
There are two ways to get Claude Code. The easiest is through VS Code — no command line needed:
Easiest — VS Code Extension
- 1. Open VS Code
-
2.
Press
Ctrl+Shift+X(orCmd+Shift+Xon Mac) - 3. Search "Claude Code"
- 4. Click Install on the one by Anthropic
No terminal. No npm. Just click install.
Alternative — Terminal / CLI
If you prefer the command line:
npm install -g @anthropic-ai/claude-code
Requires Node.js 18+. Then run claude in any project directory.
Both methods give you the same features — including slash command skills from this site. Choose whichever you're more comfortable with.
What does /init do in Claude Code?
/init is the first command you should run in any project. It creates a CLAUDE.md file in your project root.
Think of it as onboarding instructions for your AI assistant. Claude reads this file automatically at the start of every conversation, so it already knows:
- • Your tech stack and framework
-
•
Your build/test commands (e.g.
npm run dev,pnpm build) - • Your coding conventions and project rules
- • Your deployment process
Pro tip: Run /init once, then customize the generated CLAUDE.md to your liking. The more context you give, the better Claude performs on your project.
What is the .claude directory?
The .claude directory is where Claude Code stores its configuration. There are two locations you should know about:
Global ~/.claude/
In your home directory. Contains:
commands/— global skills (available everywhere)CLAUDE.md— personal instructions for all projects
Project .claude/
In your project root. Contains:
commands/— project-specific skillssettings.json— project-level settings
When you download a skill from this site, you drop the .md file into one of these commands/ folders. That's it — the skill is installed.
What is CLAUDE.md and why do I need one?
CLAUDE.md is a markdown file that gives Claude Code persistent context about your project. Without it, you'd have to re-explain your project every conversation.
A good CLAUDE.md typically includes:
- • Project overview — what it is, what stack it uses
- • Key commands — how to build, test, lint, deploy
- • Architecture notes — folder structure, data flow, key patterns
- • Conventions — naming, styling, things to avoid
Quick start:
/init
This generates a starter CLAUDE.md based on your project. Edit it from there.
What are some good skills to start with?
If you're just getting started, these are the skills most people install first:
/commit
Creates well-formatted git commits with proper messages
/pr
Generates pull requests with descriptions and test plans
/review
Reviews your code for bugs, quality, and security issues
/checkpoint
Quickly commits and pushes your current progress
Browse the Popular skills to see what the community uses most.
Accounts & Profiles
Why should I create an account?
You don't need an account to browse or download skills. But creating one unlocks some great benefits:
-
Upload your own skills — share your workflows with the community
-
Get your own public profile — a page at
/u/your-usernameshowcasing all your skills -
Track your download stats — see how many people are using your skills
-
Get credited for your work — your name and avatar appear on every skill you publish
It takes 30 seconds. Just a name, email, and password. No credit card. No spam.
What does my public profile show?
Your public profile page displays:
- • Your name and avatar
- • Your bio — tell people who you are
- • Links to your website and GitHub
- • A grid of all your published skills with download counts
It's like a portfolio for your Claude Code contributions.
Can I download skills without an account?
Yes! Browsing and downloading skills is completely open. No account required. We want skills to be as accessible as possible.
Uploading & Creator Credit
How do I upload a skill?
- 1 Create a free account (or log in if you already have one)
- 2 Click Upload in the navigation bar
- 3 Paste your skill content or upload a .md file
- 4 Add a title, description, category, and optional thumbnail
- 5 Hit Publish — your skill is now live and credited to you
Do I get credit for skills I upload?
Absolutely, always. Every skill you upload is permanently linked to your account. Here's how your credit appears:
- Your name and avatar are displayed on the skill detail page
- Your bio and profile link appear in the author sidebar
- The skill shows up on your public profile page
- You can see download counts for every skill in your dashboard
Your work, your credit. Always.
Can I edit or remove a skill after uploading?
Yes. You have full control over your skills:
- • Edit the title, description, file, thumbnail, category, or tags at any time
- • Delete a skill permanently if you no longer want it listed
- • Set a skill to draft or unlisted to hide it from browse
Only you (the owner) can edit or delete your skills.
Attribution & Transparency
What about skills sourced from GitHub?
We want to be completely upfront about this. Some skills on Claude Skills were originally shared on GitHub by their creators. When we make those available here, we follow strict attribution rules:
Our goal is to be a centralized hub — not to take credit for anyone's work. We're aggregators, not imposters. If you see your work here and want it removed or updated, contact us and we'll handle it immediately.
Are you stealing skills from other developers?
No. Never. Here's how we think about it:
Claude Skills is like a package registry (think npm or PyPI) — a centralized place to discover tools that are scattered across the internet. We don't claim ownership of community-contributed or open-source skills. We simply make them easier to find, download, and install.
Every skill clearly shows:
- • Who made it — the original creator
- • Where it came from — linked source if applicable
- • What license it uses — fully respected
If you're an original author and want your skill removed or want to claim your profile, just reach out. We respond quickly.
Can an original author claim their skill?
Yes! If you created a skill that's been listed on Claude Skills and you want to manage it yourself:
- 1 Create an account on Claude Skills
- 2 Email us at kevin@champlinenterprises.com
- 3 We'll transfer ownership to your account so you can manage updates
We want original authors to take ownership. It makes the whole ecosystem better.
Installation & Usage
How do I install a skill I downloaded?
We have a full step-by-step guide for this! Check out our Install Guide for detailed instructions.
The short version:
- 1 Download and unzip the skill
-
2
Move the
.mdfile to~/.claude/commands/ -
3
Type
/skill-namein Claude Code
What's the difference between global and project skills?
Global Skills
Installed in ~/.claude/commands/
Available in every project on your machine
Project Skills
Installed in .claude/commands/
Only available in that specific project
Use project skills when a workflow is specific to one repo. Use global for everything else.
Do I need Claude Code to use skills from this site?
Yes. Skills are designed specifically for Claude Code — Anthropic's official CLI and VS Code extension for Claude.
Claude Code is available as:
-
•
A terminal/CLI tool —
npm install -g @anthropic-ai/claude-code - • A VS Code extension — search "Claude Code" in the extension marketplace
Still Have Questions?
We'd love to help. Reach out anytime.
Email Us