A Pi extension that lets coding agents drive real browser sessions with a native agent_browser tool instead of brittle shell commands.
It is for Pi users who want agents to browse sites, inspect pages, click through flows, capture screenshots, use persistent profiles, and handle authenticated web apps without spending context on agent-browser CLI ceremony.
You prompt the agent in plain English:
Use the agent_browser tool to open https://react.dev and then take an interactive snapshot.
The agent gets a native tool, not a bash workaround:
{ "args": ["open", "https://react.dev"] }
{ "args": ["snapshot", "-i"] }
{ "semanticAction": { "action": "click", "locator": "text", "value": "Learn React" } }The last form compiles to upstream find argv; see docs/TOOL_CONTRACT.md for the full field rules and for using raw args when you need anything outside that shorthand.
The result is optimized for agent work:
- compact page snapshots that lead with useful page content instead of chrome/sidebar noise
- interactive
@eNrefs for follow-up clicks and form fills - screenshots and downloaded files surfaced as Pi artifacts
- structured details for titles, URLs, saved files, sessions, and errors
- spill files for oversized raw output instead of dumping pages into context
- compact, colorized Pi TUI rows that can be expanded without changing what the agent receives
- recovery hints when a tab, selector, stale
@ref, or launch mode needs a different next step
- Pi users who want browser automation available as a normal tool beside
read,write, andbash. - Coding agents that need low-context browser workflows for docs, QA, research, dashboards, and web apps.
- Maintainers who want a thin integration that tracks the current upstream
agent-browserCLI without bundling or re-implementing it.
agent-browser is powerful, but plain CLI use is awkward inside an agent harness:
- shell strings are easy for agents to quote wrong
- large page snapshots can waste model context
- screenshots and downloads need artifact metadata, not just text paths
- implicit browser sessions need predictable reuse and cleanup
- profile/debug launches need a clear way to start fresh after public browsing
- secrets and auth material must not be echoed into model-visible output
- stale element refs need actionable recovery guidance, not generic failures
pi-agent-browser-native keeps upstream agent-browser as the browser engine and adds the Pi-native wrapper behavior needed for reliable agent use.
| Pain | Native wrapper capability | Proof surface |
|---|---|---|
| Agents build fragile shell commands | Exposes agent_browser with exact args or an optional semanticAction shorthand for common find flows, plus controlled stdin and sessionMode |
extensions/agent-browser/index.ts, docs/TOOL_CONTRACT.md |
| Page snapshots are too large | Shows compact, main-content-first summaries and stores full raw output in spill files when needed | test/agent-browser.presentation.test.ts |
| Screenshots/downloads get lost in text | Normalizes artifact paths and reports existence, size, cwd, session, and repair status | docs/COMMAND_REFERENCE.md |
| Profile restores and tab drift confuse agents | Tracks managed sessions, pins intended tabs, and re-selects target tabs after drift | generated tab-recovery notes below; test/agent-browser.resume-state.test.ts |
| Auth/profile workflows can leak secrets | Supports auth save --password-stdin and redacts sensitive args, URLs, stdout/stderr, details, and parse-failure spills |
test/agent-browser.extension-validation.test.ts |
Stale @eN refs fail mysteriously |
Adds recovery guidance to rerun snapshot -i or use stable find locators |
test/agent-browser.results.test.ts |
| Agents need stable success/failure buckets | Exposes bounded resultCategory, successCategory, and failureCategory on tool details for branching without parsing prose |
docs/TOOL_CONTRACT.md, extensions/agent-browser/lib/results/shared.ts, test/agent-browser.results.test.ts |
| Models re-snapshot after every click without new URL/title context | Adds optional details.pageChangeSummary (and per-batch-step summaries) with changeType, compact text, optional title/url, artifact hints, and nextActionIds aligned to nextActions |
docs/TOOL_CONTRACT.md, extensions/agent-browser/lib/results/presentation.ts, test/agent-browser.presentation.test.ts |
| Direct binary help may be blocked in agent sessions | Publishes a repo-readable command reference and verifies it against the target upstream version | npm run verify |
Agents need bundled skills text without touching the live session |
Treats skills list, skills get …, and skills path … as stateless JSON reads: no implicit managed --session under default sessionMode: "auto" (same session-ownership goal as plain-text --help / --version) |
docs/COMMAND_REFERENCE.md, extensions/agent-browser/lib/runtime.ts |
Install upstream agent-browser first and make sure it is on PATH:
Then install this Pi package:
pi install npm:pi-agent-browser-nativeStart Pi and ask for a browser action:
Use the agent_browser tool to open https://example.com and then take an interactive snapshot.
For a one-off trial that does not touch your configured Pi extensions:
pi --no-extensions -e npm:pi-agent-browser-nativeFor a specific published version:
pi --no-extensions -e npm:pi-agent-browser-native@<version>To install directly from source instead of npm:
pi install https://github.com/fitchmultz/pi-agent-browser-nativeFor a temporary source trial, keep it isolated from your normal package sources:
pi --no-extensions -e https://github.com/fitchmultz/pi-agent-browser-nativeRun the read-only doctor when installing, upgrading, or debugging missing/duplicated tools:
pi-agent-browser-doctor
# one-off without permanent install:
npm exec --package pi-agent-browser-native -- pi-agent-browser-doctor
# from this checkout:
npm run doctorThe doctor checks:
- upstream
agent-browserexists onPATH - the installed upstream version matches this wrapper's command-reference baseline
- Pi settings do not point at multiple active
pi-agent-browser-nativesources
It does not edit Pi settings and does not run upstream agent-browser doctor --fix.
You usually prompt the agent in natural language. These JSON snippets show the exact native tool shape the agent should use.
Open a page and inspect it:
{ "args": ["open", "https://example.com"] }
{ "args": ["snapshot", "-i"] }Click a visible ref, then refresh refs after navigation or a DOM update:
{ "args": ["click", "@e2"] }
{ "args": ["snapshot", "-i"] }Run a multi-step flow in one tool call:
{ "args": ["batch"], "stdin": "[[\"open\",\"https://example.com\"],[\"snapshot\",\"-i\"]]" }Evaluate page JavaScript through stdin:
{ "args": ["eval", "--stdin"], "stdin": "document.title" }Save an auth profile without putting the password in args:
{ "args": ["auth", "save", "demo", "--password-stdin"], "stdin": "<password>" }Download a file from a known link or control:
{ "args": ["download", "@e5", "/tmp/report.pdf"] }For supported upstream find flows you can omit hand-built args and pass a top-level semanticAction object instead. The wrapper compiles it to the same find argv upstream already understands; compiled argv is echoed as details.compiledSemanticAction when the unified result includes that field. Full field rules live in docs/TOOL_CONTRACT.md#semanticaction.
{ "semanticAction": { "action": "click", "locator": "text", "value": "Submit" } }
{ "semanticAction": { "action": "fill", "locator": "label", "value": "Email", "text": "user@example.com" } }Typical pitfalls:
- Supply exactly one of
argsorsemanticActionper call (not both, not neither). semanticActionis not valid insidebatchstdin; batch steps stay upstream argv string arrays (spell afindstep as tokens there if you need it in a batch).- Commands or locators outside the supported shorthand still require explicit
args. - If upstream classifies the failure as
stale-refanddetails.compiledSemanticActionis present,details.nextActionsmay listretry-semantic-action-after-stale-refafterrefresh-interactive-refs, carrying the same compiledfindargv so you can retry the locator-stable target once it is safe to do so (contract indocs/TOOL_CONTRACT.md#semanticaction).
For asynchronous exports, click first and then wait for the download:
{ "args": ["click", "@export"] }
{ "args": ["wait", "--download", "/tmp/report.csv"] }With upstream agent-browser 0.27.0, treat details.savedFilePath as upstream-reported metadata and confirm details.artifacts[].exists before relying on the requested wait --download <path> file being present on disk.
Start a fresh profiled browser after the implicit public-browsing session already exists:
{ "args": ["--profile", "Default", "open", "https://example.com/account"], "sessionMode": "fresh" }After a successful unnamed fresh launch, later default sessionMode: "auto" calls follow that browser automatically.
The wrapper does not clone profiles or hide what upstream Chrome profile you chose. Passing --profile is an explicit upstream agent-browser choice.
Use these rules:
- Use public/temp profiles for tests and examples.
- Use
sessionMode: "fresh"when switching from public browsing to--profile,--session-name,--cdp,--state,--auto-connect,--init-script, or--enable. - Use
--sessionwhen you want to manage a live upstream session name yourself. - Do not treat
--sessionas persisted auth or tab restore afterclose; use--profile,--session-name, or--statefor persistence. - Prefer page actions and storage checks over cookie dumps.
cookies getcan expose real profile cookies. - Prefer
auth save --password-stdinover putting passwords inargs.
Example explicit session plus profile launch:
{
"args": ["--session", "auth-flow", "--profile", "Default", "open", "https://example.com/account"]
}React and SPA tooling from upstream agent-browser is passed through directly.
Launch React introspection before first navigation:
{ "args": ["open", "--enable", "react-devtools", "https://example.com"], "sessionMode": "fresh" }
{ "args": ["react", "tree"] }
{ "args": ["react", "inspect", "<fiberId>"] }
{ "args": ["react", "renders", "start"] }
{ "args": ["react", "renders", "stop"] }
{ "args": ["react", "suspense", "--only-dynamic"] }Use SPA and Web Vitals helpers as normal command tokens:
{ "args": ["pushstate", "/dashboard"] }
{ "args": ["vitals", "https://example.com", "--json"] }For setup that must happen before first navigation, open a blank fresh page, stage routes/cookies/scripts, then navigate:
{ "args": ["open"], "sessionMode": "fresh" }
{ "args": ["network", "route", "**/*.js", "--abort", "--resource-type", "script"] }
{ "args": ["cookies", "set", "--curl", "/path/to/cookies.txt", "--domain", "example.com"] }
{ "args": ["navigate", "https://example.com"] }npm run docs checks that generated playbook fragments and command-reference baseline blocks match their canonical sources (extensions/agent-browser/lib/playbook.ts and scripts/agent-browser-capability-baseline.mjs) without invoking upstream agent-browser.
The local verification gate is:
npm run verifyIt runs:
- generated playbook/documentation drift checks
tsc --noEmit- the test suite
- command-reference baseline checks
- live command-reference verification against the targeted installed upstream
agent-browser
The deterministic agent-efficiency benchmark’s standalone JSON/Markdown accounting run is not part of default npm run verify (only npm run verify -- benchmark or npm run benchmark:agent-browser invokes the script). The full unit suite still exercises test/agent-browser.efficiency-benchmark.test.ts. Use the script before and after agent-facing abstractions to prove call-count, output-size, stale-ref, artifact, failure-category coverage, success-rate, and elapsed-time effects before changing the wrapper UX:
npm run benchmark:agent-browser
npm run verify -- benchmarkSave a JSON baseline (for example before changing playbook or wrapper behavior), then compare later runs: npm run benchmark:agent-browser -- --json > /tmp/agent-browser-benchmark.json and npm run benchmark:agent-browser -- --compare /tmp/agent-browser-benchmark.json.
It does not launch a browser or mutate local profiles; it models representative raw workflows and provides a stable baseline for later comparisons.
The opt-in real-upstream suite is separate because it drives a real browser installation:
npm run verify -- real-upstreamThat mode sets PI_AGENT_BROWSER_REAL_UPSTREAM=1 and runs test/agent-browser.real-upstream-contract.test.ts against the real agent-browser on PATH (version must match the capability baseline). It covers inspection, skills, a broad core interaction and navigation matrix on localhost fixtures (including batch stdin and pushstate), plus vitals, network route, cookies set --curl, a react tree missing-renderer path, and wait --download with the on-disk caveat documented in release notes. The harness uses a throwaway temp HOME and dedicated socket/screenshot directories so the run does not touch your normal browser profile paths. For prerequisites, isolation details, and troubleshooting, see docs/RELEASE.md.
For package release confidence, follow docs/RELEASE.md. The release gate is:
npm run doctor
npm run verify -- releasenpm run verify -- release includes the default verification gate plus packaged Pi smoke coverage. The package also has a prepublishOnly hook that runs default verification and npm pack --dry-run during npm publish.
pi-agent-browser-native is intentionally thin:
- Pi loads
extensions/agent-browser/index.tsfrom the package manifest. - The extension registers one native tool named
agent_browser. - Tool calls are translated into upstream
agent-browserCLI invocations with controlled args, stdin, environment, timeout, and session planning. - Upstream JSON/plain-text output is parsed into model-friendly content and structured details.
- Screenshots, downloads, recordings, traces, profiles, and spill files are normalized as Pi-visible artifacts where possible.
- Generated playbook text in docs and tool metadata stays aligned with
extensions/agent-browser/lib/playbook.ts.
The upstream browser engine remains agent-browser. This package does not bundle it and does not maintain compatibility shims for old upstream versions.
- Published pre-1.0 package.
- Targets the current locally installed upstream
agent-browserversion only. - Does not bundle
agent-browser; users install it separately. - Does not provide a human browser UI inside Pi; the primary UX is agent-invoked tool calls.
- Real authenticated profile use is powerful but sensitive. Treat profile and cookie access as user-approved, task-specific behavior.
- Wrapper tab/session recovery is best effort around observed upstream behavior, not a replacement for explicit profile/session design.
Install upstream agent-browser, then install dependencies:
npm installQuick isolated checkout smoke test:
pi --no-extensions -e .This bypasses Pi settings and configured extensions. After editing extension code, restart that Pi process to test the new checkout.
Configured-source lifecycle validation:
npm run verify -- lifecycleUse lifecycle validation when testing /reload, full restart, /resume, managed-session continuity, or persisted artifact behavior.
Installed-package validation after publish:
npm run verify -- package-pi
pi --no-extensions -e npm:pi-agent-browser-native@<version>These sections are generated from extensions/agent-browser/lib/playbook.ts. Run npm run docs -- playbook write after changing the canonical playbook source.
Native inspection calls use the agent_browser tool shape, not shell-like direct-binary commands:
- { "args": ["--help"] }
- { "args": ["--version"] }
These calls return plain text and stay stateless: the extension does not inject its implicit session and does not let inspection consume the managed-session slot needed for later profile, session, CDP, state, or auto-connect launches.
- After launch-scoped open/goto/navigate calls that can restore existing tabs (for example --profile, --session-name, or --state), agent_browser best-effort re-selects the tab whose URL matches the returned page when restored tabs steal focus during launch.
- After a target tab is known for a session, later active-tab commands best-effort pin that tab inside the same upstream invocation when reconnect drift would otherwise move the command to a restored/background tab.
- After a successful command on a known target tab, agent_browser also best-effort restores that intended tab if a restored/background tab steals focus after the command completes.
- If a known session target unexpectedly reports about:blank, agent_browser preserves the prior intended target, best-effort re-selects it when it still exists, and reports exact recovery guidance when it cannot be re-selected.
| Path | Purpose |
|---|---|
extensions/agent-browser/index.ts |
Pi extension entrypoint and native tool wrapper |
extensions/agent-browser/lib/runtime.ts |
Argv parsing, session planning, redaction, and execution-plan helpers (pure planning; subprocess wiring lives beside the entrypoint) |
extensions/agent-browser/lib/results/ |
Model-facing result rendering and error guidance |
extensions/agent-browser/lib/playbook.ts |
Canonical generated agent/browser guidance |
scripts/agent-browser-capability-baseline.mjs |
Target upstream version, help samples, and doc/token inventory for drift checks |
scripts/check-command-reference-baseline.mjs |
Regenerates or verifies HTML-bounded baseline blocks in docs/COMMAND_REFERENCE.md (via npm run docs -- command-reference …) |
docs/COMMAND_REFERENCE.md |
Repo-readable native command reference |
docs/TOOL_CONTRACT.md |
Tool parameters, result shape, and behavior contract |
docs/ARCHITECTURE.md |
Design decisions and implementation structure |
docs/REQUIREMENTS.md |
Product requirements and constraints |
docs/RELEASE.md |
Release, package, and lifecycle verification workflow |
test/ |
Wrapper, runtime, presentation, lifecycle, and package tests |
AGENTS.md— maintainer and agent runbooks, including upstream capability baseline rebaselining and Pi smoke testing intmuxdocs/COMMAND_REFERENCE.md— full native command reference and upstream capability baselinedocs/TOOL_CONTRACT.md— exact tool contractdocs/ARCHITECTURE.md— how the wrapper is designeddocs/REQUIREMENTS.md— product constraints and non-goalsdocs/RELEASE.md— maintainer release workflow
If you are a user, install the package and ask Pi to open a public page with agent_browser.
If you are evaluating the implementation, read extensions/agent-browser/index.ts, then run npm run verify.