code-review-gpt
v0.1.10
Published
Your AI code reviewer. Improve code quality and catch bugs before you break production
Downloads
2,800
Maintainers
Readme
Code Review GPT 🤖
Code Review GPT is a NodeJS package that uses LLMs to provide feedback on code. It is designed to be used in a CI environment to provide feedback on pull requests.
Prerequisites
- Node 18+
- Git
- Github or Gitlab CLI (optional for configure tool)
Easy Setup in CI 🚀
In the root of your git repository run:
Github Actions
npm install code-review-gpt
npx code-review-gpt configure --setupTarget=github
Gitlab CI
If you are running this tool in Gitlab, you will need to do some additional setup. You will need to create a access token in Gitlab and store it in your CI/CD variables to allow the bot access to you Gitlab account. Follow the steps below.
Get Your Access Token
- Log in to your GitLab account.
- Go to your Repo settings by clicking on the repository, and selecting Settings -> Access Tokens.
- In this section, you can generate a new access token.
- Name your token something relevant and understandable ie.
CODE_REVIEW-GPT-TOKEN
. Set the scope to beapi
only. - Click the "Create personal access token" button. GitLab will generate the token and display it to you once. Make sure to copy this value, we are going to use it in the next step.
Set Access Token as a CI/CD Variable
Navigate to the project where you want to add the code review bot.
In the left sidebar, click the Settings drop down, then click CI/CD
Scroll down to the Variables section and click the Expand button.This is where you can manage your CI/CD variables.
Create a new variable by clicking the Add Variable button in the CI/CD Variable table.
Paste your previously copied access token into the Value box. Name the variable
GITLAB_TOKEN
. Under the Flags section, make sure to tick theMask variable
option.- [Un-tick the
Protect variable
if your branches are not protected, otherwise this variable won't be availiable for the bot to use.]
- [Un-tick the
Save you changes. Now you can go ahead and run the following commands in you project directory.
npm install code-review-gpt
npx code-review-gpt configure --setupTarget=gitlab
See templates for example yaml files. Copy and paste them to perform a manual setup.
Azure DevOps
If you are running this tool in Azure DevOps, you will need to do some additional setup.
The code-reivew-gpt needs additional Git history available for affected to function correctly. Make sure Shallow fetching is disabled in your pipeline settings UI. For more info, check out this article from Microsoft doc.
You will need to create a personal access token in Azure DevOps and store it in your CI/CD variables to allow the bot access to your Azure DevOps account. Follow the steps below.
Set Personal Access Token as a CI/CD Variable
- Sign in to Azure DevOps: Go to the Azure DevOps portal and sign in to your account.
- Navigate to User Settings: Click on your profile picture in the top right corner and select "Security" from the dropdown menu.
- Generate Personal Access Token (PAT): In the Security page, select "Personal access tokens" and click on the "+ New Token" button.
- Configure Token Details: Provide a name for your token, choose the organization, and set the expiration date.
- Define Token Permissions: Specify the necessary permissions for the token based on the tasks you want to perform. For pipeline access, you might need to select "Read & manage" under "Build" and "Release."
- Create Token: Click on the "Create" button to generate the token.
- Copy Token: Copy the generated token immediately, as it will not be visible again.
- Add Token as YAML Pipeline Variable: Go to your Azure DevOps project, open the pipeline for which you want to use the PAT, and select "Edit."
- Navigate to Variables: In the pipeline editor, go to the "Variables" tab.
- Add New Variable: Add a new variable with a relevant name (e.g.,
API_TOKEN
) and paste the copied PAT as the value. - Save Changes: Save the pipeline changes, ensuring that the PAT is securely stored as a variable.
- Use Variable in Pipeline: Modify your YAML pipeline code to reference the variable where needed, replacing hard-coded values with the variable (e.g.,
$(API_TOKEN)
).
npm install code-review-gpt
npx code-review-gpt configure --setupTarget=azdev
See templates for example yaml files. Copy and paste them to perform a manual setup.
Local Usage 🌈
Code Review GPT works locally to review files staged for commit:
Scoped Install
Run npm i code-review-gpt && npx code-review-gpt review
in the root directory of a git repository.
Global Install
Run npm i -g code-review-gpt
to install the tool globally.
You can now run code-review-gpt review
in the root directory of any git-enabled repository on your machine.
Commands
code-review-gpt review
- Runs the code review on the staged files.code-review-gpt configure
- Runs a setup tool to configure the application.code-review-gpt test
- Runs the e2e testing suite used internally in the CI in the tool repo.
Options
--ci
- Used with thereview
command. Options are --ci=("github" | "gitlab"). Defaults to "github" if no option is specified. Runs the application in CI mode. This will use the BASE_SHA and GITHUB_SHA environment variables to determine which files to review. It will also use the GITHUB_TOKEN environment variable to create a comment on the pull request with the review results.--reviewType
- Used with the 'review' command. The options are --reviewType=("changed" | "full" | "costOptimized). Defaults to "changed" if no option is specified. Specifies whether the review is for the full file or just the changed lines. costOptimized limits the context surrounding the changed lines to 5 lines.--remote
- Used with the 'review' command. Usage--remote=mattzcarey/code-review-gpt#96
. Review a remote GitHub Pull Request.--commentPerFile
- Used when the--ci
flag is set. Defaults to false. It enables the bot to comment the feedback on a file-by-file basis.--setupTarget
- Used with theconfigure
command. Options are --setupTarget=("github" | "gitlab"). Defaults to "github" if no option is specified. Specifies for which platform ('github' or 'gitlab') the project should be configured for.--model
- The model to use for the review. Defaults togpt-4
. You can use any openai model you have access to.--debug
- Runs the application in debug mode. This will enable debug logging.--org
- The organization id to be used for OpenAI. This should only be used if you are member of multiple organisations and want to use your non default org.