agent/pkg/lib/task/code/review/severity.md
Snider 21f234aa7c refactor: flatten go/ subdir, migrate to dappco.re/go/agent, restore process service
- Module path: dappco.re/go/agent
- Core import: dappco.re/go/core v0.4.7
- Process service re-enabled with new Core API
- Plugin bumped to v0.11.0
- Directory flattened from go/ to root

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-21 11:10:44 +00:00

560 B

Severity Guide

CRITICAL (90+ confidence)

  • Security vulnerability (injection, traversal, leaked secrets)
  • Nil pointer dereference (panic in production)
  • Data loss risk

HIGH (75+ confidence)

  • Convention violation that causes bugs (wrong error handling)
  • Missing error check on external call
  • Race condition

MEDIUM (50+ confidence)

  • Convention violation (style, naming)
  • Missing test for new code
  • Unnecessary complexity

LOW (25-49 confidence)

  • Nitpick (could be intentional)
  • Minor style inconsistency
  • Suggestion for improvement