Ai Review Pipeline
Description
AI code review pipeline — review, auto-fix, test generation & HTML report in one command. Zero dependencies, 6 AI providers (OpenAI/DeepSeek/Claude/Gemini/Qwen/Ollama), npx ready.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
ai-review-pipeline
AI-powered code quality pipeline CLI — Review + Test + Report in one command. Add `--fix` for auto-fix loop.
**English | [中文](./README.zh-CN.md)**
Features
- Zero config — Built-in free AI model,
npx ai-review-pipelineworks out of the box with no API Key - Streaming output — Real-time token-by-token response, no more staring at a blank screen
- Large diff chunking — Auto-splits oversized diffs by file for complete coverage
- Zero dependencies — No required deps, instant
npxexecution - Multi-provider — OpenAI / DeepSeek / Claude / Qwen / Gemini / SiliconFlow / Ollama, auto-detected
- Unified pipeline — Default: Review + Test + Report (read-only).
--fixenables auto-fix loop - Flexible targets — Files, folders, comma-separated multi-targets
--fullmode — Review entire file content without git changes- HTML reports — Score + issue list + fix suggestions, attachable to PRs
- JSONC config —
.ai-pipeline.jsonwith comments support, shared across team - CI-ready —
--jsonoutput + exit codes for GitHub Actions / GitLab CI - Bilingual prompts —
--lang enswitches both output AND AI prompt to English - Multi-language code — TypeScript / JavaScript / Vue / Python / Go / Rust / Java / Swift / PHP / Kotlin
Quick Start
# Zero config — just run it (built-in free model)
npx ai-review-pipeline
# Auto-fix pipeline
npx ai-review-pipeline --fix
Configure your own API Key (optional, recommended)💡 No API Key needed to try the full pipeline. The built-in free model has rate limits — configure your own Key for a faster and more stable experience.
# Pick any provider and add to .env.local
# DeepSeek (affordable & capable)
echo 'DEEPSEEK_API_KEY=sk-xxx' >> .env.local
# OpenAI
echo 'OPENAI_API_KEY=sk-xxx' >> .env.local
# Claude
echo 'ANTHROPIC_API_KEY=sk-ant-xxx' >> .env.local
# Qwen (Alibaba Cloud)
echo 'DASHSCOPE_API_KEY=sk
Related Skills
Spec Kit
💫 Toolkit to help you get started with Spec-Driven Development
Testing Webapp Testing
Test local web applications using Playwright for UI verification and debugging
Testing #29
, [#52](https://github.com/affaan-m/everything-claude-code/issues/52), [#103](https://github.com/affaan-m/ever
Testing Fix Issue
by metabase - Addresses GitHub issues by taking issue number as parameter, analyzing context, implementing sol
Testing Pypict Test Design
Design comprehensive test cases using PICT (Pairwise Independent Combinatorial Testing) for optimized test sui
Testing gstack
| 15,000+ | Garry Tan's exact Claude Code setup: 6 opinionated tools that serve as CEO, Eng Manager, Release M
Testing