ci: package and upload extension zip artifact#3
Merged
Conversation
Run the existing package-extension.ts script after the extension build and upload the resulting 1-layer zip (manifest.json at the root) as a CI artifact, so each build produces a Browserbase-ready archive. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
twschiller
added a commit
that referenced
this pull request
Jun 7, 2026
Adds a capture-phase `change` listener that removes `[data-abs-cleared]` on trusted (real user / WebDriver / CDP) interactions. Without this, a controlled React/Vue checkbox would visually flicker on a real click — native activation toggles the box to true, the framework reconciles `node.checked = true` from new component state, and the prototype patch would revert that reconcile because the marker is still present. Capture-phase placement guarantees the marker is gone before any framework handler schedules the reconcile. Synthetic events (`isTrusted === false`, including page-script `element.click()` and our own `uncheck` dispatch) do not release the lock — only genuine user gestures do. Doc updates: - `docs/src/content/docs/rules.md`: note that the cleared state is held against framework re-renders but yields to real user / WebDriver clicks. - `skills/agent-browser-shield/SKILL.md` item #3: tell agents to drive the toggle through a click (the standard Playwright/CDP/`.click()` path), not `input.checked = true`. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8 tasks
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
bun run package(which invokesscripts/package-extension.ts) after the extension build in CIoutput/extension.zipas theextension-zipartifact on every runmanifest.jsonat the root, matching Browserbase's required layoutTest plan
extension-zipartifact is downloadable from the workflow runmanifest.jsonat the top level (no nested folder)🤖 Generated with Claude Code