JavaScript is disabled. Some features may not work.
Beginner Guide: Install Your First AI Skill in 5 Minutes | SkillsNav Blog
🇺🇸 English🇨🇳 中文
SkillsNav
Home

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

  1. Open the skill detail page
  2. Copy the full SKILL.md content
  3. Paste it into your project's .cursorrules file

Gemini CLI

  1. Copy the SKILL.md content
  2. 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

  1. Install 3 skills: writing-plans + tdd + coding-standards
  2. Use them for a week: See if AI performance changes
  3. Add more as needed: Find more skills from categories
  4. Write your own: Turn your team's best practices into SKILL.md

Further Reading


SkillsNav catalogs 5280+ AI Agent Skills, all free and open-source. Browse all skills →

Related Skills