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

# List Sessions

> Find active and ended sessions from the CLI.

Use the CLI when you need to find the current session, list older sessions, or get the session ID for another command.

## Check active sessions

Use `entire status` to see active sessions in the current repository:

```bash theme={null}
entire status
```

This is the fastest way to see whether Entire is capturing an agent session right now.

## Show the current session

Use `entire session current` when you want the most relevant session for the current worktree:

```bash theme={null}
entire session current
```

For structured output:

```bash theme={null}
entire session current --json
```

## List all sessions

Use `entire session list` to see sessions tracked by Entire, including ended sessions:

```bash theme={null}
entire session list
```

For automation:

```bash theme={null}
entire session list --json
```

## Find a session ID

Most session commands accept a session ID:

```bash theme={null}
entire session info SESSION_ID
entire session stop SESSION_ID
entire session tokens SESSION_ID
```

Use `entire status`, `entire session current`, or `entire session list` when you need to copy that ID.

## Continue with

<CardGroup cols={2}>
  <Card title="Inspect Sessions" icon="terminal" href="/guides/sessions/inspect-sessions-in-cli">
    Inspect metadata, transcripts, and token usage.
  </Card>

  <Card title="Stop Sessions" icon="circle-stop" href="/guides/sessions/stop-sessions">
    End stale or active sessions from the CLI.
  </Card>
</CardGroup>
