A check is a markdown file with YAML frontmatter and a markdown body. The frontmatter configures metadata and tooling. The body is the prompt the agent follows when reviewing a pull request.Documentation Index
Fetch the complete documentation index at: https://continue-docs-dependabot-npm-and-yarn-docs-multi-c8c89d9539.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
File format
.continue/checks/ or .agents/checks/ at the repository root.
Frontmatter fields
| Field | Required | Type | Description |
|---|---|---|---|
name | Yes | string | Display name shown in GitHub status checks and on continue.dev |
description | Yes | string | Short description of what the check verifies |
model | No | string | Model to use. Defaults to Claude Sonnet. Example: anthropic/claude-sonnet-4-5-20250514 |
Body
The markdown body after the frontmatter is the agent’s system prompt. It runs in the context of the PR being reviewed. The agent reads the prompt, examines the pull request diff, and produces a pass or fail verdict with reasoning. Write concrete pass/fail criteria. See Best Practices for guidance on prompt structure.Complete example
A fully-specced check file using all available fields:.continue/checks/migration-safety.md
File discovery
Continue locates checks by scanning specific directories at the repository root:- Reads all
.mdfiles in.continue/checks/ - Reads all
.mdfiles in.agents/checks/ - Subdirectories are not scanned
- Files without valid
nameanddescriptionfrontmatter are skipped
Supported directory paths
.continue/checks/ and .agents/checks/ are equivalent. Both are scanned and merged into a single list of checks.
.agents/ is an emerging cross-tool standard for AI agent configuration. .continue/ is Continue-specific. Use whichever fits your project. If both directories contain a check with the same name, the .continue/checks/ version takes precedence.