AI Code Reviews Using Your Own
ChatGPT or Copilot Account
Zero-trust GitHub Actions reviewer. No API keys, no backend, no middleman. Your credentials, your GitHub App, your control.
intelligencex setup wizardThree Steps to AI Reviews
From zero to automated code reviews in under a minute.
Authenticate with YOUR Account
Use your existing ChatGPT or Copilot login. No API keys needed, no middleman. Your credentials go straight to the provider.
Set Up in Seconds
Run the CLI wizard or open the local web UI. Pick repos, choose a preset, and IntelligenceX creates a PR with the workflow.
Get AI Reviews on Every PR
The reviewer runs automatically in GitHub Actions. Inline comments, summaries, or hybrid mode. Auto-resolves stale threads.
Four Powerful Components
Everything you need for AI-powered development workflows.
GitHub Actions Reviewer
AI-powered PR reviews using ChatGPT or GitHub Copilot. Inline comments, summaries, or hybrid mode. Configurable presets from minimal to picky. Codex-style structured output with auto-resolve.
Star FeatureLearn more →
CLI Tools
One-command onboarding wizard. Local web UI. Multi-repo support, auth management, and usage tracking.
Learn more →.NET Library
Codex app-server client, Easy.ChatAsync one-liner, JSON-RPC support for building your own AI tools.
Learn more →PowerShell Module
Binary cmdlets for scripting and automation. Connect, send messages, run diagnostics.
Learn more →Multiple Ways to Use IntelligenceX
From GitHub Actions to C# and PowerShell.
# .github/workflows/review-intelligencex.yml
jobs:
review:
uses: evotecit/github-actions/.github/workflows/review-intelligencex.yml@master
with:
reviewer_source: release
openai_transport: native
output_style: claude
style: colorful
secrets: inherit{
"review": {
"provider": "openai",
"model": "gpt-5.2-codex",
"mode": "hybrid",
"length": "long",
"outputStyle": "claude",
"reviewUsageSummary": false
}
}using IntelligenceX.OpenAI;
// One-liner - send a message and get a response
var result = await Easy.ChatAsync("Review this code for security issues");
Console.WriteLine(result.Text);
// Full app-server client
var client = await AppServerClient.StartAsync(new AppServerOptions {
ExecutablePath = "codex",
Arguments = "app-server"
});
var thread = await client.StartThreadAsync("gpt-5.2-codex");
await client.StartTurnAsync(thread.Id, "Hello from IntelligenceX");# Import and connect
Import-Module IntelligenceX
$session = Connect-IntelligenceX -Diagnostics
Initialize-IntelligenceX
Start-IntelligenceXLogin
Wait-IntelligenceXLogin
# Start a thread and send a message
$thread = Start-IntelligenceXThread -Model 'gpt-5.2-codex'
Send-IntelligenceXMessage -ThreadId $thread.Id -Content 'Analyze this code'
Disconnect-IntelligenceXFrequently Asked Questions
Frequently Asked Questions
Is my code safe? Do you see it?
IntelligenceX has no backend service. Your code diffs go directly from GitHub Actions to your chosen AI provider (ChatGPT or Copilot). We never see, store, or process your code.
Why do I use my own ChatGPT or Copilot login?
This is the zero-trust design. You authenticate with your own account. No shared API keys, no pooled quotas, no third-party billing. You control the credentials, stored in GitHub Actions secrets that only your workflows can access.
What is 'Bring Your Own GitHub App'?
Instead of trusting our GitHub App, you can create your own App under your organization. This gives you branded bot identity, fine-grained permissions, and full audit control. The CLI wizard supports this flow natively.
Which AI providers are supported?
ChatGPT (native transport via OAuth) and GitHub Copilot (via Copilot CLI). You configure the provider and model in .intelligencex/reviewer.json.
How do I get started?
Run 'intelligencex setup wizard' for guided setup, or 'intelligencex setup web' for a local web UI. Both run entirely on your machine and create a PR with the review workflow.
What platforms are supported?
Windows, macOS, and Linux. The CLI and library target .NET 8+ and .NET 10+, the PowerShell module supports netstandard2.0, net472, and net8.0. The reviewer runs on any GitHub Actions runner.
Can I customize the review behavior?
Yes. Choose from presets (balanced, picky, security, performance, tests, minimal) or write custom JSON config. Control review mode (inline, summary, hybrid), length, output style, and auto-resolve behavior.
Is this similar to Claude Code or Codex?
The reviewer produces structured, Codex-style output integrated into your GitHub PR workflow. It supports inline comments with code suggestions, summary reviews, and hybrid mode.
Ready to Get Started?
Set up AI-powered code reviews in under a minute. No backend, no API keys, just your own credentials.