# ScoredIssue

**Kind:** Interface

**Source:** [`atloria-monorepo/libs/agent-core/src/autonomous/confidence-filter.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/agent-core/src/autonomous/confidence-filter.ts#L18)

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:
1. Line format: `[confidence: 85] (critical/bug) file.ts:42 — Description. Suggestion: fix`
2. JSON array format: `[{"confidence": 85, "file": "...", ...}]`

## Properties

| Property | Type |
|---|---|
| `description` | `string` |
| `file` | `string` |
| `line` | `number` |
| `confidence` | `number` |
| `severity` | `'critical' | 'important' | 'minor'` |
| `category` | `string` |
| `source` | `string` |
| `suggestion` | `string` |
