zxcloli666/AI Code Review // VERY POWERFULL
🤖 AI-powered automated code review with GPT-5, Claude, Gemini. Deep static analysis, AST parsing, linter integration.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| GITHUB_TOKEN | GitHub token for API access | yes | — |
| OPENAI_API_KEY | OpenAI API key for AI-powered code review | no | — |
| OPENAI_API_MODEL | OpenAI model to use (gpt-5, gpt-5-high, o3, o3-mini, etc.) | no | gpt-5 |
| OPENAI_API_BASE_URL | OpenAI API base URL (for custom endpoints or proxies) | no | https://api.openai.com/v1 |
| REVIEW_LANGUAGE | Language for review comments (en, ru, es, fr, de, etc.) | no | en |
| SILENT_MODE | Post reviews as silent comments to reduce notifications | no | false |
| MAX_CHUNK_SIZE | Maximum tokens per chunk for large PRs | no | 6000 |
| ENABLE_LINTERS | Run linters on changed files (ESLint, Pylint, etc.) | no | true |
| ENABLE_AST | Enable AST (Abstract Syntax Tree) analysis for deep code understanding | no | true |
| ENABLE_DEPENDENCY_ANALYSIS | Analyze function dependencies and call graphs | no | true |
| SEVERITY_THRESHOLD | Minimum severity level to report (info, warning, error) | no | warning |
Outputs
| name | description |
|---|---|
| review_status | Review status: approved, needs-changes, or rejected |
| issues_found | Total number of issues found |
| critical_issues | Number of critical issues found |
| review_url | URL to the review comment |