UNPKG

@bobmatnyc/ai-code-review

Version:

A TypeScript-based tool for automated code reviews using AI models from Google Gemini, Anthropic Claude, and OpenRouter

10 lines (9 loc) 296 B
/** * @fileoverview Review strategies module. * * This module provides a collection of strategies for performing different types * of code reviews, along with a factory for creating strategy instances. */ export * from './base'; export * from './implementations'; export * from './factory';