browser-use-to-stagehand

작성자: browserbase

browser-use (Python) 브라우저 자동화 스크립트를 Browserbase의 Stagehand v3 (TypeScript)로 마이그레이션합니다. 사용자가 변환, 포팅, 재작성 등을 원할 때 사용하세요.

npx skills add https://github.com/browserbase/skills --skill browser-use-to-stagehand

browser-use → Stagehand on Browserbase (/browser-use-to-stagehand)

Convert a browser-use (Python) script into an idiomatic Stagehand v3 (TypeScript) script on Browserbase, choosing the right level of determinism at each step rather than producing a one-to-one agentic copy.

Core principle: browser-use is agentic-by-default (the LLM decides every action). Stagehand lets you choose how much AI to use. A good migration replaces opaque agent loops with an inspectable, mostly-deterministic pipeline — using AI only where the page is genuinely unpredictable. This is a refactor with judgment, not a transpile.

Source of truth & versions. This skill's durable value is the judgment — the determinism spectrum and the decompose-vs-agent decision — not the API specifics, which drift every release. The code mappings here are a snapshot validated against @browserbasehq/stagehand 3.6.x and browser-use 0.13.x (2026-06). On any conflict, the live docs win — always verify against the installed package and these sources before emitting code:

If the installed Stagehand major is not 3, treat this skill as conceptual only and follow the live docs for every signature.

Reference files (read as needed)

  • references/api-mapping.md — the mechanical browser-use → Stagehand mapping: variant detection, the full feature table, before/after code, Browserbase platform options, and v3 version gotchas. Read this for any non-trivial construct.
  • references/determinism.md — how to choose agent() vs act/extract/observe vs cached observeact. The decision tree. Read this when deciding how to translate an Agent(task=…).
  • references/trace-assisted.md — the optional "run it on Browserbase, read the logs, then rewrite" workflow for opaque/flaky scripts.
  • references/guide.md — the human migration guide: philosophy shift, feature mapping, the determinism spectrum, and a recommended migration path.
  • references/prompt.md — a self-contained, tool-agnostic version of this skill; paste it into any AI assistant along with a browser-use script.
  • EXAMPLES.md — before/after script pairs.

Workflow

1. Get the source

Obtain the browser-use script(s). If the user only described a script, ask for the file(s). Note the target: TypeScript Stagehand on Browserbase unless they say otherwise.

First, gate on scope — is this even migratable? Not every browser-use file is an Agent(task=…) script. If the source is browser-use running as an MCP server (uvx browser-use --mcp, a mcpServers config) there is no Stagehand equivalent — flag it as out of scope, don't invent one (see api-mapping §3.7b). If the browser-use call is embedded in a larger app (a class/tool wrapper, web route, queue task), convert only the browser-use surface and preserve the surrounding app glue — see api-mapping §3.8.

2. Detect the browser-use variant

Identify legacy (pre-0.12) vs stable vs Rust beta (only when imports come from browser_use.beta) — see api-mapping §1. Note: the classic top-level from browser_use import Agent, ChatBrowserUse surface is alive and well in 0.13.x — ChatBrowserUse alone is not a beta tell; only a browser_use.beta import is. All variants translate identically, so when unsure, proceed with the stable mapping. Normalize legacy names before translating. State which variant you found.

3. Inventory the script

Extract a structured inventory before writing any TypeScript:

  • Task(s) — the task= string(s); split each into its implied ordered steps.
  • Model — the Chat* provider + model id.
  • Browser config — local vs cdp_url/Browserbase; headless; proxies; user_data_dir/storage_state.
  • Structured output — any output_model_schema Pydantic models.
  • Secretssensitive_data, env-var usage, login flows.
  • Guardrailsallowed_domains, max_steps.
  • Custom actions@tools.action / Controller functions, and whether each is a deterministic side-effect or an agent capability.
  • Setupinitial_actions, secondary models (page_extraction_llm, planner_llm).

