Generic AI reviewers don't know what your repo is. SlopBuster does — and it changes everything about what a good review looks like.

Knowledge Base

Custom Rules

Define rules specific to your repository that enforce your team's conventions, architectural decisions, and coding standards.

Built-In Rules

SlopBuster ships with rules that cover the most common issues:

framework_reinventionDetects reimplemented utilities
missing_error_handlingUnhandled async errors
ai_slop_detectionAI-generated anti-patterns
security_checksVulnerability scanning
performance_checksN+1 queries, memory leaks

Defining Custom Rules

Add custom rules via configuration or the Teaching Chat:

.slopbuster.yaml
rules:
  framework_reinvention: error
  missing_error_handling: warning
  ai_slop_detection: true

  # Custom severity overrides
  security_checks: error    # Block PRs with security issues
  performance_checks: warning

You can also teach rules inline: @slopbuster learn "Always use our custom logger, never console.log"

Org-Wide Standards

On Interstellar plans with the Policy Engine add-on, you can define organization-wide rules that apply across all repositories. Individual repos can inherit or override these standards, giving you centralized governance with per-project flexibility.