Version Packages - #33
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 11, 2026 15:48
f02e343 to
6ab66ad
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 11, 2026 16:05
6ab66ad to
a6a37a2
Compare
joelgwebber
pushed a commit
that referenced
this pull request
Sep 11, 2026
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@sightmap/sightkick@0.7.0
Minor Changes
2c10d22: Support the
raw_textextract mode (SEP-0013).The generator now compiles
extract: raw_textto a first-class extractor kind — previously it fell through to a bogus raw-CSS fallback (within: "raw_text"), so--via webmcpsilently failed. The runtime readsraw_textas the node's own literal text (the concatenation of its direct text-node children, whitespace-normalized) — never the accessibility name and neverinnerText. This mirrors the sightmap lib's offlinenode.RawText, so araw_textpredicate matches identically offline and at runtime.Verified live on jetblue.com:
select_farenow resolvesSubFare[tier="Main"]— a fare-tile heading whose accessibility name welds in a CSS::after"Most popular" badge — and commits the leg (was a silent timeout).Patch Changes
5112839: Fix the runtime click hanging forever when
requestAnimationFrameis starved.clickElement's hit-test settle loop (added to commit below-the-fold dropdown options) awaited the next animation frame, and its 300ms wall-clock deadline was only checked between frames. So when rAF stops firing — a backgrounded/throttled tab, or a wedged SPA renderer that has stopped painting — theawaitnever resolved and the whole tool promise hung indefinitely (every other step is bounded, so this was the sole unbounded path).nextFrame()now races rAF against a short timer, so the settle loop keeps turning and honors its deadline (falling back to node dispatch) even when no frame ever fires. When rAF is healthy it still wins the race, so the settle fast-path is unchanged.Surfaced driving jetblue checkout:
set_passengerhung in the Title option click whilerequestAnimationFramefired 0× in 2s.5112839: Fix
sightkick browser --webmcpnaming Chrome flags that aren't real. It forced--enable-blink-features=ModelContext,ModelContextTestingand--enable-features=DevToolsWebMCPSupport; neither is a Chromium feature, so Chromesilently ignores them. The path still reached native WebMCP in practice because the
managed Chrome for Testing enables the feature by default — which is exactly why the
bogus flags went unnoticed.
--webmcpnow passes the real switch,--enable-features=WebMCPTesting(the command-line form ofchrome://flags/#enable-webmcp-testing): correct on its own, and required if thesession runs against Google Chrome stable rather than the managed CfT. The
sightkick-debugskill and the vendored inspectorNOTES.mdare corrected tomatch. See WebMCP error suggests Chrome flags that don't enable native WebMCP sightmap#413.