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

# Wizard Analytics

> View completion, drop-off, and performance metrics for a specific wizard template.

The Wizard Analytics page at `/fw/wizards/:id/analytics` displays analytics for a specific wizard template, powered by the `WizardAnalyticsDashboard` component.

## Overview

The Wizard Analytics page fetches the wizard template by `:id` using `useWizardTemplateDetail`, then renders `WizardAnalyticsDashboard` with the template ID and name. A back button returns to the Wizard Builder at `/fw/wizards/:id/edit`. While loading, skeleton placeholders are shown.

## Who it's for

Requires `pf.wizards.view` permission (`PERMISSIONS.PF.WIZARDS_VIEW`), enforced by `RequirePermission` wrapping the page content.

## Before you start

* You must have the `pf.wizards.view` permission.
* The wizard template must exist. If it cannot be found the analytics dashboard may be empty.

## Steps

1. Navigate to `/fw/wizards/:id/analytics` or select the Analytics action for a wizard from the Wizard Templates page.
2. Review the analytics dashboard for completion rates and step-level metrics.
3. Select **Back to Builder** to return to the Wizard Editor.

## Key concepts

* **Wizard template** — The template being analyzed, identified by `:id`.
* **WizardAnalyticsDashboard** — The component rendering all metric visualizations; SME should confirm specific metrics displayed.

## Related

<Columns cols={2}>
  <Card title="Forms & Workflow" icon="diagram-project" href="/fw/overview">
    Forms & Workflow core overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" 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/fw\.tsx
  * src/platform/wizards/pages/WizardAnalyticsPage.tsx
  * src/platform/wizards/components/WizardAnalyticsDashboard.tsx
  * src/platform/wizards/hooks/useWizardTemplateDetail.ts
  * src/platform/permissions/constants.ts
</Accordion>
