git404hub

what is continue fr?

continuedev/continue — explained in plain English

Analysis updated 2026-05-18

33,005TypeScriptAudience · developerComplexity · 3/5LicenseSetup · moderate

tl;dr

AI-powered code review automation that runs checks on every pull request using rules you define in text files, flagging issues and suggesting fixes automatically.

vibe map

mindmap
  root((Continue))
    What it does
      Automated code review
      PR status checks
      Suggests code fixes
    How to use
      Write check files
      Store in .continue folder
      Runs on pull requests
    Tech stack
      TypeScript
      Large language models
      GitHub integration
    Use cases
      Enforce security rules
      Validate API endpoints
      Catch style violations
    Audience
      Development teams
      Code quality focused
      CI/CD workflows

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Automatically catch hardcoded API keys and security antipatterns in every pull request.

VIBE 2

Enforce consistent input validation and error handling across new endpoints without manual review.

VIBE 3

Define team coding standards once in text files and have them checked automatically on all future changes.

VIBE 4

Reduce time spent on repetitive code review feedback by flagging common issues with suggested fixes.

what's the stack?

TypeScriptGitHub ActionsLarge Language ModelsVS CodeJetBrains IDEs

how it stacks up fr

continuedev/continuelissy93/web-checkimmutable-js/immutable-js
Stars33,00533,02433,061
LanguageTypeScriptTypeScriptTypeScript
Setup difficultymoderateeasyeasy
Complexity3/52/52/5
Audiencedeveloperops devopsdeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · moderate time til it works · 30min

Requires LLM API key (OpenAI, etc.) and GitHub Actions workflow configuration.

Use freely for any purpose including commercial. Keep the notice and disclose changes to the patent grant.

in plain english

Continue is a tool that brings automated AI code review directly into your software development workflow, specifically by running checks on every pull request as part of your continuous integration pipeline. The core idea is that you write review criteria in simple text files stored in your repository, and Continue uses AI agents to evaluate whether new code meets those criteria, flagging issues automatically without a human reviewer needing to look at every pull request first. The way it works is straightforward: you create markdown files in a folder called .continue/checks/ inside your project. Each file describes a check, such as "make sure no API keys are hardcoded" or "confirm all new endpoints validate input." When a pull request is opened, Continue runs these checks as GitHub status checks, the same kind of green or red indicators you already see from automated tests. If a check fails, Continue not only marks it red but also suggests a concrete code diff to fix the problem. This is useful for development teams who want consistent code quality standards enforced automatically. Instead of relying on human reviewers to catch the same recurring issues, security antipatterns, missing error handling, style violations, you encode those rules once and the AI enforces them on every future change. Because the checks are just text files in version control, the whole team can contribute to and audit them like any other code. The project includes a command-line tool called the Continue CLI, installable via a shell script or npm, as well as extensions for code editors including VS Code and JetBrains IDEs. The stack is TypeScript, and the system integrates with large language models to power the actual review logic.

prompts (copy fr)

prompt 1
How do I set up Continue to automatically check for hardcoded secrets in my pull requests?
prompt 2
Show me how to write a custom check file in .continue/checks/ that validates all new API endpoints require input validation.
prompt 3
How do I integrate Continue into my GitHub Actions workflow so it runs on every PR?
prompt 4
Can you help me create a Continue check that flags missing error handling in async functions?
prompt 5
How do I install the Continue CLI and use it locally before pushing to GitHub?

Frequently asked questions

what is continue fr?

AI-powered code review automation that runs checks on every pull request using rules you define in text files, flagging issues and suggesting fixes automatically.

What language is continue written in?

Mainly TypeScript. The stack also includes TypeScript, GitHub Actions, Large Language Models.

What license does continue use?

Use freely for any purpose including commercial. Keep the notice and disclose changes to the patent grant.

How hard is continue to set up?

Setup difficulty is rated moderate, with roughly 30min to a first successful run.

Who is continue for?

Mainly developer.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.