4. Decide the determinism level per step

For each step from the inventory, apply the decision tree in determinism.md:

  • Navigate to a known URL → page.goto(url) on the Stagehand page (no AI).
  • On-page action → act("…"); if it repeats, observe() once then replay act(action) (no LLM call).
  • Reading data → extract("…", zodSchema).
  • Genuinely open-ended → keep stagehand.agent().execute(...) (tightened with maxSteps/systemPrompt).

Default to decomposition when the flow is known; keep agent() only where it isn't. For a first lift-and-shift, a faithful agent() translation is acceptable — say so and note the optimization path.

5. Produce the Stagehand v3 rewrite

First, verify the API. Before writing, confirm the exact signatures you're about to use against the installed package (node_modules/@browserbasehq/stagehand types) or https://docs.stagehand.dev/v3. The mappings below are a 3.6.x snapshot; if anything differs in the installed version, the installed version wins. Then emit runnable TypeScript. Always:

  • import { Stagehand } from "@browserbasehq/stagehand"; and import { z } from "zod"; when extracting.
  • Get the page via const page = stagehand.context.pages()[0];.
  • Call AI methods on the instance: stagehand.act(...), stagehand.extract(...), stagehand.observe(...)never page.act(...).
  • Set the model as a "provider/model" string.
  • Default to env: "BROWSERBASE"; show env: "LOCAL" as the dev option.
  • Pass secrets via variables and process.env, never hardcoded.
  • await stagehand.init() at the start, await stagehand.close() in a finally.

Include the project setup so it runs (see the templates below).

6. Write the migration summary

Alongside the code, produce a short summary:

  • Variant detected and the determinism choices made (which steps became deterministic vs AI vs agent), with the reasoning.
  • Needs human review — anything that didn't map 1:1: lost allowed_domains guardrails, custom-action logic, secondary-model intent, ambiguous task strings.
  • Recommended next step — Browserbase Context for auth reuse, caching for production, or the trace-assisted path if the flow was opaque.

7. Offer the trace-assisted path (only if warranted)

If the source was one large opaque agent(task=…), was flaky, or your rewrite can't be confidently mapped, offer the trace-assisted workflow (trace-assisted.md): run the original on Browserbase, pull sessions.logs.list, and rewrite from observed behavior. Don't run anything without the user's go-ahead.

Output templates

package.json

{
  "name": "stagehand-migration",
  "type": "module",
  "scripts": { "start": "tsx index.ts" },
  "dependencies": {
    "@browserbasehq/stagehand": "^3.0.0",
    "dotenv": "^16.0.0",
    "zod": "^3.25.0"
  },
  "devDependencies": { "tsx": "^4.0.0", "typescript": "^5.0.0" }
}

Add "ai": "^5.0.0" (Vercel AI SDK) only if a custom browser-use action maps to an agent tool. Pin v5, not v4 — Stagehand 3.6.x bundles ai v5 and types agent({ tools }) as the v5 ToolSet, where a tool's schema field is inputSchema. The v4 tool() helper emits parameters instead and will fail to type-check against Stagehand's v5 ToolSet. If you can't control the hoisted ai version, skip the tool() helper and pass a plain object { description, inputSchema: zodSchema, execute } — it satisfies the v5 ToolSet regardless of which ai major resolves.

.env

BROWSERBASE_API_KEY=...
BROWSERBASE_PROJECT_ID=...
ANTHROPIC_API_KEY=...   # or the provider matching your model string

index.ts skeleton (decomposed, the preferred shape)

import "dotenv/config";
import { Stagehand } from "@browserbasehq/stagehand";
import { z } from "zod";

async function main() {
  const stagehand = new Stagehand({
    env: "BROWSERBASE",
    model: "anthropic/claude-sonnet-4-6",
  });
  await stagehand.init();
  try {
    const page = stagehand.context.pages()[0];

    await page.goto("https://example.com");          // deterministic skeleton
    await stagehand.act("…");                          // AI where the page varies
    const data = await stagehand.extract("…", z.object({ /* … */ }));  // structured reads

    console.log(data);
  } finally {
    await stagehand.close();
  }
}

