The whole hunk
from line 10, old and new numbered
/
lines
from line 10
1010
1111Sessions are saved continuously to [local transcript files](#export-and-locate-session-data) as you work, so you can return to one after exiting or running `/clear`. Use these entry points:
1212
13| Command | What it does |
14| :-------------------------- | :------------------------------------------------------------------------ |
15| `claude --continue` | Resumes the most recent interactive session in the current directory |
16| `claude --resume` | Opens the [session picker](#use-the-session-picker) |
17| `claude --resume <name>` | Resumes the named session directly |
18| `claude --from-pr <number>` | Opens the session picker filtered to sessions linked to that pull request |
19| `/resume` | Switches to a different conversation from inside an active session |
13| Command | What it does |
14| :---------------------------------- | :--------------------------------------------------------------------------------------------------------------------- |
15| `claude --continue` | Resumes the most recent interactive session in the current directory |
16| `claude --resume` | Opens the [session picker](#use-the-session-picker) |
17| `claude --resume <name>` | Resumes the named session directly |
18| `claude --resume <transcript-path>` | Resumes the conversation stored in the `.jsonl` [transcript file](#where-transcripts-are-stored) at that absolute path |
19| `claude --from-pr <number>` | Opens the session picker filtered to sessions linked to that pull request |
20| `/resume` | Switches to a different conversation from inside an active session |
2021
2122Claude Code leaves sessions created with [`claude -p`](/docs/en/headless) or the [Agent SDK](/docs/en/agent-sdk/overview) out of the session picker and out of `claude --continue`. You can still resume one by passing its session ID to `claude --resume <session-id>`. With `claude --continue`, Claude Code also skips [background sessions](/docs/en/agent-view) and [sessions whose first prompt was `/loop`](#where-the-session-picker-looks). When you run [`claude -p --continue`](/docs/en/headless#continue-conversations), Claude Code includes `-p`, SDK, and `/loop` sessions and still skips background sessions.
2223