[STG-2529] fix(openclaw-browserbase): repoint skill sync to browse-plugin#87
Draft
shrey150 wants to merge 1 commit into
Draft
[STG-2529] fix(openclaw-browserbase): repoint skill sync to browse-plugin#87shrey150 wants to merge 1 commit into
shrey150 wants to merge 1 commit into
Conversation
skills-sync.ts pulled the browser-automation skill from browserbase/skills, which references the deprecated @browserbasehq/browse-cli install command. browserbase/browse-plugin's skills/browse/SKILL.md is the current, actively-maintained source (same top-level skills/ extraction convention, so this is a URL swap, not a mechanism change). Verified live against both refs before writing this: main (no skills/ dir yet, browse-plugin#3 unmerged) fails with "Tarball extracted zero files under the skills/ prefix"; the shrey/all-marketplace-manifests branch (previewing post-merge main) succeeds and extracts exactly browse/SKILL.md. This PR must merge after browse-plugin#3, not before. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.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.
Linear: STG-2529
What
@browserbasehq/openclaw-browserbase's dynamic skill sync (skills-sync.ts) pulled thebrowser-automationskill frombrowserbase/skills, which is stale — it references the deprecated@browserbasehq/browse-cliinstall command. This repoints it tobrowserbase/browse-plugin's currentskills/browse/SKILL.md, the actively-maintained source for thebrowseCLI skill.Both repos use the same top-level
skills/extraction convention, so this is a URL swap inTARBALL_BASEplus updated user-facing strings/docs (src/index.ts,README.md) — no change to the sync mechanism itself.browserbase/browse-plugin#3 is what adds a top-level
skills/browse/directory tobrowse-plugin'smain(currently still the old nestedplugins/browse/skills/browse/layout, pre-flatten). Until #3 merges, this PR's new sync target has noskills/dir at the repo root, andopenclaw browserbase skills syncwill fail loudly (verified below) instead of silently succeeding wrong — but it will still be a real regression for the ~180 monthly downloads of this package if merged first.Recommended sequencing: merge browse-plugin#3, then this PR.
E2E Test Matrix
pnpm run check-types(this package)pnpm run buildsyncBrowserbaseSkills({ ref: 'main' })againstbrowserbase/browse-pluginmain, run against the builtdist/skills-sync.jsTarball extracted zero files under the skills/ prefix.browse-plugin, and confirms the merge-order dependency above is real, not theoretical.syncBrowserbaseSkills({ ref: 'shrey/all-marketplace-manifests' })— the branch that becomesmainonce #3 mergesfilesWritten: ['<tmp>/browse/SKILL.md']grep -rn "browserbase/skills" src/ README.mdTest artifacts (
/tmp/oc-sync-test-*) cleaned up after; no leftover state in the repo.🤖 Generated with Claude Code