> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Audit Findings

> Cross-audit list of all audit findings with status and severity filters, overdue tracking, and finding detail navigation.

This screen aggregates findings from all audits in one filterable list at route `/gr/audits/findings`.

## Overview

The Audit Findings page loads all findings across all audits using `useAuditFindingList`. Five stat cards show: Total, Open (clickable to filter), In Remediation, Resolved, and Overdue. Users can search by description or category and filter by status and severity using dropdown selects. Findings are listed with status badge (`AuditFindingStatusBadge`), severity badge (`AuditSeverityBadge`), due date, and overdue indication. Clicking a finding navigates to its associated audit detail or finding record.

## Who it's for

Access follows your organization's role and module configuration. Any authenticated user with access to the GR module can view findings.

## Before you start

* Audits with logged findings must exist.
* The URL supports a `?status=<value>` query parameter to pre-filter on page load.

## Steps

<Steps>
  <Step title="Open Audit Findings">Navigate to `/gr/audits/findings`.</Step>
  <Step title="Review overdue count">Check the Overdue stat card to identify findings past their due date.</Step>
  <Step title="Filter findings">Use the search box to find findings by description or category. Use the Status and Severity dropdowns to narrow results. Click the **Open** stat card to quick-filter to open findings.</Step>
  <Step title="Drill into a finding">Click a finding row to navigate to its associated audit detail page.</Step>
</Steps>

## Key concepts

* **Open** — finding status `open`; typically requires action.
* **In Remediation** — finding status `in_remediation`; corrective action is underway.
* **Resolved** — finding status `resolved`; no further action required.
* **Overdue** — finding has a `due_date` before today and status is not `resolved` or `closed`.

## Related

<Columns cols={2}>
  <Card title="Governance & Compliance" icon="scale-balanced" href="/gr/overview">
    Governance & Compliance core overview.
  </Card>

  <Card title="Governance & parity" icon="clipboard-check" href="/governance/index">
    Documentation coverage and governance.
  </Card>
</Columns>

<Note>
  This page documents shipped product behavior. It is not medical, legal, or
  billing advice. Verify against your organization's policies and applicable
  regulations before using it for clinical, compliance, or billing decisions.
  Protected health information (PHI) shown in the product is governed by your
  tenant's access controls and is never exposed in this documentation.
</Note>

<Accordion title="Documentation sources">
  * src/routes/gr.tsx
  * src/cores/gr/pages/AuditFindingList.tsx
  * src/cores/gr/hooks/useAuditFinding.ts
</Accordion>
