SkillsApr 1, 2026·1 min read

Continue — AI Code Review Agents for CI/CD

Continue runs AI agents as code review checks on PRs. 32.2K+ GitHub stars. Markdown-defined checks, pass/fail with diffs, VS Code + JetBrains. Apache 2.0.

TL;DR
Continue runs AI-powered code review checks on PRs with markdown-defined rules and pass/fail diffs.
§01

What it is

Continue is an open-source AI code assistant that runs code review agents as automated checks on pull requests. You define review rules in Markdown, and Continue's agents analyze diffs, flag issues, and produce pass/fail results with inline annotations. It integrates with VS Code and JetBrains IDEs for local development and with CI/CD pipelines for automated PR review.

Continue is for engineering teams who want AI-assisted code review that enforces project-specific standards automatically on every pull request.

The project is actively maintained with regular releases and a growing user community. Documentation covers common use cases, and the open-source nature means you can inspect the source code, contribute fixes, and adapt the tool to your specific requirements.

§02

How it saves time or tokens

Manual code review is a bottleneck. Reviewers miss inconsistencies, and review turnaround slows feature delivery. Continue automates the repetitive parts: style checks, security patterns, documentation requirements, and API usage rules. Human reviewers focus on architecture and business logic while Continue handles the checklist items.

§03

How to use

  1. Install the Continue extension for VS Code or JetBrains.
  2. Define review rules in Markdown files within your repository.
  3. Configure Continue as a CI check to run on every pull request.
§04

Example

# Security Check: No Hardcoded Secrets

Check that no API keys, passwords, or tokens appear
in the diff as string literals.

Fail if any match: /['"](?:sk-|pk_|password|secret)[^'"]{8,}['"]/
# Install Continue CLI
curl -fsSL https://raw.githubusercontent.com/continuedev/continue/main/extensions/cli/scripts/install.sh | bash

# Run review on current branch
continue review --rules .continue/rules/
§05

Related on TokRepo

§06

Common pitfalls

  • Overly broad review rules generate false positives that train developers to ignore the output. Start with narrow, high-confidence rules and expand gradually.
  • Continue's agents consume tokens for each review. Large PRs with hundreds of changed files can be expensive. Set file count and diff size limits in your CI configuration.
  • Review rules must be specific to your codebase. Generic rules like 'check for bugs' produce vague feedback. Write rules that reference your project's naming conventions, error handling patterns, and API contracts.

Before adopting this tool, evaluate whether it fits your team's existing workflow. Read the official documentation thoroughly, and start with a small proof-of-concept rather than a full migration. Community forums, GitHub issues, and Stack Overflow are valuable resources when you encounter edge cases not covered in the documentation.

Frequently Asked Questions

Which IDEs does Continue support?+

Continue provides extensions for VS Code and JetBrains IDEs (IntelliJ, WebStorm, PyCharm, etc.). Both extensions support inline AI chat, code completion, and the review agent functionality.

Can Continue run as a GitHub Action?+

Yes. Continue can be configured as a CI check that runs on pull request events. It analyzes the PR diff against your review rules and posts results as check annotations or PR comments.

How are review rules defined?+

Review rules are written in Markdown files stored in your repository. Each rule describes what to check, the expected behavior, and the failure criteria. Continue's AI agents interpret these rules and apply them to code diffs.

Is Continue open source?+

Yes. Continue is open source under the Apache 2.0 license. The VS Code extension, JetBrains plugin, CLI, and core engine are all available on GitHub.

Which AI models does Continue use?+

Continue supports multiple model providers including OpenAI, Anthropic Claude, local models via Ollama, and Azure OpenAI. You configure the model in your Continue settings based on your cost and privacy requirements.

Citations (3)
🙏

Source & Thanks

continuedev/continue — 32,200+ GitHub stars

Discussion

Sign in to join the discussion.
No comments yet. Be the first to share your thoughts.

Related Assets