main().catch((err) => { console.error(err); process.exit(1); });

Validation checklist (before declaring done)

  • AI methods are on the instance (stagehand.act/extract/observe), not the page.
  • Page obtained via stagehand.context.pages()[0].
  • Model is a "provider/model" string; the matching provider key is in .env.
  • extract uses a zod schema; zod is in dependencies.
  • Secrets use variables + process.env; nothing hardcoded.
  • init() / close() present; close() in finally.
  • Each browser-use step is accounted for, placed deliberately on the determinism spectrum.
  • Migration summary lists determinism choices and "needs human review" items.

Common mistakes to avoid

  • Copying v2 syntax (page.act(), stagehand.page, modelName/modelClientOptions, enableCaching) from old blog posts. Use v3 — see api-mapping "Version notes".
  • Translating every step into act() — navigate with page.goto and cache repeatable steps via observeact; don't spend an LLM call on every action.
  • Defaulting everything to agent() — that just reproduces browser-use's non-determinism in a new framework. Decompose where the flow is known.
  • Silently dropping allowed_domains — Stagehand has no domain firewall; flag it for review.
  • Inventing Browserbase/Stagehand options — if unsure of a field, check https://docs.stagehand.dev/v3 / https://docs.browserbase.com rather than guessing.

browserbase의 다른 스킬

browse
browserbase
browse CLI를 Browserbase 브라우저 자동화, Browserbase 클라우드 API, Browserbase Functions, 템플릿, 웹 fetch/search, 진단, Browse.sh 등에 사용하세요…
official
browser-automation
browserbase
MCP 도구를 사용하여 웹 브라우저 상호작용을 자동화합니다. 사용자가 웹사이트 탐색, 웹 페이지 이동, 웹사이트에서 데이터 추출, 스크린샷 촬영 등을 요청할 때 사용합니다,…
official
functions
browserbase
공식 Browserbase Functions CLI를 사용한 서버리스 브라우저 자동화 배포를 안내합니다. 사용자가 자동화를 배포하여 실행하려 할 때 사용하세요…
official
agent-experience
browserbase
제품, SDK, 문서 사이트 또는 SKILL.md의 개발자 경험을 감사하려면, 여러 Claude 하위 에이전트를 아주 작은 작업 프롬프트와 실제…
official
autobrowse
browserbase
자기 개선형 브라우저 자동화로, 자동 연구 루프를 통해 탐색 작업을 반복 실행하고, 추적 기록을 읽으며, 탐색 기술을 개선합니다…
official
browse
browserbase
browse CLI를 사용하여 브라우저 자동화 함수를 생성하고 배포하는 완벽 가이드
official
browser
browserbase
로컬 Chrome 또는 원격 Browserbase를 사용한 브라우저 자동화로 보호된 사이트, 봇 탐지, CAPTCHA를 처리합니다. 두 가지 모드: 로컬 Chrome(기본, 설정 불필요) 또는 원격 Browserbase(안티봇 스텔스, 자동 CAPTCHA 해결, 리지덴셜 프록시, 세션 유지). 핵심 명령어는 탐색, 페이지 검사, 상호작용(클릭, 입력, 채우기, 선택, 드래그), CLI를 통한 세션 관리를 포함합니다. browse snapshot을 사용하여 접근성 트리를 읽고 신뢰할 수 있는 상호작용을 위한 요소 참조를 얻습니다. 예약...
official
Browser Automation
browserbase
CLI 명령어를 통해 자연어로 웹 브라우저 상호작용을 자동화합니다. 사용자가 웹사이트 탐색, 웹 페이지 이동, 데이터 추출 등을 요청할 때 사용하세요.
official