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

Use Claude Code skills with Continue.dev

Continue.dev is a VS Code / JetBrains extension that lets you bring your own model and ships its own configuration format. Skills don't drop in as rule files — instead, the content of a SKILL.md becomes the systemMessage of a model entry in Continue's config.json. More work than the Cursor / Cline path, but the trade-off is that Continue has the broadest multi-model support.

Continue.dev rule-file format (2026)

Continue's config is JSON (or TypeScript in older versions). To use a SKILL.md, embed the body of the skill into a systemMessage string on the model entry. The model entry then loads that system message at session start. As of 2026 Continue's modern format is config.json with arrays of model + tool entries; see their docs for the full schema.

Modern (2026)Legacy fallback
~/.continue/config.json (global) or .continue/config.json (project) config.ts (older Continue versions)

Upstream docs: https://docs.continue.dev/

SKILL.md → Continue.dev field mapping

SKILL.md fieldContinue.dev equivalent
nametitle field on the model entry
description→ optional; embed in the systemMessage preamble
allowed-tools→ no direct equivalent; Continue's tool list is config-level
user-invokable→ always-on per the active model entry

Worked example

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

# File: ~/.continue/config.json

{
  "models": [
    {
      "title": "Claude (with code-review skill)",
      "provider": "anthropic",
      "model": "claude-opus-4-7",
      "systemMessage": "# Code review\n\nWhen reviewing a diff, walk through ..."
    }
  ]
}

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

Recommended skills for Continue.dev 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

Can I have multiple SKILL.md files in one Continue config?

Yes — create one model entry per skill, each with a different title and systemMessage. You pick the right one from the Continue UI when starting a chat.

Should I use JSON or TypeScript config?

JSON is the current standard. TypeScript config (config.ts) still works in older Continue versions but the team is moving toward JSON. For maximum portability, use JSON.

Is there a simpler way to load skills into Continue?

Not natively. The cleanest path is a small script that reads ~/.claude/skills/<slug>/SKILL.md, strips frontmatter, and writes a model entry into config.json. The ClaudSkills desktop app may add a Continue export in the future.

Keep reading