Skip to main content
This tutorial shows how to use entire recap to understand recent agent activity, then use entire review to run a cross-agent review before you merge. In this tutorial, you will create a small app, make a few agent-assisted commits, recap the work, run a review with more than one agent, and use the findings to decide what to fix.

Prerequisites

Before you start, make sure you have:
  • Entire installed
  • An AI coding agent installed
  • Git configured for the project
  • An Entire account
  • Node.js installed
Log in to Entire:

Create a New Project

Create a Vite project:
Enable Entire for your agent. This example uses Codex:
Replace codex with the agent you use. Install another review agent so the review can compare more than one reviewer:
This tutorial uses Codex and Claude Code as the review agents. You can use the review agents your team has installed. Create a feature branch:

Build Reviewable History

Open the project in your AI coding agent and ask it to build a small app:
Commit and push the work:
If Entire asks whether to link the commit to session context, choose a:

Add More Agent Work

Ask your agent to add delay-risk logic:
Commit and push:
Ask your agent to add one more feature:
Commit and push:

Recap the Work

Run entire recap from the project:
Use --static when you want plain terminal output:
The recap should show recent activity for this repository, including sessions, checkpoints, agent activity, and token usage when available.
Try a longer range:

Configure Cross-Agent Review

Create a review profile with Codex and Claude Code as reviewers, and Codex as the judge:
Entire saves the profile and tells you how to start it. To see configured profiles:
To see the reviewers in the selected profile:

Run the Review

Run the review:
By default, Entire scopes the review against the first available mainline ref, such as origin/main. For stacked branches, pass the parent branch with --base:
To add one-off instructions for a single run, use --prompt:

Read the Verdict

When the review finishes, Entire shows each reviewer’s result and then consolidates the reports into a final verdict. Compare:
  • Which issues did multiple agents find?
  • Which issues were unique to one reviewer?
  • Which findings are blockers before merge?
  • Which findings are follow-up work?
If you want to inspect saved findings locally, run:
Fix the issues you agree with, then commit and push:

Recap the Review Loop

Run recap again:
The recap should now include the original build work, the review run, and any follow-up fixes. This is the core workflow:
  1. Build with an agent
  2. Commit and push useful chunks of work
  3. Use entire recap to understand what happened
  4. Use entire review to review the branch before merging
  5. Fix the findings that matter

Troubleshooting

Make sure you ran agent work in an Entire-enabled repository, linked commits to session context, pushed the branch, and gave hosted analysis a few minutes to catch up.You can also check local checkpoint history:
Create a review profile:
You can also run entire review --configure without flags to use the interactive setup.
Confirm the review agent is installed in this repository:
Then check the configured reviewers:
Pass the branch you want to review against:
For stacked work, use the parent feature branch instead of origin/main.

Continue with

review

See the command syntax for entire review.

Search Past Agent Work

Find previous checkpoints, sessions, and commits by phrase or meaning.