3033: [factory] Successful Slack receipt is re-ingested as a write and rejected on read-only ts - #422
Open
agent-relay-code[bot] wants to merge 2 commits into
Open
Conversation
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
After Relayfile provider-confirmed a Slack
reply_in_thread, a follow-on operation reprocessed the materialized result and attempted to write Slack's read-onlytsfield. The user-visible delivery succeeded, but the lifecycle then emitted a contradictory failure.A provider receipt must be terminal evidence for that operation, not new writable provider input. This is distinct from the missing-writeback-scope failure tracked in #2029.
Production evidence
Observed on 2026-08-15 while replying to the engineering-triage Slack thread.
Successful operation:
op_232967reply_in_thread/chat.postMessageC0B9Z4CLG1Jts:1786747030.2331892026-08-14T22:37:11.171ZFollow-on failure:
op_232968Field "ts" is read-only and cannot be writtenThe second failure did not undo delivery, but it makes success ambiguous and can provoke retries or duplicate notifications.
Required behavior
tsback into create/update inputs.op_232967as terminal and idempotent.Definition of done
reply_in_threadreceipt containingtsand proves no follow-on provider write is generated.succeededif later local bookkeeping fails, with the bookkeeping error reported separately.Related: #2029
Fixes #3033