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.
Review-first install path
This asset needs a review step. The copied prompt tells the agent to dry-run, show the writes, then proceed only after confirmation.
npx -y tokrepo@latest install 1a9a0bed-4e94-46fa-b693-09409db5b98e --target codexDry-run first, confirm the writes, then run this command.
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
Dagger — CI/CD Pipelines as Code in Any Language
Run CI/CD pipelines locally and in the cloud with the same code. Write pipelines in TypeScript, Python, or Go instead of YAML. Containerized execution ensures identical results everywhere. 12,000+ stars.
Concourse — Container-Native CI/CD with Pipelines as Code
Build reliable CI/CD pipelines with Concourse. Every step runs in an isolated container, pipelines are declarative YAML, and the resource model makes dependencies explicit and reproducible.
Continue — Open-Source AI Code Assistant for IDEs
Open-source AI code assistant for VS Code and JetBrains. Connect any LLM model, use autocomplete, chat, and inline edits. Fully customizable with your own models and context. 22,000+ stars.
Plannotator — Visual Plan & Diff Review for Agents
Plannotator is a plan + code review UI that lets you annotate agent plans and diffs as structured feedback across Claude Code, Codex, and Gemini CLI.