fix(im-bot): create new Claw session on IM pairing instead of resuming old one#405
Merged
bobleer merged 1 commit intoGCWing:mainfrom Apr 14, 2026
Merged
Conversation
…g old one When a user pairs via WeChat/Telegram/Feishu QR code and sends a message without selecting a session, the bot previously resumed the most recent Claw session. This caused topic drift because the user cannot see the prior conversation context in the IM channel. Now a fresh Claw session is always created after successful pairing. Reconnections after BitFun restart are unaffected — they restore the persisted BotChatState (including current_session_id) directly via restore_chat_state, so no duplicate sessions are created on reconnect.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
BotChatState(includingcurrent_session_id) viarestore_chat_state, so no duplicate sessions are created on reconnectChanges
Modified
bootstrap_im_chat_after_pairingincommand_router.rs:PersistenceManagerhandle_new_sessionto create a fresh Claw sessionPersistenceManager,PathManager,PathBuf)Test plan