π νκ΅μ΄
A modern CLI tool that helps AI analyze Git diffs to improve code quality, find bugs, and identify security vulnerabilities.
demo.mp4
Selvage: Code reviews with an edge!
No more waiting for reviews! AI instantly analyzes your code changes to provide quality improvements and bug prevention. With smart context analysis (AST-based) that's accurate and cost-effective, plus multi-turn processing for large codebases - seamlessly integrated with all Git workflows.
Table of Contents
- π€ Multiple AI Model Support: Leverage the latest LLM models including OpenAI GPT-5, Anthropic Claude Sonnet-4, Google Gemini, and more
- π Git Workflow Integration: Support for analyzing staged, unstaged, and changes between specific commits/branches
- π― Optimized Context Analysis: Tree-sitter based AST analysis automatically extracts the smallest code blocks containing changed lines along with their dependency statements, providing contextually optimized information for each situation
- π Automatic Multi-turn Processing: Automatic prompt splitting when context limits are exceeded, supporting stable large-scale code reviews
- π€ MCP Mode Support: Register as MCP mode in Cursor, Claude Code, etc., and request code reviews through natural language like "Review current changes"
- π Open Source: Freely use and modify under Apache-2.0 License
Recommended Method (using uv)
# Install uv (run once)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install Selvage
uv tool install selvageAlternative Method (using pipx)
# Install pipx (macOS)
brew install pipx
# Install Selvage
pipx install selvageTraditional Method (pip)
# β οΈ May cause externally-managed-environment error on some systems
pip install selvagemacOS/Linux users: If you encounter errors with pip install, please use the uv or pipx methods above.
Get an API key from OpenRouter and set it up:
export OPENROUTER_API_KEY="your_openrouter_api_key_here"Register as MCP mode in Cursor, Claude Code, etc., to request code reviews through natural language.
Register in Cursor's MCP configuration file (path may vary depending on user environment):
Common path: ~/.cursor/mcp.json
// Method 1: Using environment variables (if already set)
{
"mcpServers": {
"selvage": {
"command": "uvx",
"args": ["selvage", "mcp"]
}
}
}
// Method 2: Direct specification
{
"mcpServers": {
"selvage": {
"command": "uvx",
"args": ["selvage", "mcp"],
"env": {
"OPENROUTER_API_KEY": "your_openrouter_api_key_here"
}
}
}
}# Method 1: Using environment variables (if already set)
claude mcp add selvage -- uvx selvage mcp
# Method 2: Direct specification
claude mcp add selvage -e OPENROUTER_API_KEY=your_openrouter_api_key_here -- uvx selvage mcpAfter restarting your IDE, request reviews from your Coding Assistant:
Please review current changes using selvage mcp
Review changes between current branch and main branch using claude-sonnet-4-thinking with selvage mcp
π Done! Selvage will analyze the code, review it, and deliver results through your Coding Assistant.
For direct terminal usage:
selvage review --model claude-sonnet-4-thinkingπ‘ More Options: CLI Usage | Practical Usage Guide
# Basic review request
Please review current changes using selvage mcp
# Review staged changes
Review staged work using gpt-5-high with selvage mcp
# Review against specific branch
Review current branch against main branch using selvage mcp
# Review with automatic model selection
Review current branch against main branch using selvage mcp, automatically selecting appropriate model
Multi-model Comparison Review
Review staged work using both gpt-5-high and claude-sonnet-4-thinking with selvage mcp, then compare the results
Stepwise Code Improvement Workflow
1. Review current changes using claude-sonnet-4-thinking with selvage mcp
2. Critically evaluate review feedback for validity against current codebase and set priorities
3. Apply improvements sequentially based on established priorities
CI/CD Integration Scenarios
# Code quality verification before PR creation
Review changes against main branch using selvage mcp for code quality verification before PR creation
# Final check before deployment
Perform comprehensive review of staged changes using selvage mcp for final check before deployment
Direct terminal usage method. While MCP mode is recommended, CLI is useful for scripts and CI/CD.
# View all settings
selvage config list
# Set default model
selvage config model <model_name>
# Set default language
selvage config language <language_name>
selvage review [OPTIONS]--repo-path <path>: Git repository path (default: current directory)--staged: Review only staged changes--target-commit <commit_id>: Review changes from specific commit to HEAD (e.g., abc1234)--target-branch <branch_name>: Review changes between current branch and specified branch (e.g., main)--model <model_name>: AI model to use (e.g., claude-sonnet-4-thinking)--open-ui: Automatically launch UI after review completion--no-print: Don't output review results to terminal (terminal output enabled by default)--skip-cache: Perform new review without using cache
# Review current working directory changes
selvage review
# Final check before commit
selvage review --staged
# Review specific files only
git add specific_files.py && selvage review --staged
# Code review before sending PR
selvage review --target-branch develop
# Quick and economical review for simple changes
selvage review --model gemini-2.5-flash
# Review and then view detailed results in web UI
selvage review --target-branch main --open-ui# Code quality verification before Pull Request creation
selvage review --target-branch main --model claude-sonnet-4-thinking
# Pre-analysis of changes for code reviewers
selvage review --target-branch develop --model claude-sonnet-4-thinking
# Comprehensive review of all changes after specific commit
selvage review --target-commit a1b2c3d --model claude-sonnet-4-thinking# Quick feedback during development (before WIP commit)
selvage review --model gemini-2.5-flash
# Final verification of staged changes (before commit)
selvage review --staged --model claude-sonnet-4-thinking
# Emergency review before hotfix deployment
selvage review --target-branch main --model claude-sonnet-4-thinking# Large codebases are automatically handled
selvage review --model claude-sonnet-4 # Usage is the same, multi-turn processing automatically applied after detectionSelvage automatically handles large code changes that exceed LLM model context limits. Long Context Mode runs automatically, so just wait for it to complete.
# Use economical models for small changes
selvage review --model gemini-2.5-flashReview results are output directly to the terminal and automatically saved to files simultaneously.
For additional review management and re-examination, you can use the web UI:
# Manage all saved review results in web UI
selvage view
# Run UI on different port
selvage view --port 8502Key UI Features:
- π Display list of all review results
- π¨ Markdown format display
- ποΈ JSON structured result view
Selvage uses Tree-sitter based AST analysis to precisely extract only the code blocks related to changed lines, ensuring both cost efficiency and review quality simultaneously.
- Precise Extraction: Extracts only the minimal function/class blocks containing changed lines + related dependencies (imports, etc.)
- Cost Optimization: Dramatically reduces token usage by sending only necessary context instead of entire files
- Quality Assurance: Maintains high review accuracy through AST-based precise code structure understanding
Selvage analyzes file size and change scope to automatically select the most efficient review method:
π― Small Changes β Fast and accurate analysis with Smart Context
π Small Files β Complete context understanding with full file analysis
π Partial Edits in Large Files β Focused analysis of related code with Smart Context
π Large Changes in Big Files β Comprehensive review with full file analysis
π‘ Automatic Optimization: The optimal analysis method for each situation is automatically applied without requiring any manual configuration.
- Python, JavaScript, TypeScript, Java, Kotlin
- Major Programming Languages: Go, Ruby, PHP, C#, C/C++, Rust, Swift, Dart, etc.
π Universal context extraction method provides excellent code review quality for major programming languages. Smart Context supported languages are continuously expanding.
π Manage all models below with just one OpenRouter API key!
- gpt-5: Latest advanced reasoning model (400K context)
- gpt-5-high: β Recommended - High accuracy reasoning model (400K context)
- gpt-5-mini: Lightweight fast response model (400K context)
- claude-sonnet-4: Hybrid reasoning model optimized for advanced coding (200K context)
- claude-sonnet-4-thinking: β Recommended - Extended thinking process support (200K context)
- gemini-2.5-pro: Large context and advanced reasoning (1M+ tokens)
- gemini-2.5-flash: Response speed and cost efficiency optimized (1M+ tokens)
- qwen3-coder (Qwen): β Recommended - 480B parameter MoE coding-specialized model (1M+ tokens)
- kimi-k2 (Moonshot AI): 1T parameter MoE large-scale reasoning model (128K tokens)
Review results are saved as structured files simultaneously with terminal output:
- π Markdown Format: Clean structure that's easy for humans to read, including summary, issue list, and improvement suggestions
- π§ JSON Format: For programmatic processing and integration with other tools
Development and Advanced Settings Options
git clone https://github.com/selvage-lab/selvage.git
cd selvage
# Install all development dependencies automatically
uv sync --dev --extra e2e
# Run
uv run selvage --helpgit clone https://github.com/selvage-lab/selvage.git
cd selvage
pip install -e .# Development dependencies only
uv sync --dev
# E2E test environment included
uv sync --dev --extra e2e
# Run tests
uv run pytest tests/# Install with development dependencies (pytest, build, etc.)
pip install -e .[dev]
# Install with development + E2E test environment (testcontainers, docker, etc.)
pip install -e .[dev,e2e]You can also set individual provider API keys instead of OpenRouter:
export OPENAI_API_KEY="your_openai_api_key_here"
export ANTHROPIC_API_KEY="your_anthropic_api_key_here"
export GEMINI_API_KEY="your_gemini_api_key_here"# Set default model to use (for advanced users)
selvage config model claude-sonnet-4-thinking
# Check configuration
selvage config list
# Enable debug mode (for troubleshooting and development)
selvage config debug-mode onexternally-managed-environment Error (macOS/Linux)
# Solution 1: Use uv (recommended)
curl -LsSf https://astral.sh/uv/install.sh | sh
uv tool install selvage
# Solution 2: Use pipx
brew install pipx # macOS
pipx install selvage
# Solution 3: Use virtual environment
python3 -m venv ~/.selvage-env
source ~/.selvage-env/bin/activate
pip install selvage# Check environment variable
echo $OPENROUTER_API_KEY
# Permanent setup (Linux/macOS)
echo 'export OPENROUTER_API_KEY="your_key_here"' >> ~/.bashrc
source ~/.bashrcModel not found Error
# Check available model list
selvage models
# Use correct model name
selvage review --model claude-sonnet-4-thinkingNetwork Connection Error
# Retry ignoring cache
selvage review --skip-cache
# Check detailed info with debug mode
selvage config debug-mode on
selvage reviewSelvage is an open-source project and we always welcome your contributions! Bug reports, feature suggestions, documentation improvements, code contributions - any form of contribution is appreciated.
How to Contribute:
- π Bug reports or feature suggestions on GitHub Issues
- π§ Code contributions through Pull Requests
- π Documentation improvements and translations
Detailed contribution guidelines can be found in CONTRIBUTING.md.
Selvage is distributed under the Apache License 2.0. This license permits commercial use, modification, and distribution, with comprehensive patent protection and trademark restrictions included.
Check out all version changes and new features of Selvage.
π View Complete Change Log β
You can find detailed changes for each version, including new features, bug fixes, and performance improvements.
- π Bug Reports and Feature Requests: GitHub Issues
- π§ Direct Contact: [email protected]
Write better code with Selvage! π
β If this project helped you, please give us a Star on GitHub!
