If you've watched a "Top 10 Claude Skills" video but still have no idea how to actually install one, you're in the right place. We'll cover everything from scratch, in plain language:
- What Claude Skills actually are (and why they're a big deal)
- Where to download Claude Skills
- How to install and enable a Skill on claude.ai
- How to use Skills correctly — automatically and with a manual trigger
- How to create your own custom Skill from scratch
- Common mistakes beginners make — and how to avoid them
What Are Claude Skills?
A Claude Skill is a small, reusable instruction pack you hand to Claude once, and it then knows how to behave in a particular way whenever you need it. Think of it as a saved "mode" or playbook — instead of pasting the same long prompt every single time, you package those instructions into a Skill and trigger it on demand.
Every Skill is just a folder with one required file called SKILL.md. That file has a short header (the name and a description telling Claude when to use it) followed by the actual instructions. Some Skills also ship with extra scripts or resources, but the SKILL.md is the heart of it.
---
name: godmode
description: Triggers the most thorough, exhaustive response
possible. Use when the user types /godmode before a prompt.
---
# /godmode
When the user types /godmode before any prompt, produce the
most complete and comprehensive response possible...
description line is the magic. Claude reads it to decide on its own when a Skill is relevant — which is why a well-written Skill can fire automatically, with no command from you.
Popular community Skills you've probably seen include God Mode (maximum depth), L99 (long, expert-level explanations), OODA (rapid decision loops), plus Persona, Ghost, Devil, Critic and 10X. They all work the exact same way under the hood, so once you can install one, you can install any of them.
Download the God Mode Skill
Let's not keep it theoretical. Grab the ready-to-use God Mode Skill below, then follow the steps to install it. It's a clean ZIP containing the godmode/SKILL.md file — nothing else to configure.
godmode folder with SKILL.md inside, ready to upload to Claude.
Download the Skill File
Click the Download God Mode Skill button above to save the ZIP to your computer.
If your browser doesn't unzip it automatically, right-click the file and choose Extract All (Windows) or double-click it (Mac). You should end up with a folder that contains:
SKILL.md— the required instruction file- (Optional) any extra scripts or resources the Skill ships with
Claude needs a folder (or ZIP) with a valid SKILL.md at its root. As long as that file is present, the Skill will upload cleanly.
Upload it to Claude.ai
Now hand the Skill to Claude. The whole thing takes about thirty seconds:
If the upload is rejected, it's almost always because the ZIP doesn't have SKILL.md at the top level. Re-zip the folder so SKILL.md sits directly inside it.
Enable the Skill
Uploading a Skill doesn't switch it on automatically. After the upload finishes:
- Find God Mode (or whatever Skill you added) in your Skills list
- Make sure its toggle is switched on
- That's it — the Skill is now active and ready to use
How to Actually Use the Skill
There are two ways to trigger a Skill. Both are valid — pick whichever fits the moment.
Method A — Automatic (recommended)
Just talk to Claude normally. Because the Skill's description tells Claude when it's relevant, Claude detects the right moment and applies it for you. Ask something that genuinely needs depth:
Explain quantum computing in depth for beginners
How does React's dependency array work, thoroughly?
Method B — Manual Trigger
Force the Skill by typing its name (with a slash) at the start or end of your prompt:
/godmode Explain how TanStack Router works in depth
Explain PCIe express lanes /godmode
Use automatic for everyday work and let Claude decide. Reach for the manual trigger when you specifically want the Skill applied and don't want to leave it to chance.
Create Your Own Custom Skill
Once you've installed one, building your own is easy — a Skill is just a folder with a SKILL.md inside. Create a new folder, add the file below, zip the folder, and upload it exactly like in Step 2.
---
name: brand-voice
description: Rewrites text in our brand voice — warm,
direct, no jargon. Use when the user types /brand before text.
---
# /brand
When the user types /brand, rewrite their text so it:
- Sounds warm and human, never corporate
- Uses short sentences and active voice
- Cuts buzzwords and filler completely
- Keeps the original meaning intact
description line — that's what controls automatic triggering. Be specific about when the Skill should fire, not just what it does.
Common Mistakes Beginners Make
| Mistake | The Fix |
|---|---|
| Skill uploaded but never fires | Check the toggle is on in the Skills tab. |
| Upload gets rejected | Make sure SKILL.md sits at the root of the folder/ZIP. |
| Wrong file extension | It must be SKILL.md — not .txt or .docx. |
| Vague description | Write a specific "use when…" so auto-triggering works. |
| Zipping the parent folder | Zip the Skill folder itself, so SKILL.md isn't buried two levels deep. |
Wrapping Up
That's the entire workflow: download → upload → enable → use. The same four steps work for God Mode, L99, OODA, Persona, Ghost, Devil, Critic, 10X — or any custom Skill you write yourself. Start with the God Mode download above, get comfortable with the flow, then build a Skill that's tailored to your own coding, content or business workflow.
Want to go deeper into AI-assisted development? Our Full Stack AI Bootcamp covers how to build real apps with modern AI coding tools, end to end.
Discussion