> ## 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.

# Remediation Tracker

> Track and manage compliance remediation items, filter by status or overdue flag, and resolve or close open items.

The Remediation Tracker page lists compliance remediation items and provides filtering, status updates, and resolution workflows. It is located at route `/gr/compliance/remediation`.

## Overview

The page is rendered by `RemediationTracker` and fetches items via `useComplianceRemediationList`. Filters include status (`open`, `in_progress`, `resolved`, `closed`), a search term (deferred), and an overdue toggle. A detail dialog opens on row selection. Resolve and close actions are performed via `useComplianceRemediationMutation`. The route supports a `?status=overdue` query param to pre-filter to overdue items (e.g., from a dashboard link). No permission gate is declared on this route in `gr.tsx`.

## Who it's for

Access follows your organization's role and module configuration. ## Before you start

* Remediation items are typically created from compliance requirement findings or audit findings.
* Navigate from the Compliance section or from a deep-link with `?status=overdue`.

## Steps

1. Go to **Governance & Compliance → Compliance → Remediation** at `/gr/compliance/remediation`.
2. Use the status filter to narrow to open, in-progress, resolved, or closed items.
3. Toggle **Show overdue only** to surface past-due items.
4. Use the search bar to find a specific remediation by keyword.
5. Select a remediation card to open the detail dialog.
6. Use **Resolve** or **Close** actions within the dialog to update status.

## Key concepts

| Concept           | Description                                              |
| ----------------- | -------------------------------------------------------- |
| Status lifecycle  | `open` → `in_progress` → `resolved` → `closed`           |
| Overdue flag      | Items whose due date has passed and are not yet resolved |
| `?status=overdue` | URL param that pre-filters the view to overdue items     |

## 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" />
</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/RemediationTracker.tsx
  * src/cores/gr/hooks/useComplianceRemediation.ts
  * src/cores/gr/components/RemediationCard.tsx
</Accordion>
