pi-agent-browser-native 0.2.51 → 0.2.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,12 +14,14 @@ export const COMMAND_REFERENCE_BASELINE_BLOCK_IDS = Object.freeze(["upstream-bas
14
14
 
15
15
  const sourceEvidence = Object.freeze({
16
16
  repository: "vercel-labs/agent-browser",
17
- upstreamHead: "5185339ca3fdab9848e11b8ec676eecfdec3733f",
18
- upstreamPackageVersion: "0.27.2",
17
+ upstreamHead: "6323df571ffd17d14e60ec19fcb56cc1caf498ab",
18
+ upstreamPackageVersion: "0.28.0",
19
19
  inspectedSources: Object.freeze([
20
20
  "agent-browser --version",
21
21
  "agent-browser --help",
22
22
  "selected agent-browser <command> --help output",
23
+ "agent-browser mcp --help",
24
+ "agent-browser plugin --help",
23
25
  "README.md",
24
26
  "CHANGELOG.md",
25
27
  "agent-browser.schema.json",
@@ -91,6 +93,8 @@ const helpCommands = Object.freeze([
91
93
  helpCommand("install help", ["install", "--help"]),
92
94
  helpCommand("upgrade help", ["upgrade", "--help"]),
93
95
  helpCommand("profiles help", ["profiles", "--help"]),
96
+ helpCommand("mcp help", ["mcp", "--help"]),
97
+ helpCommand("plugin help", ["plugin", "--help"]),
94
98
  ]);
95
99
 
96
100
  const inventorySections = Object.freeze([
@@ -459,6 +463,12 @@ const inventorySections = Object.freeze([
459
463
  "doctor [--fix]",
460
464
  "doctor --offline --quick",
461
465
  "doctor --json",
466
+ "mcp",
467
+ "plugin add <ref>",
468
+ "plugin [list]",
469
+ "plugin show <name>",
470
+ "plugin run <name> <type>",
471
+ "auth login <name> --credential-provider <plugin>",
462
472
  "profiles",
463
473
  ],
464
474
  [
@@ -486,6 +496,16 @@ const inventorySections = Object.freeze([
486
496
  ["chat help", "chat <message>"],
487
497
  ["doctor help", "--offline"],
488
498
  ["doctor help", "--json"],
499
+ root("Start an MCP stdio server"),
500
+ root("plugin add <ref>"),
501
+ root("plugin [list]"),
502
+ root("plugin show <name>"),
503
+ root("plugin run <name> <type>"),
504
+ ["auth help", "--credential-provider <p>"],
505
+ ["mcp help", "agent_browser_open"],
506
+ ["mcp help", "--tools"],
507
+ ["plugin help", "Add a plugin from npm or GitHub"],
508
+ ["plugin help", "credential.read"],
489
509
  ],
490
510
  ),
491
511
  section(
@@ -562,6 +582,7 @@ const inventorySections = Object.freeze([
562
582
  "AGENT_BROWSER_CONFIRM_INTERACTIVE",
563
583
  "-p, --provider <name>",
564
584
  "AGENT_BROWSER_PROVIDER",
585
+ "AGENT_BROWSER_PLUGINS",
565
586
  "browserbase",
566
587
  "kernel",
567
588
  "browseruse",
@@ -683,6 +704,7 @@ const inventorySections = Object.freeze([
683
704
  root("AGENT_BROWSER_CONFIRM_INTERACTIVE"),
684
705
  root("--provider <name>"),
685
706
  root("AGENT_BROWSER_PROVIDER"),
707
+ root("AGENT_BROWSER_PLUGINS"),
686
708
  root("agent-browser -p ios device list"),
687
709
  root("agent-browser -p ios swipe up"),
688
710
  root("agent-browser -p ios tap @e1"),
@@ -709,7 +731,7 @@ const inventorySections = Object.freeze([
709
731
  ]);
710
732
 
711
733
  export const CAPABILITY_BASELINE = Object.freeze({
712
- targetVersion: "0.27.2",
734
+ targetVersion: "0.28.0",
713
735
  sourceEvidence,
714
736
  helpCommands,
715
737
  inventorySections,
@@ -92,8 +92,14 @@ Write-Output "PLATFORM_TSX_CLI=$TsxCli"
92
92
  $DogfoodStdout = Join-Path $DogfoodDir "dogfood.stdout.txt"
93
93
  $DogfoodStderr = Join-Path $DogfoodDir "dogfood.stderr.txt"
94
94
  if ($NpmCiExit -eq 0 -and $AgentBrowserExit -eq 0 -and $BrowserCacheExit -eq 0 -and $BrowserPrewarmExit -eq 0) {
95
- & $TsxCli "scripts/verify-agent-browser-dogfood.ts" --artifact-dir $DogfoodArtifactDir --json >$DogfoodStdout 2>$DogfoodStderr
96
- $DogfoodExit = $LASTEXITCODE
95
+ $DogfoodExit = 1
96
+ for ($Attempt = 1; $Attempt -le 2; $Attempt++) {
97
+ Write-Output "PLATFORM_DOGFOOD_ATTEMPT=$Attempt"
98
+ if ($Attempt -gt 1) { Start-Sleep -Seconds 2 }
99
+ & $TsxCli "scripts/verify-agent-browser-dogfood.ts" --artifact-dir $DogfoodArtifactDir --json >$DogfoodStdout 2>$DogfoodStderr
100
+ $DogfoodExit = $LASTEXITCODE
101
+ if ($DogfoodExit -eq 0) { break }
102
+ }
97
103
  } else {
98
104
  "npm ci or agent-browser setup failed" | Set-Content $DogfoodStderr
99
105
  $DogfoodExit = 1
@@ -62,7 +62,7 @@ Environment:
62
62
  PLATFORM_SMOKE_MAC_USER macOS SSH user; default $USER
63
63
  PLATFORM_SMOKE_MAC_WORK_ROOT macOS Crabbox work root
64
64
  PLATFORM_SMOKE_MAC_PORT macOS SSH port; default 22
65
- PLATFORM_SMOKE_UBUNTU_IMAGE Ubuntu local-container image; default pi-agent-browser-native-platform:node24-agent-browser0.27.2
65
+ PLATFORM_SMOKE_UBUNTU_IMAGE Ubuntu local-container image; default pi-agent-browser-native-platform:node24-agent-browser0.27.3
66
66
  PLATFORM_SMOKE_WINDOWS_VM Parallels Windows template VM
67
67
  PLATFORM_SMOKE_WINDOWS_SNAPSHOT Parallels snapshot name
68
68
  PLATFORM_SMOKE_WINDOWS_USER Windows SSH user