fix(slack): keep thread session fork/history context after first turn#23843
Merged
vincentkoc merged 3 commits intomainfrom Feb 22, 2026
Merged
fix(slack): keep thread session fork/history context after first turn#23843vincentkoc merged 3 commits intomainfrom
vincentkoc merged 3 commits intomainfrom
Conversation
aad68f6 to
0b32188
Compare
0b32188 to
35a05d1
Compare
This was referenced Feb 22, 2026
Closed
MisterGuy420
pushed a commit
to MisterGuy420/openclaw-dev
that referenced
this pull request
Feb 22, 2026
…openclaw#23843) * Slack thread sessions: keep forking and history context after first turn * Update CHANGELOG.md
18 tasks
carlosrivera
pushed a commit
to myascendai/meshiclaw
that referenced
this pull request
Feb 23, 2026
…openclaw#23843) * Slack thread sessions: keep forking and history context after first turn * Update CHANGELOG.md
gabrielkoo
pushed a commit
to gabrielkoo/openclaw
that referenced
this pull request
Feb 23, 2026
…openclaw#23843) * Slack thread sessions: keep forking and history context after first turn * Update CHANGELOG.md
mreedr
pushed a commit
to mreedr/openclaw-custom
that referenced
this pull request
Feb 24, 2026
…openclaw#23843) * Slack thread sessions: keep forking and history context after first turn * Update CHANGELOG.md
7 tasks
brianleach
pushed a commit
to brianleach/openclaw
that referenced
this pull request
Feb 26, 2026
…openclaw#23843) * Slack thread sessions: keep forking and history context after first turn * Update CHANGELOG.md
mylukin
pushed a commit
to mylukin/openclaw
that referenced
this pull request
Feb 26, 2026
…openclaw#23843) * Slack thread sessions: keep forking and history context after first turn * Update CHANGELOG.md
mylukin
pushed a commit
to mylukin/openclaw
that referenced
this pull request
Feb 26, 2026
…openclaw#23843) * Slack thread sessions: keep forking and history context after first turn * Update CHANGELOG.md
zooqueen
pushed a commit
to hanzoai/bot
that referenced
this pull request
Mar 6, 2026
…openclaw#23843) * Slack thread sessions: keep forking and history context after first turn * Update CHANGELOG.md
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
Ports the merge-safe continuity fixes from #23090 onto current
main:forkedFromParentflag so parent transcript forking only happens onceWhy
Thread session continuity was gated behind first-turn checks in multiple paths, which caused thread context to disappear after the first interaction and prevented expected parent transcript branching in preseeded thread sessions.
Validation
pnpm test -- src/auto-reply/reply/session.test.ts src/slack/monitor/message-handler/prepare.test.ts src/auto-reply/reply/get-reply-run.media-only.test.tspnpm exec oxfmt --check src/slack/monitor/message-handler/prepare.ts src/auto-reply/reply/get-reply-run.ts src/auto-reply/reply/session.ts src/config/sessions/types.ts src/slack/monitor/message-handler/prepare.test.ts src/auto-reply/reply/get-reply-run.media-only.test.ts src/auto-reply/reply/session.test.ts CHANGELOG.mdpnpm exec oxlint src/slack/monitor/message-handler/prepare.ts src/auto-reply/reply/get-reply-run.ts src/auto-reply/reply/session.ts src/config/sessions/types.ts src/slack/monitor/message-handler/prepare.test.ts src/auto-reply/reply/get-reply-run.media-only.test.ts src/auto-reply/reply/session.test.tsSupersedes: #23090
Greptile Summary
Ports thread session continuity fixes from #23090. Removes first-turn-only gates that prevented thread context from persisting beyond the initial interaction.
Key changes:
forkedFromParentflag to prevent repeated forking (types.ts:39, session.ts:339)Test coverage:
Confidence Score: 5/5
forkedFromParentflag prevents duplicate forking, and removing first-turn gates enables consistent context.Last reviewed commit: 35a05d1