From a3715f18fac221586ab3d7bd32a5f8b85c528281 Mon Sep 17 00:00:00 2001 From: David Florness Date: Thu, 16 Jul 2026 22:33:42 -0400 Subject: [PATCH] Show prior conversation when resuming an agent-shell session Set agent-shell-session-restore-verbosity to 'full so resuming a session replays the previous prompts and responses into the buffer. The default 'minimal restores context via session/resume, which the agent uses to reload the conversation on its side but does NOT replay any messages into the buffer -- so the model remembers everything yet the buffer shows nothing, which is disorienting. claude-agent-acp advertises session/load with full history replay, and 'full forces that path, so the whole prior conversation is visible again. Co-Authored-By: Claude Opus 4.8 --- lisp/llm.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/llm.el b/lisp/llm.el index cbdc606..61bfaa7 100644 --- a/lisp/llm.el +++ b/lisp/llm.el @@ -1,6 +1,7 @@ (use-package agent-shell :custom (agent-shell-prefer-viewport-interaction t) + (agent-shell-session-restore-verbosity 'full) :config (setq acp-logging-enabled t)) -- 2.38.4