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.
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.
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.
How to use
- Install the Continue extension for VS Code or JetBrains.
- Define review rules in Markdown files within your repository.
- Configure Continue as a CI check to run on every pull request.
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/
Related on TokRepo
- AI Tools for Coding -- Code review and developer tools
- AI Tools for Security -- Security scanning and audit tools
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
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.
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.
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.
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.
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)
- Continue GitHub— Continue is an open-source AI code assistant
- Continue Documentation— VS Code and JetBrains IDE extensions
- Continue Model Setup— Supports multiple AI model providers
Related on TokRepo
Source & Thanks
continuedev/continue — 32,200+ GitHub stars
Discussion
Related Assets
Claude-Flow — Multi-Agent Orchestration for Claude Code
Layers swarm and hive-mind multi-agent orchestration on top of Claude Code with 64 specialized agents, SQLite memory, and parallel execution.
ccusage — Real-Time Token Cost Tracker for Claude Code
CLI that reads ~/.claude logs and breaks down Claude Code token spend by day, session, and project — pluggable into your statusline.
SuperClaude — Workflow Framework for Claude Code
Adds 16+ slash commands, 9 cognitive personas, and a smart flag system to Claude Code in one pipx install.