91% of developers use AI tools. Your repo is accumulating technical debt RIGHT NOW.
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: warningYou 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.