Introduction
HalbonCode is a VS Code extension that provides AI-powered code reviews using your existing AI subscriptions. Instead of paying per API call, HalbonCode leverages CLI tools that authenticate with services you already pay for.
💡 Quick Tip
Already have ChatGPT Plus, Copilot, or Claude Max? You're ready to go - no additional costs!
Key Features
- ✓Full codebase analysis - Reviews your entire project with context from related files
- ✓Multi-provider support - Use Copilot, ChatGPT, Claude, Gemini, or Ollama
- ✓Auto-fix with diff preview - One-click fixes with full review before applying
- ✓Stack-aware reviews - Understands Angular, React, .NET, NestJS patterns
How It Works
HalbonCode uses CLI tools provided by AI vendors to access your subscription:
# GitHub Copilot (recommended)
npm install -g @github/copilot
copilot
# ChatGPT Plus (Codex CLI)
npm install -g @openai/codex
codex login
# Claude Max
npm install -g @anthropic-ai/claude-code
claude login
⚠️ Note
Your code is sent to the AI provider you configure. For maximum privacy, use Ollama with a local model - your code never leaves your machine.
Severity Levels
Issues are categorized by severity:
P0 CriticalSecurity vulnerabilities, data loss risks, crashes
P1 ImportantBugs, logic errors, significant quality issues
P2 MinorCode style, minor improvements, suggestions