Continuous AI: How Continue Moved From Editor to CI
Continue pivoted from an editor autocomplete plugin to Continuous AI — source-controlled AI checks that run on every pull request. Here's what that means for beginners.
Marcus Vale is a fictional AI persona, not a real person. This article was written by AI and reviewed by a human editor before publishing. How we work →

If you came here looking for the VS Code autocomplete extension, the short version is: that's no longer the main thing Continue does. In 2026 the project pivoted to something it calls Continuous AI — AI agents that run on your pull requests as enforceable checks, not ghost-text in your editor.
That's a big enough shift that the old editor-plugin framing is out of date. This explainer covers what Continuous AI actually is, how the new Continue CLI works, and whether any of it matters if you're a beginner who just wanted free autocomplete.
What "Continuous AI" Means
The name is a deliberate echo of continuous integration (CI). Where CI runs your tests automatically on every push, Continuous AI runs AI checks automatically on every pull request.
Instead of you opening an editor and asking an AI to look at your code, the AI is already wired into your workflow. Someone opens a PR, and a set of agents reviews it in the background — checking for the things you told them to care about — and reports back as pass/fail status checks right inside GitHub. Green means the check passed; red comes with a suggested fix you can accept or reject without leaving the PR.
The pitch is that code review and quality enforcement shouldn't depend on a human remembering to ask. You define the rules once, and they run on every change forever.
How It Actually Works
Checks are just markdown files
The core idea is refreshingly simple. A "check" is a markdown file that lives in your repository at .continue/checks/. Each file has a name, a description, and a prompt that tells the AI what to evaluate.
A security check might say: flag hardcoded secrets, missing input validation, SQL injection risks, and anything that logs sensitive data. A style check might enforce your team's naming conventions. Because the checks are markdown committed to your repo, they're source-controlled — they get reviewed, versioned, and changed through pull requests like any other code. That's the "source-controlled AI checks" part of the tagline.
The Continue CLI (cn)
Powering all of this is an open-source terminal agent called cn. It's the same kind of coding agent you'd find in tools like Claude Code or Aider — it can read files, run commands, and work through multi-step tasks — but it's built to run both interactively and unattended.
Install it with npm:
npm i -g @continuedev/cli
Then it runs in two modes:
- Interactive (TUI): run
cnto start a session where you type messages, reference files with@, approve tool calls, and iterate — much like any terminal coding agent. - Headless: run
cn -p "your prompt"for single-shot automation. The agent runs to completion and prints to stdout, which makes it scriptable inside CI pipelines, git hooks, and cron jobs.
That headless mode is what makes Continuous AI possible. A GitHub Action can call cn on each pull request, run your checks, and post the results — no human in the loop.
What Happened to the Editor Extension
Continue still ships a VS Code extension and a JetBrains plugin, and they still install. But the original continuedev/continue repository is now read-only and no longer actively maintained. The team shipped a final, polished 2.0.0 release (it stripped telemetry and fixed bugs) and now explicitly recommends using the Continue CLI instead of the JetBrains plugin going forward.
So if you install the extension today, it works — but you're using a product in maintenance mode, not the thing the team is actively building. For a beginner who just wants inline autocomplete, that's a real consideration: you'd be adopting a tool whose roadmap has moved on.
The project is still open source under the Apache 2.0 license, so the editor code isn't going anywhere. It's just frozen.
Should Beginners Care About Continuous AI?
Honestly? For your first few weeks of coding, probably not directly. Continuous AI is aimed at teams and repositories with pull-request workflows — it assumes you're already using GitHub PRs and CI. If you're building a solo project and committing straight to main, there's no PR for it to run on yet.
But it's worth understanding for two reasons:
- It tells you where the editor tool stands. If someone recommends "Continue" for free autocomplete, you now know the extension is in maintenance mode. For pure editor autocomplete, Codeium's free tier or GitHub Copilot's free tier are more actively developed picks.
- It's a preview of where AI coding is heading. "AI that reviews every change automatically" is a pattern you'll see more of. Getting the mental model now — checks as committed markdown, agents running in CI, fixes surfaced in the PR — pays off later.
If you do work on a team repo, setting up a single Continuous AI check (say, a secret-scanner) is a low-stakes way to see automated AI review in action without rewriting your workflow.
Continuous AI vs. Asking an AI to Review Code
You can already paste a diff into Claude or ChatGPT and ask "review this." The difference is consistency and coverage. A manual review happens when you remember to do it and covers what you happened to think of. A Continuous AI check happens on every PR and covers exactly the rules you defined — no skipped reviews, no "I'll check it later."
The trade-off is setup. You have to write the checks, wire up the CI integration, and accept that the AI will occasionally flag false positives you have to dismiss. For a solo beginner that overhead isn't worth it yet. For a team shipping daily, it's the kind of guardrail that catches the mistake nobody had time to look for.
The Bottom Line
Continue isn't the editor autocomplete tool it used to be. The extension still installs but is frozen at 2.0.0; the active product is Continuous AI — AI checks defined as markdown, run by the open-source cn CLI, enforced on every pull request through CI.
If you want free editor autocomplete today, look at the best free AI coding tools for 2026 instead. If you're on a team and want automated AI review baked into your pull-request flow, Continuous AI is genuinely interesting — and because the CLI is open source, you can try it without committing to anything.
The StackBrief weekly
New reviews and the AI-coding-tool news worth knowing — with our take. One email a week, unsubscribe anytime.
Keep reading

What Is Claude Cowork? Claude Code for the Rest of Your Work
Claude Cowork is Anthropic's agentic AI for knowledge work — the same engine as Claude Code, but for your files instead of your codebase. What it does and whether you need it.
June 16, 2026
What Is the Bright Data MCP? Live Web Access for AI
The Bright Data MCP gives your AI agent search, page scraping, and structured web data at scale — getting past blocks. Here's what it does and the real cost.
June 4, 2026
What Is the Chrome DevTools MCP? A Beginner's Guide
The Chrome DevTools MCP lets an AI agent drive a real Chrome browser — navigate, read the console, debug, and run performance traces. Here's how it works.
June 4, 2026