skills$openclaw/browserbase-fix
pkiv1.8k

by pkiv

browserbase-fix – OpenClaw Skill

browserbase-fix is an OpenClaw Skills integration for devops workflows. Guide Claude through debugging and fixing failing browser automations

1.8k stars1.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026devops

Skill Snapshot

namebrowserbase-fix
descriptionGuide Claude through debugging and fixing failing browser automations OpenClaw Skills integration.
ownerpkiv
repositorypkiv/browsepath: skills/fix
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @pkiv/browse:skills/fix
last updatedFeb 7, 2026

Maintainer

pkiv

pkiv

Maintains browserbase-fix in the OpenClaw Skills directory.

View GitHub profile
File Explorer
1 files
fix
SKILL.md
4.8 KB
SKILL.md

name: browserbase-fix description: Guide Claude through debugging and fixing failing browser automations

Fix Automation Skill

Guide Claude through debugging and fixing failing browser automations.

When to Use

Use this skill when:

  • A Browserbase Function is failing in production
  • An automation stopped working (site changed)
  • User reports errors from their automation
  • CI/CD pipeline failures related to browser functions

Context Sources

Before debugging, gather context from:

  1. Error messages - What the user reported or CI logs show
  2. Function code - The automation script itself
  3. Recent invocations - Check for patterns in failures
  4. Function history - When did it last work?
stagehand fn errors <function-name>
stagehand fn logs <function-name>

Debugging Workflow

1. Reproduce the Issue

Start a Browserbase session to see what's happening:

stagehand session create
stagehand session live  # Open in browser to watch

Navigate to the target URL:

stagehand goto <target-url>

2. Compare Expected vs Actual State

Take a snapshot of the current page:

stagehand snapshot

Compare with what the automation expects:

  • Are the expected elements present?
  • Have selectors changed?
  • Is there a login wall or CAPTCHA?
  • Has the page structure changed?

3. Common Failure Patterns

Selector Changes

The site updated their HTML:

stagehand snapshot
# Look for similar elements with new selectors
stagehand eval "document.querySelector('.new-class')?.textContent"

Fix: Update selectors in the function code.

Timing Issues

Elements load slower than expected:

stagehand network on
stagehand goto <url>
stagehand network list
# Check if resources are slow to load

Fix: Add explicit waits or increase timeouts.

Authentication Expired

Session cookies no longer valid:

stagehand snapshot
# Look for login prompts

Fix: Re-authenticate or update auth flow. See skills/auth/SKILL.md.

Rate Limiting / Bot Detection

Site is blocking automated access:

stagehand network list
# Look for 403, 429 status codes
stagehand screenshot -o blocked.png

Fix: Add delays, use proxies, or contact site owner.

Site Redesign

Major structural changes:

stagehand snapshot
stagehand screenshot -o current.png

Fix: Rewrite affected portions of the automation.

4. Test the Fix

Make changes to the function code, then test:

# Test locally first
stagehand fn invoke <name> --local

# If local works, deploy
stagehand fn publish <entrypoint>

# Test in production
stagehand fn invoke <name>

5. Verify Fix is Complete

After fixing:

  1. Run the function multiple times to ensure stability
  2. Check that all expected data is returned
  3. Verify edge cases still work

Commit and Deploy

Once fixed, use git to commit changes:

git add <function-file>
git commit -m "fix(<function-name>): <description of fix>"
git push

If this is a PR workflow:

gh pr create --title "Fix <function-name>" --body "..."

Diagnostic Commands Reference

CommandPurpose
stagehand session createStart debug session
stagehand session liveOpen visual debugger
stagehand goto <url>Navigate to target
stagehand snapshotInspect DOM structure
stagehand screenshotCapture visual state
stagehand network onEnable request capture
stagehand network listView captured requests
stagehand network show <id>Inspect specific request
stagehand eval <js>Run diagnostic JS
stagehand fn errors <name>View recent failures
stagehand fn logs <name>View function logs

Example Debug Session

User: My price-monitor function stopped working yesterday

Claude: Let me investigate. First, let me check the recent errors:

> stagehand fn errors price-monitor

I see several failures with "Element not found: .price". Let me start a debug session:

> stagehand session create
> stagehand session live
> stagehand goto https://example.com/product/123

Opening in browser so you can watch. Let me check the page structure:

> stagehand snapshot

I can see the price element now uses a different class `.product-price` instead of `.price`. The site appears to have been redesigned.

Let me verify:
> stagehand eval "document.querySelector('.product-price')?.textContent"

Yes, that returns "$29.99". I'll update the selector in your function:

[edits price-monitor.ts to use '.product-price']

Testing locally:
> stagehand fn invoke price-monitor --local -p '{"productUrl": "https://example.com/product/123"}'

Works! Deploying fix:
> stagehand fn publish price-monitor.ts

The function should work now. Would you like me to commit this fix?
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install browserbase-fix?

Run openclaw add @pkiv/browse:skills/fix in your terminal. This installs browserbase-fix into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/pkiv/browse. Review commits and README documentation before installing.