Back to blog
Tutorial

How to Use Agent Skills with Cursor [Rules Coexistence Guide]

Skill Gallery TeamJanuary 24, 20263 min read

Cursor users can leverage Agent Skills too.

This article explains how to set up Agent Skills in Cursor and how to use them alongside existing Rules files.

Cursor's Agent Skills Support

Cursor 2.0 and later supports the Agent Skills standard. As of January 2026, the background agent feature is stable, making skill-based automation even more convenient.

Skill Placement

Project-Specific

your-project/
└── .cursor/
    └── skills/
        └── my-skill/
            └── SKILL.md

Global

~/.cursor/
└── skills/
    └── my-skill/
        └── SKILL.md

Rules vs Agent Skills

Cursor has its own Rules files (.cursorrules). How should you choose between them and Agent Skills?

AspectRulesAgent Skills
ScopeAlways appliedApplied per task
FormatProprietaryStandard Markdown
Cross-toolCursor onlyWorks in Claude Code, Codex, etc.
Use caseProject-wide rulesTask-specific workflows

When to Use Which

Rules work best for:

  • Coding style consistency (indentation, naming)
  • Project-wide constraints
  • Rules that should "always" apply

Agent Skills work best for:

  • Specific tasks (code review, PR creation)
  • Workflows you want across multiple tools
  • Instructions that apply only when invoked

Example of Coexistence

your-project/
├── .cursorrules          # Always-applied rules
└── .cursor/
    └── skills/
        ├── code-review/  # Applied during review
        └── pr-template/  # Applied during PR creation

Invoking Skills

In Chat

Use skill names in Cursor's chat:

@code-review Review this file

In Composer (Cmd+K)

Skills work in Composer too:

Use /code-review to improve this function

Cursor 2.0 Background Agents

Combined with Cursor 2.0's background agent feature, skills enable automated tasks.

Example Use

Run /code-review in the background and notify me of issues

Long reviews or analysis tasks run in the background with notifications on completion.

Sharing Skills with Claude Code/Codex

The same SKILL.md works across multiple tools.

# Place skill for Cursor
mkdir -p ~/.cursor/skills/code-review
cp SKILL.md ~/.cursor/skills/code-review/

# Symlink for Claude Code
mkdir -p ~/.claude/skills
ln -s ~/.cursor/skills/code-review ~/.claude/skills/code-review

Now the same skill works in both Cursor and Claude Code.

Caveats

Priority Between Rules and Skills

When both Rules and Agent Skills apply, Rules generally take priority. Conflicting instructions usually follow Rules.

Tool-Specific Features

Features specific to other tools (like Claude Code subagents) won't work in Cursor. For portability, use skills that work with just the SKILL.md body.

Summary

Agent Skills work in Cursor too.

  • Place in ~/.cursor/skills/
  • Rules are "always applied," Skills are "applied per task"
  • Combine with background agents for convenience

Browse the Skills list to find skills to try.

cursoragent-skillsrulessetuptutorial

Related posts