Add chat history method to continue previous agents chat created in different client #60
Replies: 2 comments
-
It isn't implemented in clients yet, but we already have Adding something like |
Beta Was this translation helpful? Give feedback.
-
Something to keep in mind when implementing this: currently Claude code chat history is different for every working directory, there should be a way to pass the current working directory to show all chats created inside that folder and its children. Passing / would should show all chats ever created, which is useful for clients that need to see the full chat history |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Add session history endpoints to ACP, enabling clients to access conversations from any ACP agent (Claude Code, Gemini CLI, etc).
Problem
Users work with AI agents across multiple tools, creating isolated conversation histories. Current ACP only handles active sessions, not historical data.
Proposed API
1. List Sessions
2. Get Session Content
3. Capability Discovery
Benefits
Implementation
Agents store sessions locally (SQLite, JSON files) and expose via new endpoints. No changes to existing ACP flows.
Beta Was this translation helpful? Give feedback.
All reactions