Claude Code Skills·Claude Skills·The open SKILL.md registry for Claude
HomeIntegrations › Cline

Use Claude Code skills with Cline

Cline is a VS Code extension that runs an autonomous coding agent against the model of your choice — Claude, GPT, local, you pick. It reads .clinerules/ as its native rule directory and natively also picks up .cursorrules and .windsurfrules when present. That makes Cline the most permissive consumer of SKILL.md-shaped content in 2026.

Cline rule-file format (2026)

Cline supports both the modern .clinerules/ directory (one file per rule, plain Markdown) and the legacy single-file .clinerules. It also natively reads .cursorrules and .windsurfrules as fallbacks — useful if you're sharing a repo across teams that use different editors.

Modern (2026)Legacy fallback
.clinerules/<rule-name>.md .clinerules (single file)

Upstream docs: https://docs.cline.bot/

SKILL.md → Cline field mapping

SKILL.md fieldCline equivalent
name→ implicit from filename
description→ optional top-of-file Markdown heading (Cline parses the whole file)
allowed-tools→ no direct equivalent — Cline routes through its own approval flow
user-invokable→ all rules are always loaded

Worked example

Pick any ClaudSkills SKILL.md from the catalog. Strip the YAML frontmatter; drop the body into the file shown below:

# File: .clinerules/security-audit.md

# Security audit

When the user asks for a security review or pentest scope, follow the workflow below.
Apply OWASP Top 10 categories, scan for injection vectors, etc.

Save, restart your editor session, and the skill becomes available to Cline's agent on the next prompt.

Recommended skills for Cline users

From the 6 skills below, pick the one or two that match your project's most-common workflows. Each links to the full SKILL.md on ClaudSkills.

Limitations to know about

FAQ

Do I need to convert SKILL.md to a different format for Cline?

Strip the YAML frontmatter and save the body as .clinerules/<name>.md. That's it. Cline's loader treats the file as plain Markdown system context.

Can Cline use the same SKILL.md as Claude Code in the same repo?

Yes. Keep SKILL.md in your skill folder and symlink (or just copy the body) into .clinerules/<name>.md. Both tools see the content; neither tool conflicts with the other's loader.

Will switching from Claude to GPT in Cline change how my skill behaves?

Sometimes. Skills that depend on specific Claude tool-use idioms (XML tags in Claude's tool-use format, specific Claude refusal patterns) may behave differently with GPT. Test with both models.

Keep reading