How to integrate Claude Code handoff with OpenACP? #119
-
|
I'm coding with Claude Code in my terminal and want to continue the same session from Telegram when I leave my desk. How does session handoff work? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
OpenACP supports session transfer (handoff) — moving sessions between terminal and chat. Use case: You're coding in terminal with Claude Code and want to continue from Telegram when you leave your desk. Steps:
openacp integrate claude-code
openacp adopt claude-code <session-id>OpenACP tracks integrations in config: {
"integrations": {
"claude-code": {
"installed": true,
"installedAt": "2026-03-26T10:00:00Z"
}
}
}Session transfer preserves the full context, conversation history, and working directory. |
Beta Was this translation helpful? Give feedback.
OpenACP supports session transfer (handoff) — moving sessions between terminal and chat.
Use case: You're coding in terminal with Claude Code and want to continue from Telegram when you leave your desk.
Steps:
In your terminal Claude Code session, use the
/handoffcommand to transfer the session to OpenACPOn Telegram/Discord/Slack, adopt the session:
OpenACP tracks integrations in config:
{ "integrations": { "claude-code": { "installed": true, "installedAt": "2026-03-26T10:00:00Z" } } }Session transfer preserves the full context, conversation hist…