RightNow Agent saves conversations to disk as sessions. A session keeps prompts, responses, tool results, task state, rewind points, usage counters, and related subagent records so you can continue later.
Run /resume or press Ctrl+S. The picker lists recent sessions for the current workspace. Typing filters titles and searches conversation content; content matches appear as extended results.
# Resume by ID or title for the current directory
.\rightnow.ps1 --resume <session-id-or-title>
# Resume the most recent session for the current directory
.\rightnow.ps1 --resumeScripts should prefer a session ID. UUID-shaped values always take the ID path; title matches are case-insensitive and can be ambiguous.
| Command | Effect |
|---|---|
| /fork [--worktree|--no-worktree] [directive] | Create a peer session from the current conversation, optionally in an isolated git worktree and with a first prompt. |
| /rewind | Choose an earlier user turn and discard later conversation history. |
| /undo | Alias for /rewind. |
Rewind truncates the conversation only. File changes made by removed turns stay on disk and must be reviewed or reverted separately.
Run /compact to compress older history and reclaim context-window space. Add a note to tell RightNow what must survive the summary.
/compact
/compact keep the authentication decisions and pending test failuresRightNow also auto-compacts as the configured context window approaches its limit. Compaction checkpoints remain part of the saved session.
| Surface | Use |
|---|---|
| /export | Export the current conversation to a file or the clipboard. |
| /transcript | Open the current session transcript surface. |
| rightnow-pager.exe export | Export a session transcript as Markdown from the command line. |
# List recent sessions for the current directory
rightnow-pager.exe sessions list
# Change the default result limit
rightnow-pager.exe sessions list --limit 50
# Search titles and prompts
rightnow-pager.exe sessions search "rate limit"rightnow-pager.exe sessions requires a subcommand. List results are scoped to the current working directory and grouped by worktree label; search checks session titles and prompts.