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

# Governance Dashboard

> GR module overview dashboard showing compliance score, pending actions, risk and audit stats, and navigation to all GR areas.

This screen is the main landing page for the Governance & Compliance module at route `/gr/dashboard`.

## Overview

The GR Overview page (rendered at `/gr/dashboard`) shows four consolidated stat cards: Compliance Score, Pending Actions (sum of pending acknowledgments + open remediations + open corrective actions), Risk Level (from `useRiskStats`), and Active Audits (from `useAuditStats`). It also shows AI-enabled status and QI stats when available. Area navigation cards link to all major GR sections: Policies, Training, Compliance, Audits, Risks, Quality Improvement, and Accreditations. Quick Actions are rendered via `QuickActionsSection`. The organization name is shown in the header from `useOrganization`.

## Who it's for

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

## Before you start

* No preconditions required. The dashboard loads data from multiple stats hooks with safe defaults when no records exist.

## Steps

<Steps>
  <Step title="Open the GR Dashboard">Navigate to `/gr/dashboard` or click the Governance & Compliance item in the navigation.</Step>
  <Step title="Check the Compliance Score">Review the primary compliance score stat card to assess overall compliance health.</Step>
  <Step title="Review pending actions">Check the Pending Actions count to identify outstanding acknowledgments, remediations, and corrective actions.</Step>
  <Step title="Navigate to a section">Click any area navigation card to jump to Policies, Training, Compliance, Audits, Risks, QI, or Accreditations.</Step>
  <Step title="Use Quick Actions">Use the Quick Actions section to jump to common tasks.</Step>
</Steps>

## Key concepts

* **Pending Actions** — sum of `policyStats.pendingAcknowledgments` + `complianceStats.openRemediations` + `auditStats.openCorrectiveActions`.
* **AI Compliance** — shown in the UI when the AI Compliance Advisor is enabled in GR settings.

## 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/GROverview\.tsx
  * src/cores/gr/hooks/useComplianceStats.ts
  * src/cores/gr/hooks/usePolicyStats.ts
  * src/cores/gr/hooks/useAuditStats.ts
  * src/cores/gr/hooks/useRiskStats.ts
  * src/cores/gr/hooks/useQIStats.ts
</Accordion>
