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'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 field | Continue.dev equivalent |
|---|---|
name | → title 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 |
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.
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.
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.
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.
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.
SKILL.md files, not affiliated with, endorsed by, or sponsored by Anthropic.