Add X DM reply-batch and spreadsheet paste recipes - #525
Draft
rishwajeet wants to merge 2 commits into
Draft
Conversation
✅ Skill review passedReviewed 3 file(s) — no findings. |
rishwajeet
force-pushed
the
codex/x-dm-recipe
branch
from
July 14, 2026 15:40
c2049d7 to
608a4b6
Compare
Kastan97
reviewed
Jul 28, 2026
Kastan97
left a comment
There was a problem hiding this comment.
Ollie (CTO) Review: APPROVED ✅
What this does: Adds an X DM reply-batch recipe (155 lines) covering authenticated session recovery, stable DM selectors, request acceptance, composer verification, bounded batches, and idempotent reruns. Also adds a clipboard recipe (60 lines) for spreadsheet ranges that ignore synthetic Cmd+V, and wires it into the Interaction Skills index.
Assessment: Well-structured documentation additions. The clipboard recipe addresses a real friction point (Google Sheets ignoring synthetic paste). The X DM recipe includes practical guardrails like bounded batches and idempotency checks. 217 lines total of pure documentation.
Good to merge.
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.
What changed
BH_DOMAIN_SKILLS=1.Why
X appends timestamps inside message wrappers. Exact-text verification can therefore miss a successful send and resend the same DM. Google Sheets can also show the intended range as selected while ignoring a synthetic paste.
Impact
Future reply batches can detect existing outgoing drafts safely, accept only the requests that actually need replies, and verify each send in-thread. Tracker updates have a documented paste fallback plus an explicit live-read verification step.
Checks
uv run python.git diff --check.