ref(chat)!: remove per-Turn publish choice - #1736
Draft
dcramer wants to merge 1 commit into
Draft
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
dcramer
force-pushed
the
codex/store-publish-on-turn
branch
from
August 29, 2026 05:16
e0928c0 to
f0be9d2
Compare
dcramer
force-pushed
the
codex/store-publish-on-turn
branch
from
August 29, 2026 05:19
f0be9d2 to
fcd6fc7
Compare
dcramer
force-pushed
the
codex/store-publish-on-turn
branch
from
August 29, 2026 06:15
fcd6fc7 to
1968ba5
Compare
dcramer
force-pushed
the
codex/store-publish-on-turn
branch
from
August 29, 2026 06:40
1968ba5 to
7027551
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 7027551. Configure here.
dcramer
force-pushed
the
codex/store-publish-on-turn
branch
from
August 29, 2026 08:14
7027551 to
0f5b3ce
Compare
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.

Assistant output no longer carries a per-message or per-Turn publish choice. Slack input always delivers to Slack. Web and local input stay in Junior. Resource events deliver from the Conversation Location. Scheduled tasks, Event tasks, and plugin dispatches get Delivery for their explicit Destination. Agent invocations stay internal. Mailbox batches also stay within one Actor and Source.
This is a hard cutover for the internal Inbound message, worker, Turn checkpoint, and AgentRun contracts. Redis mailbox and Turn cursor records still write
publishExternallyfor deployed readers during rollout, but current workers ignore it. Both writes have removal TODOs.The shared web and Resource event worker still uses Run Delivery to store each completed assistant Message. It temporarily checks Resource event Source before it also calls Slack. Its TODO removes that check after core Turn storage is independent and each work owner supplies optional Delivery. The current Slack dispatch path has a separate TODO to stop creating a synthetic Message and Thread.
Refs #1563