Kind: Interface
Source: atloria-monorepo/libs/agent-core/src/autonomous/confidence-filter.ts
Confidence-Based Code Review Filter
Parses, filters, deduplicates, and formats scored issues from multiple review agents. Each issue has a confidence score (0-100) that determines whether it should surface to the user.
Supports two output formats from agents:
- Line format:
[confidence: 85] (critical/bug) file.ts:42 — Description. Suggestion: fix - JSON array format:
[{"confidence": 85, "file": "...", ...}]
Properties
| Property | Type |
|---|---|
description | string |
file | string |
line | number |
confidence | number |
severity | `'critical' |
category | string |
source | string |
suggestion | string |
Was this page helpful?