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

# Stop Sessions

> End stale or active sessions from the CLI.

Stop a session when Entire still considers it active, but the agent run is finished or no longer relevant.

## Stop one session

Find the session ID:

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

Then stop that session:

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

## Stop all active sessions

Use `--all` when several stale sessions are active:

```bash theme={null}
entire session stop --all
```

To skip confirmation:

```bash theme={null}
entire session stop --all --force
```

<Warning>
  `entire session stop` marks sessions as ended. It does not create a checkpoint or flush pending work. Commit first when you want session context linked to code changes.
</Warning>

## Continue with

<CardGroup cols={2}>
  <Card title="List Sessions" icon="list" href="/guides/sessions/list-sessions">
    Find active sessions and session IDs.
  </Card>

  <Card title="Troubleshooting" icon="wrench" href="/guides/sessions/troubleshooting">
    Resolve stale, missing, or misplaced sessions.
  </Card>
</CardGroup>
