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

# recap

> Summarize recent checkpoint activity.

Summarize recent checkpoint activity.

```bash theme={null}
entire recap [flags]
```

`entire recap` shows a time-based summary of agent and checkpoint activity. By default, it opens the interactive recap view for today.

Use `--static` when you want plain terminal output, such as in a script, transcript, or docs example:

```bash theme={null}
entire recap --static
```

## Time Windows

Choose the range you want to summarize:

```bash theme={null}
# Today only
entire recap --day

# Last 7 days
entire recap --week

# This calendar month
entire recap --month

# Rolling 90 days
entire recap --90
```

## Views

Limit recap to one agent:

```bash theme={null}
entire recap --agent codex
```

Choose which columns to show:

```bash theme={null}
entire recap --view you
entire recap --view team
entire recap --view both
```

## Flags

| Flag                   | Description                                                                 |
| ---------------------- | --------------------------------------------------------------------------- |
| `--90`                 | Show the rolling 90-day window.                                             |
| `--agent ID`           | Show activity for one agent, or use `all`. Defaults to `all`.               |
| `--color MODE`         | Set color output to `auto`, `always`, or `never`. Defaults to `auto`.       |
| `--day`                | Show today only. This is the default time window.                           |
| `--insecure-http-auth` | Allow plain HTTP auth. Local development only.                              |
| `--month`              | Show this calendar month.                                                   |
| `--static`             | Print static output instead of opening the interactive recap.               |
| `--view VIEW`          | Choose which columns to show: `you`, `team`, or `both`. Defaults to `both`. |
| `--week`               | Show the last 7 days.                                                       |
| `-h, --help`           | Show help for `entire recap`.                                               |

## Examples

```bash theme={null}
# Open the interactive recap for today
entire recap

# Print a static recap for today
entire recap --static

# Print the last 7 days without color
entire recap --week --static --color never

# Show only your activity
entire recap --view you

# Show one agent's activity
entire recap --agent codex --static
```
