---
title: Bring Structure to Your Agent Workflows
description: Three new commands in the Entire CLI — summarize agent activity, run review skills against your branch, and explore experimental workflows.
category: Changelog
author: The Entirons
---

Building with agents helps you move fast, but practices around reviewing generated code and understanding past sessions are still ad hoc.

The Entire CLI now includes three new commands that bring more structure to that loop: `entire recap`, `entire review`, and `entire labs`.

## Look Back at Recent Agent Activity

`entire recap` is a per-agent breakdown of how you and your team are using AI across your repos. Pick a window with `--day` (default), `--week`, `--month`, or `--90` for a rolling 90 days, and switch between solo, team, and side-by-side comparison with `--view you|team|both`. Filter to a specific agent with `--agent`.

Once you have signed in with `entire login`, `entire recap` opens an interactive TUI by default. Pass `--static` for plain output suitable for scripts and CI. Each agent gets its own panel covering sessions, checkpoints, token usage, files touched, top skills and MCP servers, and the tool mix behind every run.

<div
  className="my-6 overflow-hidden rounded-lg border border-(--border-default)"
  style={{ position: "relative", paddingTop: "67.08074534161491%" }}
>
  <iframe
    src="https://customer-0x5hsk8lh27fm00g.cloudflarestream.com/65415e57a6d7b2d797be3c08fe7e9dfc/iframe?loop=true&autoplay=true&poster=https%3A%2F%2Fcustomer-0x5hsk8lh27fm00g.cloudflarestream.com%2F65415e57a6d7b2d797be3c08fe7e9dfc%2Fthumbnails%2Fthumbnail.jpg%3Ftime%3D%26height%3D600"
    title="Entire recap demo"
    loading="lazy"
    className="absolute top-0 left-0 h-full w-full border-0"
    allow="accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture;"
    allowFullScreen
  />
</div>

## Review Your Branch with Multiple Agents

`entire review` runs the review skills you have configured against the current branch. It is also listed under `entire labs` while we are still refining the surface, so the flags below may shift. On first run, an interactive picker writes `.entire/settings.json` with the skills and per-agent prompts to apply.

When the run starts, the command prints a scope banner, for example `reviewing feat/X vs main: 3 commits, 7 files changed, 2 uncommitted`, and threads the checkpoint history of every commit in scope into the agent's prompt. That gives the agent the context behind the changes before it starts reviewing.

You can also configure more than one agent, such as Claude Code and Codex, and `entire review` will dispatch them concurrently against the same scope, side by side in a live TUI dashboard. The review is recorded into the next checkpoint, so the metadata travels with the commit. `--edit` re-opens the picker; `--agent NAME` overrides the default.

<div
  className="my-6 overflow-hidden rounded-lg border border-(--border-default)"
  style={{ position: "relative", paddingTop: "63.52941176470588%" }}
>
  <iframe
    src="https://customer-0x5hsk8lh27fm00g.cloudflarestream.com/fc7c27edc0a1d56466182d6e811516c2/iframe?loop=true&autoplay=true&poster=https%3A%2F%2Fcustomer-0x5hsk8lh27fm00g.cloudflarestream.com%2Ffc7c27edc0a1d56466182d6e811516c2%2Fthumbnails%2Fthumbnail.jpg%3Ftime%3D%26height%3D600"
    title="Entire review demo"
    loading="lazy"
    className="absolute top-0 left-0 h-full w-full border-0"
    allow="accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture;"
    allowFullScreen
  />
</div>

## Try Experimental Workflows

`entire labs` is where to find experimental Entire workflows. Run it with no arguments and you get a short list of commands we are actively refining, alongside a reminder that defaults and flag names may change.

Today the list contains a single entry: `entire review`, the command above. As we ship more experimental workflows, they will appear here while we refine them in the open.

<div
  className="my-6 overflow-hidden rounded-lg border border-(--border-default)"
  style={{ position: "relative", paddingTop: "70.03891050583657%" }}
>
  <iframe
    src="https://customer-0x5hsk8lh27fm00g.cloudflarestream.com/b841816d1fc77b7d0dc6f9f7f56be214/iframe?loop=true&autoplay=true&poster=https%3A%2F%2Fcustomer-0x5hsk8lh27fm00g.cloudflarestream.com%2Fb841816d1fc77b7d0dc6f9f7f56be214%2Fthumbnails%2Fthumbnail.jpg%3Ftime%3D%26height%3D600"
    title="Entire labs demo"
    loading="lazy"
    className="absolute top-0 left-0 h-full w-full border-0"
    allow="accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture;"
    allowFullScreen
  />
</div>

## Get Started

Update the CLI to 0.6.1+, then run the following commands from any enabled repo:

```bash
entire recap
entire labs
entire review --help
```
