---
title: "Review local history"
description: "Open the local viewer first, then use explicit commands to review, export, replay, and investigate recorded decisions."
---

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

# Review local history

Open the local decision viewer:

```sh title="Terminal"
aif show
```

The dashboard opens on the loopback address `127.0.0.1:47391`. It is the best first place to inspect a recorded decision.

## Review paused work

```sh title="Terminal"
aif review
```

Use review for actions AIF paused with the **Ask** label.

## Replay a recorded action

```sh title="Terminal"
aif replay
```

Replay checks whether the installed release handles a previously blocked action differently. It is an investigation tool, not a way to bypass a decision.

## Export evidence carefully

```sh title="Terminal"
aif export
```

Export uses consent, redaction, and attestation before writing a bundle. Do not assume an export contains raw commands, prompts, file paths, or secret-shaped values.

## Investigate an unexpected decision

Start with the [decision labels](/reference/decisions), then run `aif doctor` if local service or model state may be involved. For research context, read [AIF research and evidence](https://harden.run/blog/aif-research-and-evidence).

Source: https://docs.harden.run/operations/local-history/index.mdx
