Beginner Guide: Install Your First AI Skill in 5 Minutes
2026-06-24 · beginner tutorial getting started claude code cursor
You just set up Claude Code or Cursor and want your AI to be smarter? 5 minutes, one skill, immediate results.
What Are Skills?
One sentence: Skills are instruction manuals that teach your AI how to do specific things.
Imagine you hired a smart assistant, but they don't know your work habits. You write a "work manual" telling them "when doing code review, check these 5 things first." That's a skill.
Technically: A skill is a Markdown file (SKILL.md) containing instructions for how the AI should handle a specific task.
What Do Skills Do?
| Without Skills | With Skills |
|---|---|
| AI writes code however it feels | AI follows your coding standards |
| AI writes tests随意 | AI follows strict TDD workflow |
| AI does code review superficially | AI checks for specific security issues |
| AI doesn't know your project structure | AI understands your architecture |
Step 1: Pick a Skill
We recommend starting with these 5 (from different categories):
| Skill | What It Does | Why We Recommend It |
|---|---|---|
| writing-plans | Write implementation plans | Makes AI plan before coding, reduces rework |
| tdd | Test-driven development | Write tests first, quality doubles |
| coding-standards | Coding standards | AI writes consistent code style |
| qa | Code review | Interactive review, finds issues more thoroughly |
| brainstorming | Brainstorming | Turns vague ideas into clear specs |
Step 2: Install the Skill
Claude Code (macOS/Linux)
# Using writing-plans as an example
git clone --depth 1 https://github.com/obra/superpowers.git
cp superpowers/skills/writing-plans ~/.claude/skills/writing-plans
Claude Code (Windows)
git clone --depth 1 https://github.com/obra/superpowers.git
xcopy superpowers\skills\writing-plans %USERPROFILE%\.claude\skills\writing-plans /Y
Cursor
- Open the skill detail page
- Copy the full SKILL.md content
- Paste it into your project's
.cursorrulesfile
Gemini CLI
- Copy the SKILL.md content
- Paste it into your system prompt or CLAUDE.md file
Step 3: Verify It Works
After installing, restart your AI tool, then try:
Help me plan the implementation of this feature
If the AI starts writing a detailed step-by-step plan (instead of just coding), the skill is working.
FAQ
Q: How much resources do skills use? A: Each skill is about 2-5KB, almost no resource usage. But we suggest not installing more than 5 at once — too many can confuse the AI.
Q: Will skills slow down the AI? A: No. Skills are just extra instructions, they don't affect AI inference speed.
Q: Can I write my own skills? A: Yes! Write a SKILL.md file with clear instructions for what you want the AI to do. See writing-skills for details.
Q: What's the difference between Skills and MCP Servers? A: Skills = knowledge (teach AI how to do something), MCP Server = tools (give AI capabilities). See MCP Guide for details.
Q: Where can I find more skills? A: Right here on SkillsNav! 5280+ skills, browse by category or search.
Next Steps
- Install 3 skills: writing-plans + tdd + coding-standards
- Use them for a week: See if AI performance changes
- Add more as needed: Find more skills from categories
- Write your own: Turn your team's best practices into SKILL.md
Further Reading
- Best Testing Skills 2026 — Testing skill review
- MCP Server Beginner Guide — MCP tutorial
- How to Find Skills — How to find good skills
SkillsNav catalogs 5280+ AI Agent Skills, all free and open-source. Browse all skills →