Open-source VS Code and JetBrains extension that connects any LLM for autocomplete, chat, and inline editing with full model and context control.
Add this skill
npx mdskills install continuedev/continue-extensionInstallation and configuration guide, not an actionable skill for AI agents to execute
1# Continue23The leading open-source AI code assistant for VS Code and JetBrains.45## Features67- **Chat** — Ask questions about your codebase8- **Autocomplete** — Tab-complete with any model9- **Edit** — Highlight code and give instructions10- **Actions** — Custom slash commands for repetitive tasks1112## Supported Models1314- Claude (Anthropic)15- GPT-4 (OpenAI)16- Gemini (Google)17- Ollama (local models)18- Any OpenAI-compatible API1920## Install2122### VS Code23Search "Continue" in the VS Code marketplace, or:24```25ext install continue.continue26```2728### JetBrains29Search "Continue" in the JetBrains plugin marketplace.3031## Configuration3233Edit `~/.continue/config.json` to add your models:3435```json36{37 "models": [38 {39 "title": "Claude Sonnet",40 "provider": "anthropic",41 "model": "claude-sonnet-4-20250514",42 "apiKey": "your-key"43 }44 ]45}46```47
Full transparency — inspect the skill content before installing.