Implementing AI Checks with Continue for Source-Controlled PR Reviews

Continue is a tool that allows developers to enforce AI checks on pull requests, using markdown files stored in the .continue/checks/ directory of the repository. These checks provide feedback as GitHub status checks, turning green when the code is acceptable, and red with a fix suggestion when issues are detected.
Each check is defined by naming and describing potential issues to look for. For example, you can create a check named Metrics Integrity, described as detecting changes that could harm metric accuracy, such as session counts and event tracking errors. The checks are capable of running functions beyond simple diff analysis: they can read/write files, execute bash commands, and interact with a browser.
An example check for metrics integrity may include looking for patterns like narrow 'find or create' queries causing data duplication, or event tracking within loops leading to multiple, incorrect calls. Files with key patterns like posthog.capture or trackEvent could be tagged as critical for this review.
The checks run automatically on every PR, capturing potential data issues that traditional testing might miss, such as subtle changes affecting dashboards without immediately obvious errors.
To set up your own checks, you can leverage your preferred AI coding agent to explore your codebase using the gh CLI, and craft custom checks tailored to your code standards.
📖 Read the full source: HN AI Agents
👀 See Also

Ultimate Unreal Engine MCP: Claude Code Can Now Build and Verify Unreal Engine Levels with 132 Tools
Open-source MCP server exposes 132 tools across 26 domains, letting Claude spawn actors, set UPROPERTY values, take viewport screenshots, navigate cameras, and self-correct after mutations.

Building a Programming Language with Claude Code: The Cutlet Experiment
Ankur Sethi built a complete programming language called Cutlet using Claude Code over four weeks, with the AI generating every line of code while he focused on guardrails and testing. The language features dynamic typing, vectorized operations, and a REPL, running on macOS and Linux.

Reseed CLI: Extract Design Systems from Any Site for Claude Code and Cursor
Reseed is a CLI that extracts design tokens (colors, spacing, type scale, radii) from any website and generates a tailwind.config.ts, design-system.md, and reference HTML for Claude Code and Cursor to use.

GitAgent: An Open Standard for Portable AI Agents in Git Repos
GitAgent is an open specification that defines AI agents through three core files in a git repository: agent.yaml for configuration, SOUL.md for personality/instructions, and SKILL.md for capabilities. The CLI allows running any agent repo directly with commands like npx @open-gitagent/gitagent run -r https://github.com/user/agent -a claude.