# `summary_confirmation`

## Use when / do not use when

Use for a summary, review, or confirmation before the next action. Do not use for choice collection, a progress reveal, or an offer.

## Exact metadata contract

<!-- funnelsgrove:generated:start contract-v3/step/summary_confirmation -->
### Generated contract facts — do not edit

- Step contract version: `3`
- Contract hash: `d761e91d5ac6ff9e72c6d49c5bcd014270912473a66f99c49d726c65998085cf`
- Type: `summary_confirmation`
- Family: `content`
- Description: A summary, review, or confirmation before the next action.
- Action owner: `either`
- Analytics role: _none_
- Terminal: `false`
- Required kind: _none_
- Allowed kinds: _None_
- Allowed semantic events: _None_
- Forbidden capabilities: `choice-write`, `email-capture`, `checkout`, `subscription-management`, `subscription-handoff`, `hardcoded-navigation`, `provider-direct-analytics`, `browser-registration-completed`

#### Choice contract

_Not a choice type._

#### Automatic lifecycle events

`first_step_clicked`, `first_step_viewed`, `funnel_started`, `step_completed`, `step_exited`, `step_started`

#### Approved capability owners

_No special capability is allowed._

#### Reserved identities

_No reserved identity for this type._

#### Golden fixture source

```ts
import type { FunnelManifestStep, FunnelStepMeta } from '@funnelsgrove/runtime';

const manifestStep = {
  id: 'review-plan',
  name: 'review-plan',
  path: '/review-plan',
  filePath: 'src/steps/step-review-plan.tsx',
  componentKey: 'stepReviewPlan',
  type: 'summary_confirmation',
  title: 'Review your plan',
} as const satisfies FunnelManifestStep;

const componentMeta = {
  id: 'review-plan',
  name: 'review-plan',
  type: 'summary_confirmation',
  figmaNodeId: 'golden:summary-confirmation',
  title: 'Review your plan',
  description: 'Review existing answers before continuing.',
} as const satisfies FunnelStepMeta;

export const goldenFixture = {
  stepType: 'summary_confirmation',
  manifestStep,
  componentMeta,
  actionOwner: 'either',
} as const;
```
<!-- funnelsgrove:generated:end contract-v3/step/summary_confirmation -->

## Interaction and persisted answer shape

Read existing answers through runtime state. Only edit an answer through its owning input/choice flow.

## Automatic lifecycle events

The controller owns completion and exit. Preview suppresses provider delivery.

## Required semantic conversions

None.

## Approved shared helpers

Use runtime answer readers, shared action UI, and manifest routing.

## MUST rules

- Render stable answer meaning, not internal object dumps.
- Keep confirmation and edit routes manifest-owned.

## NEVER rules

- Never invent a completion conversion for viewing a summary.
- Never mutate answer storage directly.

## Golden template or fixture

See the [embedded canonical fixture](#golden-fixture-source) generated from `summary_confirmation.fixture.ts`.

## Validation command

Run `fgrove validate`.

## Manual QA and completion criteria

Confirm empty/populated answers, edit-return behavior, accessibility, and exactly-once completion through the controller.
