> ## 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.

# Overview

> Git shows what changed. Entire shows why.

Entire is a new, CLI-first system of record that captures the context behind agent-assisted code changes.

## Why Entire exists

When an AI agent writes code, the commit diff often leaves out the most important context:

* Prompt that started the work
* Files the agent inspected
* Tools it ran
* Alternatives it considered
* Reasoning behind the final approach

Entire captures that context as [Checkpoints](/cli/checkpoints): versioned records of agent-assisted changes, linked to Git so you can trace any commit back to the session that produced it.

With Entire, you can:

* Review the prompt, transcript, and tool calls behind a commit, not just the diff.
* [Rewind](/cli/checkpoints#benefits) to earlier Checkpoints in an agent session.
* Search every prompt and session across a repository.
* Continue from prior agent sessions instead of starting cold.

## Parts of Entire

Entire has two surfaces:

<AccordionGroup>
  <Accordion title="Entire CLI">
    [Entire CLI](/cli/installation) runs locally in your Git repository, installs hooks for Git and supported agents, captures sessions in the background, and links Checkpoints to your commits.
  </Accordion>

  <Accordion title="Entire.io">
    [Entire.io](/web/overview) provides the web interface for exploring the history captured by the CLI.
  </Accordion>
</AccordionGroup>

## Get started

Entire works with the tools developers already use for agentic coding.

<CardGroup cols={2}>
  <Card title="Claude Code" icon="robot" href="/agents/claude-code">
    Capture Claude Code sessions and Checkpoints.
  </Card>

  <Card title="Codex" icon="terminal" href="/agents/codex">
    Capture Codex CLI sessions and Checkpoints.
  </Card>

  <Card title="Cursor" icon="arrow-pointer" href="/agents/cursor">
    Capture Cursor agent sessions and Checkpoints.
  </Card>

  <Card title="Copilot CLI" icon="github" href="/agents/copilot-cli">
    Capture Copilot CLI sessions and Checkpoints.
  </Card>

  <Card title="Gemini CLI" icon="gem" href="/agents/gemini-cli">
    Capture Gemini CLI sessions and Checkpoints.
  </Card>

  <Card title="OpenCode" icon="code" href="/agents/opencode">
    Capture OpenCode sessions and Checkpoints.
  </Card>

  <Card title="Pi" icon="terminal" href="/agents/pi">
    Capture Pi sessions and Checkpoints.
  </Card>

  <Card title="Factory Droid" icon="gear" href="/agents/factory-droid">
    Capture Factory Droid sessions and Checkpoints.
  </Card>

  <Card title="External agents" icon="puzzle-piece" href="/agents/external-agent-plugins">
    Build plugins for agents outside the built-in integrations.
  </Card>
</CardGroup>
