## Documentation Index

Fetch the complete documentation index at: [/llms.txt](https://docs.entire.io/llms.txt)

Use this file to discover all available pages before exploring further.

Import pre-existing local agent transcripts for the current repository as read-only checkpoints.

```
entire import AGENT [flags]
```

`entire import` is experimental and hidden from the top-level help in Entire CLI `0.7.8`. Run `entire import --help` to see the agents supported by your installed CLI version.

## Supported agents

In Entire CLI `0.7.8`, import supports:

| Agent | Command |
| --- | --- |
| Claude Code | `entire import claude-code` |
| Codex | `entire import codex` |
| Copilot CLI | `entire import copilot-cli` |
| Cursor | `entire import cursor` |
| Factory | `entire import factoryai-droid` |
| Gemini CLI | `entire import gemini` |
| Pi | `entire import pi` |

## Flags

| Flag | Description |
| --- | --- |
| `--dry-run` | Report what would be imported without writing checkpoints |
| `--path DIRECTORY` | Override the transcript directory to import from |
| `--session ID` | Import only this session ID. Repeatable. |

## Examples

Check what would be imported:

```
entire import claude-code --dry-run
```

Import Claude Code transcript history:

```
entire import claude-code
```

Import a specific Codex session:

```
entire import codex --session SESSION_ID
```

Import from a custom transcript directory:

```
entire import claude-code --path TRANSCRIPT_DIRECTORY
```

## Behavior

`entire import` scans the agent’s local transcript store for the current repository and imports history from the past month. Imported checkpoints are:

- read-only
- searchable
- explainable
- idempotent, so already-imported turns are skipped
- not rewindable
- not linked to a Git commit

## Continue with

[**Import Past Sessions** \
\
Follow the guide for importing past local agent sessions.](https://docs.entire.io/guides/sessions/import-past-agent-history)

[**Search** \
\
Search imported checkpoints and other Entire history.](https://docs.entire.io/cli-reference/search)
