feat(tui): add experimental next-prompt suggestion

Generate an ephemeral user-style next step suggestion after assistant responses and let users accept it with Right Arrow in the prompt. Keep suggestions out of message history and support NO_SUGGESTION refusal.
This commit is contained in:
Ryan Vogel 2026-03-31 12:25:17 -04:00 committed by Ryan Vogel
commit ba2e3c16b2
6 changed files with 127 additions and 1 deletions

View file

@ -126,6 +126,7 @@ export type EventPermissionReplied = {
export type SessionStatus =
| {
type: "idle"
suggestion?: string
}
| {
type: "retry"