skillpack.co
All skills

Continue (Continuous AI)

active

Pivoted from IDE autocomplete to Continuous AI — an open-source CLI that runs async agents on every PR to enforce standards and catch issues automatically.

Guardian
Orchestrator
Complexity
clicodingagentsorchestration

68/100

Trust

32K+

Stars

2

Evidence

845.3 MB

Repo size

Product screenshot

Continue (Continuous AI) in action

Videos

Reviews, tutorials, and comparisons from the community.

Long continuous AI video is here! Free & open-source

AI Search·2026-01-01

How to Create Long AI Animation Videos with Consistent Characters | VEO 3.1 + Google Flow

King Charles Tv·2025-11-10

Grok AI Lip Sync Tutorial With Consistent Characters: Make Long AI Videos In Minutes!

Artificial Quotient·2026-01-25

Repo health

68/100

22h ago

Last push

1,477

Open issues

4,277

Forks

497

Contributors

Editorial verdict

Best pick for teams that want background AI agents enforcing code quality on PRs, not real-time autocomplete. The pivot repositioned it away from individual devs toward team CI workflows.

Public evidence

How does this compare?

See side-by-side metrics against other skills in the same category.

COMPARE SKILLS →

Where it wins

Async agents that enforce team rules on every PR

CLI-first — runs in CI without IDE dependency

Open-source with model flexibility

Background operation — catches issues silently without interrupting flow

Where to be skeptical

No longer the IDE autocomplete tool it once was

More setup upfront than plug-and-play IDE extensions

Best for teams with established coding standards, not solo devs

Ranking in categories

Know a better alternative?

Submit evidence and we'll run the full pipeline.

SUBMIT →

Similar skills

Raw GitHub source

GitHub README peek

Constrained peek so you can sanity-check the source material without leaving the site.

<div align="center"></div> <h1 align="center">Continue</h1> <div align="center"> <a target="_blank" href="https://opensource.org/licenses/Apache-2.0" style="background:none"> </a> <a target="_blank" href="https://docs.continue.dev" style="background:none"> </a> <a target="_blank" href="https://changelog.continue.dev" style="background:none"> </a> <p></p>

Source-controlled AI checks, enforceable in CI

</div>

Banner

Getting started

Paste this into your coding agent of choice:

Help me write checks for this codebase: https://continue.dev/walkthrough

How it works

Continue runs agents on every pull request as GitHub status checks. Each agent is a markdown file in your repo at .continue/checks/. Green if the code looks good, red with a suggested diff if not. Here is an example that performs a security review:

---
name: Security Review
description: Review PR for basic security vulnerabilities
---
Review this PR and check that:
  - No secrets or API keys are hardcoded
  - All new API endpoints have input validation
  - Error responses use the standard error format

Install CLI

AI checks are powered by the open-source Continue CLI (cn).

macOS / Linux:

curl -fsSL https://raw.githubusercontent.com/continuedev/continue/main/extensions/cli/scripts/install.sh | bash

Windows (PowerShell):

irm https://raw.githubusercontent.com/continuedev/continue/main/extensions/cli/scripts/install.ps1 | iex

Or with npm (requires Node.js 20+):

npm i -g @continuedev/cli

Then run:

cn

Looking for the VS Code extension? See here.

Contributing

Read the contributing guide, and join the GitHub Discussions.

License

Apache 2.0 © 2023-2024 Continue Dev, Inc.

View on GitHub →