How-to
Noise reduction & false positives
Tell the AI to stay quiet on style and focus on critical bugs — the honest knobs CodeRabbit buries.
A review that cries wolf gets muted. codingassist.bot gives you explicit knobs — all in .praxiom.yml — to raise the signal.
Raise the confidence floor
prIntelligence:
minConfidence: 0.8 # only surface findings the model is ≥80% sure aboutLow-confidence hunches are dropped rather than posted as noise.
Turn off what you don't want reviewed
prIntelligence:
includePerformance: false # skip perf micro-suggestions
includeCodeQuality: false # bugs & security only
includeSecurity: trueKeep only the dimensions your team acts on.
Gate on severity, not everything
failOnSeverity: high # only high+ blocks the merge; lower = advisoryNits and warnings still show, but they don't stop the PR.
Silence a specific pattern
customRules:
- id: allow-console-in-scripts
pattern: "console\\.log\\("
severity: low
paths:
- "scripts/**" # scope a rule so it never fires elsewhereSkip a one-off PR
[praxiom skip:pr-intelligence]Related
Was this page helpful?