# Share a proof

Source: https://redcrown.ai/docs/guides/share-a-proof/

Mint a no-login proof page from a completed run.

## 1. Mint

A proof link is a public, no-login page at `app.redcrown.ai/proof/<token>` that shows the ranked report, winner, receipts, and provenance for a completed run. Anyone with the link can read it; no account is required.

**UI**

Open the ranked report for a completed run and click **Share proof**. RedCrown mints the link and copies it to your clipboard.

**CLI**

```
redcrown push out.json --proof-link
```

The proof URL is printed to the terminal after a successful push.

**MCP**

The `prove_task` response includes a `proof_url` field. Pass it to stakeholders directly; no additional call is needed.

## 2. Keep confidential outputs local

By default, `redcrown push` uploads per-item receipts alongside the ranked report. If your individual outputs are confidential, strip them before uploading so only aggregate scores are shared.

**UI**

Not available via the UI. Use the CLI flag to strip receipts before upload.

**CLI**

```
redcrown push out.json --no-receipts --proof-link
```

The `--no-receipts` flag strips per-item receipts client-side before upload. Individual model outputs never leave your machine.

**MCP**

Not available via MCP. Use the CLI flag above to strip receipts before upload.

Last verified 2026-07-02.
