91% of developers use AI tools. Your repo is accumulating technical debt RIGHT NOW.

Getting Started

Quickstart Guide

Get SlopBuster running on your repositories in under 5 minutes.

1

Install the GitHub App

Click the button below to install SlopBuster on your GitHub organization or personal account.

Permissions requested: Read access to code and metadata, write access to pull requests and issues.

2

Select repositories

Choose which repositories you want SlopBuster to review. You can select all repositories or specific ones.

Repository selection
All repositories
Only select repositories
3

Open a pull request

That's it! SlopBuster will automatically review your next pull request. No configuration required.

SlopBuster
SlopBusterbot

I've reviewed your PR and found 2 areas for improvement:

1.Framework reinvention: Consider using your existing retry utility
2.Missing error handling: Add try-catch for async operations

Optional: Add configuration

Customize SlopBuster behavior by adding a .slopbuster.yaml file to your repository root.

.slopbuster.yaml
# SlopBuster configuration
language: auto
reviews:
  progressive_feedback: true
  max_findings_per_review: 3
  
ignore:
  - "*.test.ts"
  - "node_modules/**"
  - "dist/**"
  
rules:
  framework_reinvention: error
  missing_error_handling: warning
  ai_slop_detection: true