Overview
Continue is an open-source coding agent built by Continue Dev, Inc. and released under the Apache 2.0 license. You can use it three ways: a command-line tool called cn, a VS Code extension, and a JetBrains plugin. The agent works alongside you in your editor or terminal to help write, edit, and review code.
A core idea in Continue is moving AI review into your repository. Each check is a markdown file kept under version control next to your code. On every pull request, those checks run and show up as GitHub status checks, passing when the code meets your standards and failing with suggested fixes when it does not, so the rules are enforceable in CI.
Note: the continuedev/continue repository has reached a final 2.0.0 release and is now read-only and no longer actively maintained, but the code and the open-source CLI remain available for use and as a foundation for others.
What it does
- Runs as a CLI (cn), a VS Code extension, and a JetBrains plugin from one project
- Interactive terminal session, plus a headless mode for one-off prompts and automation
- AI review checks stored as markdown files in your repo, kept under version control
- Checks run on every pull request and appear as GitHub status checks (pass or fail)
- Tool-permission flags let you allow, prompt before, or exclude specific agent tools
- Apache 2.0 licensed and open source, so you can self-host and adapt it
Getting started
Install the Continue CLI, then start an interactive session or run a single prompt in headless mode. The CLI binary is named cn.
Install the CLI
On macOS or Linux, install the Continue CLI with the official install script.
curl -fsSL https://raw.githubusercontent.com/continuedev/continue/main/extensions/cli/scripts/install.sh | bashStart an interactive session
Run the cn command in your project to open an interactive coding session in the terminal.
cnRun a single prompt (headless)
Use the -p flag to run one prompt without the interactive UI, which is useful for scripts and automation.
cn -p "your prompt here"Use VS Code or JetBrains instead
Prefer an editor? Install the Continue extension from the VS Code Marketplace (or OpenVSX), or the JetBrains plugin. See docs.continue.dev for configuration.
Commands and code are distilled from the project's own documentation — always check the official repo for the latest.
When to use it
- Pair with an AI coding agent in the terminal or your editor to write and edit code
- Define AI code-review rules as markdown files in your repo and enforce them on every pull request
- Run the CLI in headless mode inside CI pipelines to automate checks and prompts
- Standardize team coding standards as version-controlled checks that show up as GitHub status checks
How Continue compares
Continue alongside other open-source autonomous coding agents tools AI/TLDR tracks, ranked by GitHub stars.
| Tool | Stars | What it does |
|---|---|---|
| opencode | ★ 209k | OpenCode is an open source AI coding agent that runs in your terminal, with built-in build and plan agents and an optional desktop app. |
| Claude Code | ★ 148k | Anthropic's agentic coding tool for the terminal, IDE and GitHub: it understands your codebase, executes routine tasks, explains code and handles git workflows from natural-language commands. |
| OpenAI Codex | ★ 126k | OpenAI's cloud and CLI coding agent that writes features, fixes bugs, and proposes code changes across a repo, running tasks in parallel. |
| Pi | ★ 109k | Minimal terminal coding agent harness with four built-in tools, extended through TypeScript extensions, skills and prompt templates instead of forks. |
| Gemini CLI | ★ 107k | An open-source command-line AI agent from Google that connects your terminal to Gemini models for reading code, editing files, running shell commands, and searching the web. |
| autoresearch | ★ 96.6k | Karpathy's minimal harness that hands a coding agent a single-GPU LLM training script and lets it run fixed five-minute experiments, keeping or discarding each change on its own. |
| OpenHands | ★ 88.9k | An open-source AI software-development agent that plans tasks, edits files, runs commands, and tests code, usable from a terminal CLI, a local web GUI, or a Python SDK. |
| Continue | ★ 36k | Open-source coding agent for your terminal, VS Code, and JetBrains, with AI checks you can put in CI |
