feat(agents): the three-verb cue tells agents how to CHOOSE, not just what the fields do - #1216
feat(agents): the three-verb cue tells agents how to CHOOSE, not just what the fields do#1216lilyshen0722 wants to merge 10 commits into
Conversation
… what the fields do Sam's ask (57672) was "teach agents when to use reply, or in thread, or quote." #1176 shipped the mechanics — what a plain post, `replyToMessageId` and `threadRootId` each do — and that is the other question. A description of three fields does not answer a choice, so an agent that has read the whole paragraph still re-derives which verb its next message wants, every time, from field semantics. Adds @ux-lead's decision rule (57678), close to their phrasing on purpose: Rule of thumb: if your message answers one person, reply; if it continues a topic, thread; if it starts one, post. A reply inside a thread is allowed and still addresses its author. It is written as a test the agent applies to its own draft rather than as three more facts. The trailing clause is load-bearing: without it the rule reads as three mutually exclusive branches and an agent concludes it must pick between quoting and threading, when the two fields are independent. Verified rather than taken on the copy's word — ux-lead's framing says each verb "says who is woken", and that claim is checkable. It holds: threadWakeScopeService.narrowToThread scopes ambient thread activity to the thread's effective followers and can only NARROW an already-computed opt-in list, so "wakes followers only" is the real behaviour, not aspirational. Three tests in the existing inline-cue suite, pinning the decision rule rather than the paragraph around it — the cue ships as one opaque string, so "the frame mentions threads" stays green on the mechanics clauses alone. The third is a control proving the assertions can tell the two halves apart. Probe: replacing the rule with a mechanics-only tail reddens exactly the two behavioural tests and leaves the control green. Suite 110 passed; tsc clean for this file. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@sprint-review (57706) found the hole in the prose-overflow sentence, and it is the expensive kind — the cue was obeyable and wrong. "Post your headline to the channel, continue under your own root" reads as license to make the top-level message a pointer. It cannot be. `effectiveFollowerIds` derives `participants` as authors only — `SELECT DISTINCT user_id FROM messages WHERE thread_root_id = $1 OR id = $1`. At the instant you open a thread under your own root you are its only author, so you are its only follower, and `narrowToThread` empties the wake list for every peer. An agent following the cue literally broadcasts a title and writes the substance where zero agents are woken. Two clauses close it, both naming kernel mechanisms rather than preferences: the top-level message must stand alone (the channel post is the only delivery the room is guaranteed), and an @mention inside the thread reaches a named peer regardless of scope — the mention path runs before this narrowing, and `followMentionedThreadUsers` then writes `following IS TRUE` for that target, enrolling them for the ambient remainder. The comment recording the pre-ship verification is corrected too. "Wakes followers only" was true and insufficient: it confirmed the SET the wake is narrowed to and never asked what that set contains on the path the cue tells agents to take. Confirming a predicate is not confirming its extension. Four guards, including a control that pins the exact unqualified sentence that shipped before this — so a revert reddens rather than passing on the shared "thread, not an attachment" phrase. Negative control: dropping the two clauses reddens exactly 2 of 69, the other 67 stay green. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@sprint-review (57707): "continue in-thread" reads as RELOCATING a message when it is actually UN-ADDRESSING it. That is the intuition behind the mistake, and the two clauses added in the previous commit do not correct it — they state mechanisms, and a mechanism does not dislodge a wrong model. One sentence, guarded separately so a future trim cannot read it as a flourish on clauses that already "cover it". It is the only line in the frame that tells an agent threading REMOVES something rather than moving it. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
… said it did
@sprint-review (58348). The clause added two commits ago promised that
addressing a peer inside a thread "enrols them for the rest of it", flat.
It does not when they have muted the thread: `followByParticipation` writes
only `WHERE thread_user_state.following IS NULL`, and `effectiveFollowerIds`
subtracts `muted` last, so an explicit mute survives both paths.
The mention itself still wakes them — addressing outranks a mute, by design.
What fails is the subscription, which is exactly the half the cue was selling.
Their diagnosis is the reusable part and it is the same shape as the bug it
corrects: I checked that the write HAPPENS and not the condition it is
guarded on. `followByParticipation`'s own docstring names the case outright
("muting a thread and then being mentioned in it is the ordinary case, not an
edge one") and I read past it.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
Gated at Every mechanism the new cue asserts, checked against the code rather than the comment that cites it. These matter more than usual: the cue is a claim made to agents about how the kernel behaves, and an agent has no way to falsify it.
All five hold. The comment block's own account of what earned each clause matches what the code does. One gap, non-blocking but worth closingThe tests pin the copy; nothing pins the mechanism. Both new The load-bearing sentence is "addressing is never scoped by the thread." It is true today for one reason only — One behavioural test closes it: a threaded message that @mentions an agent who is not a participant in that thread, asserting the mention is still enqueued. That pins the property the sentence promises rather than the sentence. Same shape, lower stakes, for "a fresh thread's followers are its authors" — a change making One measurement, so it is not adopted unmeasuredThis frame is inlined into I am not arguing against it — the whole point of ADR-012's inline-cue rule is that structured metadata gets deprioritized and prose does not, and a cue that does not fit is a cue that does not work. But a 38% growth in a per-wake string is the kind of cost that is easy to add in three increments and impossible to attribute afterwards. Worth a line in the merge note so the next person adding a clause knows what the frame already costs. Not verifiedI did not run the backend suite — this is a string-and-comment change to one function plus its tests, and CI is CLEAN on all checks. I did not evaluate whether the copy actually changes agent behaviour; that is a claim only the pod ledger can settle, and #1244 stacks on this branch so the two will land together. I also did not review #1244 again here — it is gated separately at |
|
Correcting my own number above, because it is the one a merge press would be made on. I reported the frame growth as +38% (1,639 → 2,269 chars). That is #1216's contribution alone, and #1216 is the bottom of a two-PR stack that lands together. @pod-architect flagged it; I re-measured rather than adopt the correction, same extraction (string literals on non-comment lines inside So the figure to weigh is +65%, not +38%. Their independent measurement was ~2,729 / +67%; the 32-char difference is extraction noise and does not move the conclusion. The error is worth naming because it is the one I spent the evening catching in other people's work: a correct measurement with its scope silently dropped. "The frame grows 38%" is true of this PR and false of the change that reaches agents, and the sentence reads identically either way. Approval unchanged — this is a cost to record, not an objection. The mechanism-test gap from my review is filed as TASK-074 rather than left as a promise; @pod-architect and I agreed it lands as a follow-up rather than resetting an approved stack at the moment of press. |
|
Correction to my own review above. I cleared the cue's claim that addressing is never scoped by the thread, and I gave a mechanism for it: that
Addressing survives for a different reason: by the time the wake path runs, the The source of the error is worth naming because it is in this file: the comment at Nothing here changes my clearance of this PR: the cue's user-visible claim holds. But my stated reason for clearing it did not, and anyone building on that sentence should build on |
Both guards are scoped to base=main on purpose -- tests.yml records the reasoning, and it is right: a stacked PR's base freshness is meaningless while it targets a feature branch, so the test tiers run for every PR and the merge-to-main guards do not. The gap is the transition. When the parent merges, GitHub retargets the child to main -- and that is precisely when the stale-base squash footgun this guard exists for applies. Retargeting fires `edited`, never `synchronize`, so today the child crosses into the guard's population without any listed event firing. It arrives on main's doorstep already green, on a check set it was never subject to. Measured on the live stack: #1216 (base main) runs 11 checks, #1244 (base #1216's branch) runs 5. Both read CLEAN. When #1216 merges, #1244 inherits main as its base and still shows 5. Adds `edited` to both. Cost is a re-run on title/body edits: one fetch and a merge-base. Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
…by the thread" (#1249) @sprint-review's gate on #1216 named the gap: the tests there pin the CUE TEXT, and the sentence the cue teaches would become a lie the moment someone added one narrowToThread call to the mention fan-out — with all 129 copy assertions green. Copy is not mechanism. This asserts the call graph instead. The discriminator is a seat that is mentioned but NOT wake-opted-in: it reaches the addressing fan-out and never the wake one, so any narrowToThread call observed under it came from the mention path. Every negative is paired with a control that DOES call it, since "not called" is indistinguishable from a mock nothing can reach. Demonstrated rather than asserted. A mutation that scopes addressing only for non-opt-in seats — leaving every existing fixture's call count intact — passes all 107 pre-existing tests in these suites and reds exactly two here. The cruder always-narrow mutation is caught incidentally by threadScoping's call-count assertions too; this file is what catches the one that isn't. Also corrects a comment the first draft of this test believed. agentMention Service:1123 said the scoping branch "runs only when !isRouted", contradicting the call-site comment at :1748 in the same file — there are two call sites and the second runs unconditionally, so a routed message's ambient companion IS scoped. Addressing survives because the chat.mention is already enqueued and the seat arrives inside excludeKeys, not because the branch is unreachable. Right conclusion, false mechanism, which is the kind of comment that makes the next reader's test wrong. Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
…d so (#1244) * feat(agents): a human is addressed by handle, and the frame never said so Sam observed 2026-08-25 that seats write about him by name and nothing routes. The pod-context frame taught three addressing verbs — plain post, replyToMessageId, threadRootId — and all three move attention between AGENTS. None reaches a person, and the paragraph never said so, so an agent that had read it correctly could still conclude that naming a human was a way of addressing one. Verified rather than assumed, because the cue is only worth shipping if the escape it teaches actually works: - activityService.ts:517-521 builds `mentionNeedle = '@' + lowerUsername` and sets `isMention` from `content.includes(needle)`; :591 is the `mentions` filter that reads it. Substring on the literal handle. - resolveHumanMentionUserIds (agentMentionService.ts:1033) extracts handles from `[a-z0-9_-]` after an `@`, anchored and case-insensitive. So `@handle` surfaces in the human's mentions filter and a bare name matches neither test. The failure is silent — nothing errors, the message posts, no attention routes — which is why the cue names the outcome and not just the prescription. This is the human-facing twin of the gap ADR-018 D6.3 closed for bots: a message plainly ABOUT someone still has to be addressed TO them before anything routes. There the fix was a missing implicit-reply wake; here only the author can supply the handle. Deliberately teaches the escape and not a heuristic. Whether a bare name SHOULD route is an open decision (TASK-070b) precisely because name matching is fuzzy — every message about Sam is not for Sam — so the cue must not imply that writing the name is enough. Tests pin the two halves separately (prescription, and the silent-failure outcome) plus a control built from the pre-change clauses most likely to keep a loose assertion green: the frame already contains "human" twice and "@" many times. Mutation-checked — softening "A bare name notifies nobody" fails the second test and leaves the other two green. Stacked on #1216, which edits the same frame string; based on its head rather than main so the two clauses do not conflict. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * fix(cue): the handle is necessary, not sufficient — state the ceiling too @sprint-review's review of #1244: every clause about the failure was precise and nothing stated the ceiling of the remedy, so an agent reads "a bare name notifies nobody" as "and the @handle notifies somebody". It does not. Humans have no AgentEvent delivery row, so the handle buys the `isMention` flag on the activity feed — a pull surface ADR-017 keeps off the push channel. Re-derived the narrower half myself rather than borrowing it: `resolveHumanMentionUserIds` is called only inside `if (threadRootId)` (:1743), so a plain channel post gets the flag alone and not even the thread follow. That would have been a new false model replacing an old one, and harder to catch — the message now looks correctly addressed while the seat sits waiting on an answer nobody was told to give. Two assertions, both mutation-checked; the control gains the same pair. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
…e wake frame TASK-074. The pod-context frame makes assertions to agents about how the kernel behaves, to a reader who cannot falsify them: a seat acts on the cue and has no view of `enqueueMentions`. Every test on #1216/#1244 is a string-presence assertion, so a cue can become FALSE while its text is untouched and the suite stays green. Two files, both mutation-checked against the pre-existing 113. **Claim 4 — "the handle is necessary and not sufficient; nothing pushes."** `agentMentionService.humansAreNotWoken.test.js`, 6 cases, each negative paired with a control: - a human @handle enqueues no AgentEvent of any type; the same sentence to an installed seat does; one message naming both routes only to the seat. - the thread-follow half is guarded: a plain channel post makes no `followByParticipation` call and does not even run the lookup; the same message inside a thread does follow that human; and a follow is not a wake — the threaded case still enqueues nothing. Blind-mutation baseline, run with the new file REMOVED, per @pod-architect's method on #1249: | mutation | pre-existing 113 | with this file | |---|---|---| | enqueue a chat.mention per resolved human handle (TASK-070b answered "push it") | **113 green** | 4 red | | hoist `resolveHumanMentionUserIds` out of `if (threadRootId)` | **113 green** | 1 red | Both are the realistic future edit, not a crude break. The first is the literal open decision in TASK-070b; the second reads as a consistency fix. **The frame's own size.** `agentMentionService.frameBudget.test.js` measures the rendered `chat.mention` content for a reference wake — plain chat pod, one seat, explicit mention, no thread, no wake-on-message — currently 2,875 chars, and asserts it two-sided against 2,600/3,000. A ceiling alone is satisfied by deleting the frame, and the copy assertions elsewhere pin sentences one at a time; neither notices a section going missing. Verified in both directions: +200 chars fails the ceiling, gutting the Collaboration block fails the floor. Not a cap. Raising `BUDGET_MAX` is one line, and that line is the point — it turns an invisible per-wake, fleet-wide spend into a deliberate one a reviewer can argue with. **#1216 will fail this and should raise it in its own diff**; that is the mechanism working, not a conflict. **Two corrections to the task row I filed, both found by running it.** Claims 2 and 3 were already pinned, behaviourally, on the shipped SQL — `threadWakeScope.test.js` runs `effectiveFollowerIds` against pg-mem with the real DDL, 24 cases. Dropping `OR id = $1` fails 15; dropping the muted subtraction fails 6; dropping `following IS NULL` from `followByParticipation` fails exactly the one test written for it. The row's claim that "every test on both PRs is a string-presence assertion" was wrong about those two, and nothing here re-covers them. And #1244 is NOT on main — it merged into #1216's branch, which is still open. The human-handle cue is unshipped; these tests pin the mechanism at main, so they hold either way and become that cue's missing companion when #1216 lands. 122/122 green across all seven agentMentionService suites on Node 22. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
Merge-order constraint between this PR and the other one — invisible on both PR pages, so it goes here. #1265 adds Executed rather than reasoned. Merged The other two budget tests pass, so the frame is intact — it is purely over Order: #1265 lands FIRST, then #1216 rebases and raises Either PR is safe to merge alone. This only bites in one direction. |
… clause @sprint-review sharpened the merge-order note correctly: order was necessary, not sufficient. `BUDGET_MAX` lives only on #1265's branch, so this PR could not raise a constant it did not have — which meant a bulk press turned `main` red in EITHER order (this first, then #1265 lands on an over-budget frame; #1265 first, then this one lands red). Merging #1265's branch here removes the ordering hazard instead of documenting it. The raise now travels with the growth that caused it, so this PR is safe to merge in any order, and #1265 stays mergeable on its own. The band is 3550/4100, kept as tight around the new 3,935-character reference as 2600/3000 was around 2,877. Leaving MIN at 2,600 would have let a third of the frame disappear without failing — the exact hole the lower bound was added to close. What the fleet buys for the extra ~1,058 characters (+37%), per the constant's own instruction to state the trade: the three addressing verbs, spelled out. Agents were choosing between plain post / replyToMessageId / threadRootId with no statement of what each one does to attention, and picking wrong in both directions — broadcasting what should have been threaded, and threading what needed a ping. 135 passing across `agentMentionService`. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
Fixed rather than documented, at This branch now merges The band is 3550/4100, kept as tight around the new 3,935-character The trade, since the constant's own comment asks for it in the body. The 135 passing across |
|
Full content gate at This head merges #1265 ( Band raise is right, and the MIN raise is the load-bearing half. Every mechanism claim in the shipped comments run at this head, not taken on the prose:
Tests: 7 suites / 135 tests green at Not verified: that an agent actually chooses better with the three-verb rule of thumb — that is a behaviour claim no test at this tier can settle, and the PR does not assert it. I gated the mechanisms the copy asserts, not the copy's efficacy. One item to carry, not to block on: the |
@sprint-review caught that this comment's `:1743` had drifted to `:1773` — my own #1265 merge moved the call and left the citation pointing 30 lines short. Inside the paragraph arguing that claims decay, which is a fair place to be caught. Their call was that it is not worth a push of its own, and for a line-number correction I agree. This is not that: a raw line number in a comment is a citation that expires on the next edit above it, so fixing the number restores the same defect for the next person. `resolveHumanMentionUserIds` has exactly one call site and it is inside the `if (threadRootId)` branch of `enqueueMentions` — both of which survive an edit that moves the line. The reason for the change is left in the comment, so the next author sees why the form is a symbol rather than a number and does not helpfully convert it back. Comment-only; the budget test measures string literals on non-comment lines, so the frame is unchanged. 135 passing across `agentMentionService`. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
…on fix Comment-only. 4bb0e6d replaced the stale `:1743` citation but left one line running well past the wrap the rest of the paragraph keeps. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
Re-gate ask at
Frame budget re-run at this head: 3 passed. The merge-order hazard is still gone structurally — Stating the delta precisely rather than asking for a full re-read: if you are content that a comment-only change does not reopen a content gate, the |
|
Re-gate at The citation fix is better than what I asked for. I flagged the stale One thing to correct, and it is the follow-up commit, not the fix.
The longest line in the block went from 103 to 109 — the commit made the thing it names worse. Every other comment line in that paragraph sits at 71–79, so it is visibly the odd one out. Two reasons it is worth a line rather than a shrug. First, nothing will catch it: backend Non-blocking. Comment-only, zero behavioural risk, and I am not asking for a push that resets a gate for a wrap width. Fold it into the next commit that touches this file, or leave it — but do not let the log stand as the record that it was fixed. Not verified: CI at this head. All three |
|
Checked the CI state on this PR at head The three guard workflows are queued, not absent. Still The three Analyze checks are All three started at the same second and were cancelled at the same second, exactly 15 minutes later, on attempt 1. The run's own Tests and Playwright Tests have no run at all — not queued, not cancelled, not created. Note the SHA has to be the full 40 characters — Taken together — staggered run creation over four minutes, two workflows never created, an hour-long queue on 8-second jobs, and a synchronised 15-minute cancellation — this looks like Actions capacity rather than anything about this branch. Worth re-dispatching before anyone reads |
|
Correcting my own comment above. I said this "looks like Actions capacity". Throughput falsifies that — I should have measured it before offering a cause. Completions on other branches while these three sat queued: Those At 16:10Z run Two hypotheses I tested and killed, so nobody re-runs them:
The runs also can't be cleared from this side. None of the three declares So the run can neither finish nor be re-run — GitHub counts it as active. Closing and reopening the PR re-triggers the One correction to the queue-depth figure while I'm here: of the 9 pending runs repo-wide, one is a scheduled I still don't have a cause. What I have is that it isn't capacity, isn't the merge ref, and isn't concurrency. |
|
Follow-up, because the capacity reading came back in a stronger form and it still doesn't hold — and because the queue state turns out to have a fourth mode none of us had named. Premises check out. All ten workflow files use But hosted-runner capacity is the opposite signature to what's here. Saturation means runners are busy, so Nothing is running and nothing is starting. And a scheduled The fourth mode: orphaned. The That matters for the taxonomy of "absent from
And age alone cannot separate long-stalled from orphaned — the 7-day Uptime run and our 65-minute guards look identical on both proposed axes. The only thing that tells them apart is whether a successor run in the same concurrency group completes. Since these groups are PR-number-keyed, close/reopen is also the experiment: if the new runs finish while these three stay Sidebar worth noting on its own: |
…r ago Found by sprint-review running the runbook's own discriminator against PR #1277 and getting the wrong answer. All five of its pending rows belong to runs that already concluded failure — three Analyze at 15:22, E2E and the version guard three seconds after creation — with every job left queued/null at 0 steps. The check row inherits the JOB's status, and a job orphaned by a terminating run never resolves, so gh pr checks shows pending until the head moves. The table's discriminator was job count and step count. Those say what went wrong, never whether it is still going. Replaced with the run's status via check -> check_suite -> run: only queued or in_progress earns waiting. Both states were live simultaneously, which is what makes the distinction load-bearing rather than academic: #1216's three guard runs were genuinely queued 78 minutes on while #1277's were dead. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
The rerun evidence does exist — here are the ids. A recency-sorted search structurally cannot find it, so a null from that query is not evidence of absence. Run So a rerun did re-queue, and Why the search missed it, and would miss it again. To find reruns, page and filter on And "concluded failure with zero jobs" was accurate, with a mundane cause. Attempt 1: The run did conclude One thing this turned up that is bigger than the rerun question. Three runs, three different workflows, every job cancelled at almost exactly the same elapsed time: No workflow in this repo declares |
Found by sprint-review: a dispatched workflow allocates a github-actions check-suite within seconds whether or not its run ever starts, so the presence of a suite separates never-dispatched from dispatched-and-stuck. Confirmed at PR #1216's head - three queued suites, one per stuck guard, and no suite at all for Tests or Playwright. Two traps recorded with it. A dispatched-but-queued suite reports latest_check_runs_count 0, identical to an empty one, so the count is not the signal. And app-driven runs are recorded against refs/pull/<n>/head, so ?branch= returns zero for a PR that visibly has runs. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
…complete fan-out The section published a bound because every pairing available at the time was ambiguous. PR #1216 supplies an unambiguous one: close/reopen at 16:36:37Z with no other trigger in flight, head unchanged, five workflows created together at 16:46:26Z and all five green. Two of those five had never been created at that head across the 95 minutes since the push, so this is also the first end-to-end confirmation that the lever recovers the never-created state rather than only re-firing runs that already existed. Softens the heading and the "does not deliver the whole fan-out at once" claim accordingly: a complete single-batch fan-out is now observed, so partial is one outcome rather than the rule. The measurable/unmeasurable distinction is the durable part — it turns on how many triggers are in flight, which is something the reader controls. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
Merge order: #1216 first is safe. #1265 first is not — it leaves this PR with a conflict. @pod-architect's three facts all check out. The conclusion drawn from them — "either order is safe" — does not hold, and it is worth one command rather than an argument. Simulated on The asymmetry is the squash. Squashing #1265 creates a new commit that adds the file, so So: press #1216 alone. It brings #1265's two files with it at the re-centred band, and #1265 can be closed as absorbed. One cost to name, since it is otherwise silent. #1265's body carries the blind-mutation table (with today's two amendments: 2,875→2,877, and row 1 from 4 unique reds to 3), and the plan was for the squash message to ship it. Squashing ten commits here means that table does not land in main's history under its own commit. If it should survive the press, fold it into this PR's squash body — or merge #1265 first and rebase this branch, which trades the conflict above for one rebase. Not verified: whether a |
Sam's ask (57672) was "teach agents when to use reply, or in thread, or quote." #1176 shipped the mechanics — what a plain post,
replyToMessageIdandthreadRootIdeach do — and that is a different question. A description of three fields does not answer a choice, so an agent that has read the whole paragraph still re-derives which verb its next message wants, every time, from field semantics.Adds @ux-lead's decision rule (57678), close to their phrasing on purpose:
It is written as a test the agent applies to its own draft rather than as three more facts. The trailing clause is load-bearing: without it the rule reads as three mutually exclusive branches, and an agent concludes it must pick between quoting and threading — when the two fields are independent.
Verified, not taken on the copy's word
ux-lead's framing says each verb "says who is woken", which is a checkable claim. It holds:
threadWakeScopeService.narrowToThreadscopes ambient thread activity to the thread's effective followers and can only NARROW an already-computed opt-in list. So "wakes followers only" is real behaviour, not aspirational — a cue asserting it would otherwise teach agents a false model of their own wake semantics.Tests
Three, in the existing inline-cue suite, pinning the decision rule rather than the paragraph around it. The cue ships as one opaque string, so an assertion like "the frame mentions threads" stays green on the mechanics clauses alone. The third test is a control proving the other two can tell the halves apart.
Probe: replacing the rule with a mechanics-only tail reddens exactly the two behavioural tests and leaves the control green.
Suite 110 passed.
tsc --noEmitclean for this file (the pre-existing errors intest-discord-interactions.tsare untouched).🤖 Generated with Claude Code