# continue
**Repository Path**: lifeToSpring/continue
## Basic Information
- **Project Name**: continue
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2026-03-04
- **Last Updated**: 2026-03-04
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
Continue
**Source-controlled AI checks, enforceable in CI**

## 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:
```yaml
---
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:**
```bash
curl -fsSL https://raw.githubusercontent.com/continuedev/continue/main/extensions/cli/scripts/install.sh | bash
```
**Windows (PowerShell):**
```powershell
irm https://raw.githubusercontent.com/continuedev/continue/main/extensions/cli/scripts/install.ps1 | iex
```
Or with npm (requires Node.js 20+):
```bash
npm i -g @continuedev/cli
```
Then run:
```bash
cn
```
Looking for the VS Code extension? [See here](extensions/vscode/README.md).
## Contributing
Read the [contributing guide](https://github.com/continuedev/continue/blob/main/CONTRIBUTING.md), and
join the [GitHub Discussions](https://github.com/continuedev/continue/discussions).
## License
[Apache 2.0 © 2023-2024 Continue Dev, Inc.](./LICENSE)