ai-code-reviewer-pr-plugin
v1.0.0
Published
Simple Vue CLI plugin that adds AI PR review configuration file and GitLab CI integration
Readme
@ifxglobal/ai-pr-sentinel
Simple Vue CLI plugin that adds AI PR review configuration to your project
What it does
This plugin does exactly two things:
- Adds a text file (
ai_review_prompt.txt) to the root of your project with AI review configuration - Adds AI review stage to your
.gitlab-ci.ymlfile (creates one if it doesn't exist)
Installation
vue add @ifxglobal/ai-code-reviewerWhat gets added
1. ai_review_prompt.txt
A simple text file in your project root containing AI review configuration and setup instructions.
2. GitLab CI Stage
Adds an ai-code-review stage to your .gitlab-ci.yml that runs on merge requests.
ai-code-review:
stage: review
script:
- echo "🤖 Running AI-powered code review..."
- echo "Analyzing changed files for quality and security issues"
- echo "✅ AI review completed successfully"
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
allow_failure: trueThat's it!
No complex configuration, no additional dependencies, just two simple additions to your project.
License
ISC © Pranjali Pandey
