browse 0.7.0 → 0.7.1

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.
@@ -3476,14 +3476,48 @@
3476
3476
  "browse skills find yelp",
3477
3477
  "browse skills find reviews",
3478
3478
  "browse skills find yelp.com/extract-reviews",
3479
+ "browse skills find travel --limit 5",
3479
3480
  "browse skills find \"restaurant reviews\" --json"
3480
3481
  ],
3481
3482
  "flags": {
3483
+ "format": {
3484
+ "description": "Output format. Defaults to table in a terminal and JSON when piped.",
3485
+ "name": "format",
3486
+ "hasDynamicHelp": false,
3487
+ "helpValue": "<format>",
3488
+ "multiple": false,
3489
+ "options": [
3490
+ "table",
3491
+ "json"
3492
+ ],
3493
+ "type": "option"
3494
+ },
3482
3495
  "json": {
3483
- "description": "Print matching skills as JSON.",
3496
+ "description": "Print raw JSON output.",
3484
3497
  "name": "json",
3485
3498
  "allowNo": false,
3486
3499
  "type": "boolean"
3500
+ },
3501
+ "wide": {
3502
+ "description": "Show full table values without truncation.",
3503
+ "name": "wide",
3504
+ "allowNo": false,
3505
+ "type": "boolean"
3506
+ },
3507
+ "all": {
3508
+ "description": "Show all matching skills in table output.",
3509
+ "name": "all",
3510
+ "allowNo": false,
3511
+ "type": "boolean"
3512
+ },
3513
+ "limit": {
3514
+ "description": "Maximum matching skills to show in table output.",
3515
+ "name": "limit",
3516
+ "default": 25,
3517
+ "hasDynamicHelp": false,
3518
+ "helpValue": "<count>",
3519
+ "multiple": false,
3520
+ "type": "option"
3487
3521
  }
3488
3522
  },
3489
3523
  "hasDynamicHelp": false,
@@ -3530,14 +3564,49 @@
3530
3564
  "description": "List Browse.sh catalog skills.",
3531
3565
  "examples": [
3532
3566
  "browse skills list",
3567
+ "browse skills list --limit 10",
3568
+ "browse skills list --all",
3533
3569
  "browse skills list --json"
3534
3570
  ],
3535
3571
  "flags": {
3572
+ "format": {
3573
+ "description": "Output format. Defaults to table in a terminal and JSON when piped.",
3574
+ "name": "format",
3575
+ "hasDynamicHelp": false,
3576
+ "helpValue": "<format>",
3577
+ "multiple": false,
3578
+ "options": [
3579
+ "table",
3580
+ "json"
3581
+ ],
3582
+ "type": "option"
3583
+ },
3536
3584
  "json": {
3537
- "description": "Print skills as JSON.",
3585
+ "description": "Print raw JSON output.",
3538
3586
  "name": "json",
3539
3587
  "allowNo": false,
3540
3588
  "type": "boolean"
3589
+ },
3590
+ "wide": {
3591
+ "description": "Show full table values without truncation.",
3592
+ "name": "wide",
3593
+ "allowNo": false,
3594
+ "type": "boolean"
3595
+ },
3596
+ "all": {
3597
+ "description": "Show all returned skills in table output.",
3598
+ "name": "all",
3599
+ "allowNo": false,
3600
+ "type": "boolean"
3601
+ },
3602
+ "limit": {
3603
+ "description": "Maximum skills to show in table output.",
3604
+ "name": "limit",
3605
+ "default": 25,
3606
+ "hasDynamicHelp": false,
3607
+ "helpValue": "<count>",
3608
+ "multiple": false,
3609
+ "type": "option"
3541
3610
  }
3542
3611
  },
3543
3612
  "hasDynamicHelp": false,
@@ -3555,82 +3624,106 @@
3555
3624
  "list.js"
3556
3625
  ]
3557
3626
  },
3558
- "tab:close": {
3627
+ "templates:clone": {
3559
3628
  "aliases": [],
3560
3629
  "args": {
3561
- "tab": {
3562
- "description": "Optional tab index or targetId. Prefer targetId from `browse tab list` when indices may change.",
3563
- "name": "tab",
3630
+ "slug": {
3631
+ "description": "Template slug.",
3632
+ "name": "slug",
3633
+ "required": true
3634
+ },
3635
+ "path": {
3636
+ "description": "Destination directory. Defaults to the template slug.",
3637
+ "name": "path",
3564
3638
  "required": false
3565
3639
  }
3566
3640
  },
3567
- "description": "Close a tab by index or targetId. Without an argument, closes the active tab. Prefer targetId for stability.",
3641
+ "description": "Scaffold a ready-to-run project from a Browserbase template.",
3568
3642
  "examples": [
3569
- "browse tab close",
3570
- "browse tab close 1",
3571
- "browse tab close <target-id>",
3572
- "browse tab close <target-id> --session research"
3643
+ "browse templates clone google-trends-keywords",
3644
+ "browse templates clone amazon-product-scraping --language python ./my-scraper",
3645
+ "browse templates clone dynamic-form-filling ./form-bot --language typescript"
3573
3646
  ],
3574
3647
  "flags": {
3575
- "auto-connect": {
3576
- "description": "Auto-discover and attach to a local browser with remote debugging enabled.",
3577
- "name": "auto-connect",
3648
+ "json": {
3649
+ "description": "Print clone result as JSON.",
3650
+ "name": "json",
3578
3651
  "allowNo": false,
3579
3652
  "type": "boolean"
3580
3653
  },
3581
- "cdp": {
3582
- "description": "Attach directly to a CDP endpoint. Accepts a port, http(s) URL, or ws(s) URL.",
3583
- "name": "cdp",
3654
+ "language": {
3655
+ "description": "Template language. Defaults to TypeScript when available, then Python.",
3656
+ "name": "language",
3584
3657
  "hasDynamicHelp": false,
3585
- "helpValue": "<url|port>",
3658
+ "helpValue": "<language>",
3586
3659
  "multiple": false,
3660
+ "options": [
3661
+ "typescript",
3662
+ "python"
3663
+ ],
3664
+ "type": "option"
3665
+ }
3666
+ },
3667
+ "hasDynamicHelp": false,
3668
+ "hiddenAliases": [],
3669
+ "id": "templates:clone",
3670
+ "pluginAlias": "browse",
3671
+ "pluginName": "browse",
3672
+ "pluginType": "core",
3673
+ "strict": true,
3674
+ "isESM": true,
3675
+ "relativePath": [
3676
+ "dist",
3677
+ "commands",
3678
+ "templates",
3679
+ "clone.js"
3680
+ ]
3681
+ },
3682
+ "templates:find": {
3683
+ "aliases": [],
3684
+ "args": {
3685
+ "query": {
3686
+ "description": "Template slug or search query.",
3687
+ "name": "query",
3688
+ "required": true
3689
+ }
3690
+ },
3691
+ "description": "Find Browserbase templates by slug, title, category, or tag.",
3692
+ "examples": [
3693
+ "browse templates find google-trends-keywords",
3694
+ "browse templates find amazon",
3695
+ "browse templates find Python --wide",
3696
+ "browse templates find Python --json"
3697
+ ],
3698
+ "flags": {
3699
+ "format": {
3700
+ "description": "Output format. Defaults to table in a terminal and JSON when piped.",
3701
+ "name": "format",
3702
+ "hasDynamicHelp": false,
3703
+ "helpValue": "<format>",
3704
+ "multiple": false,
3705
+ "options": [
3706
+ "table",
3707
+ "json"
3708
+ ],
3587
3709
  "type": "option"
3588
3710
  },
3589
- "headed": {
3590
- "description": "Show a visible browser window for managed local sessions.",
3591
- "name": "headed",
3592
- "allowNo": false,
3593
- "type": "boolean"
3594
- },
3595
- "headless": {
3596
- "description": "Run managed local sessions in headless mode.",
3597
- "name": "headless",
3598
- "allowNo": false,
3599
- "type": "boolean"
3600
- },
3601
- "local": {
3602
- "description": "Use a managed local browser session.",
3603
- "name": "local",
3711
+ "json": {
3712
+ "description": "Print raw JSON output.",
3713
+ "name": "json",
3604
3714
  "allowNo": false,
3605
3715
  "type": "boolean"
3606
3716
  },
3607
- "remote": {
3608
- "description": "Use a remote Browserbase browser session.",
3609
- "name": "remote",
3717
+ "wide": {
3718
+ "description": "Show full table values without truncation.",
3719
+ "name": "wide",
3610
3720
  "allowNo": false,
3611
3721
  "type": "boolean"
3612
- },
3613
- "session": {
3614
- "char": "s",
3615
- "description": "Named browser session to use. Defaults to BROWSE_SESSION or default.",
3616
- "name": "session",
3617
- "hasDynamicHelp": false,
3618
- "helpValue": "<name>",
3619
- "multiple": false,
3620
- "type": "option"
3621
- },
3622
- "target-id": {
3623
- "description": "Select a specific CDP target when attaching to an existing browser.",
3624
- "name": "target-id",
3625
- "hasDynamicHelp": false,
3626
- "helpValue": "<target-id>",
3627
- "multiple": false,
3628
- "type": "option"
3629
3722
  }
3630
3723
  },
3631
3724
  "hasDynamicHelp": false,
3632
3725
  "hiddenAliases": [],
3633
- "id": "tab:close",
3726
+ "id": "templates:find",
3634
3727
  "pluginAlias": "browse",
3635
3728
  "pluginName": "browse",
3636
3729
  "pluginType": "core",
@@ -3639,78 +3732,74 @@
3639
3732
  "relativePath": [
3640
3733
  "dist",
3641
3734
  "commands",
3642
- "tab",
3643
- "close.js"
3735
+ "templates",
3736
+ "find.js"
3644
3737
  ]
3645
3738
  },
3646
- "tab:list": {
3739
+ "templates:list": {
3647
3740
  "aliases": [],
3648
3741
  "args": {},
3649
- "description": "List tabs in the active browser session, including stable targetIds.",
3742
+ "description": "List Browserbase templates.",
3650
3743
  "examples": [
3651
- "browse tab list",
3652
- "browse tab list --session research"
3744
+ "browse templates list",
3745
+ "browse templates list --category \"Web Automation\"",
3746
+ "browse templates list --tag Python --source Browserbase",
3747
+ "browse templates list --wide",
3748
+ "browse templates list --json"
3653
3749
  ],
3654
3750
  "flags": {
3655
- "auto-connect": {
3656
- "description": "Auto-discover and attach to a local browser with remote debugging enabled.",
3657
- "name": "auto-connect",
3658
- "allowNo": false,
3659
- "type": "boolean"
3660
- },
3661
- "cdp": {
3662
- "description": "Attach directly to a CDP endpoint. Accepts a port, http(s) URL, or ws(s) URL.",
3663
- "name": "cdp",
3751
+ "format": {
3752
+ "description": "Output format. Defaults to table in a terminal and JSON when piped.",
3753
+ "name": "format",
3664
3754
  "hasDynamicHelp": false,
3665
- "helpValue": "<url|port>",
3755
+ "helpValue": "<format>",
3666
3756
  "multiple": false,
3757
+ "options": [
3758
+ "table",
3759
+ "json"
3760
+ ],
3667
3761
  "type": "option"
3668
3762
  },
3669
- "headed": {
3670
- "description": "Show a visible browser window for managed local sessions.",
3671
- "name": "headed",
3672
- "allowNo": false,
3673
- "type": "boolean"
3674
- },
3675
- "headless": {
3676
- "description": "Run managed local sessions in headless mode.",
3677
- "name": "headless",
3763
+ "json": {
3764
+ "description": "Print raw JSON output.",
3765
+ "name": "json",
3678
3766
  "allowNo": false,
3679
3767
  "type": "boolean"
3680
3768
  },
3681
- "local": {
3682
- "description": "Use a managed local browser session.",
3683
- "name": "local",
3769
+ "wide": {
3770
+ "description": "Show full table values without truncation.",
3771
+ "name": "wide",
3684
3772
  "allowNo": false,
3685
3773
  "type": "boolean"
3686
3774
  },
3687
- "remote": {
3688
- "description": "Use a remote Browserbase browser session.",
3689
- "name": "remote",
3690
- "allowNo": false,
3691
- "type": "boolean"
3775
+ "category": {
3776
+ "description": "Filter templates by category.",
3777
+ "name": "category",
3778
+ "hasDynamicHelp": false,
3779
+ "helpValue": "<category>",
3780
+ "multiple": false,
3781
+ "type": "option"
3692
3782
  },
3693
- "session": {
3694
- "char": "s",
3695
- "description": "Named browser session to use. Defaults to BROWSE_SESSION or default.",
3696
- "name": "session",
3783
+ "source": {
3784
+ "description": "Filter templates by source.",
3785
+ "name": "source",
3697
3786
  "hasDynamicHelp": false,
3698
- "helpValue": "<name>",
3787
+ "helpValue": "<source>",
3699
3788
  "multiple": false,
3700
3789
  "type": "option"
3701
3790
  },
3702
- "target-id": {
3703
- "description": "Select a specific CDP target when attaching to an existing browser.",
3704
- "name": "target-id",
3791
+ "tag": {
3792
+ "description": "Filter templates by tag.",
3793
+ "name": "tag",
3705
3794
  "hasDynamicHelp": false,
3706
- "helpValue": "<target-id>",
3795
+ "helpValue": "<tag>",
3707
3796
  "multiple": false,
3708
3797
  "type": "option"
3709
3798
  }
3710
3799
  },
3711
3800
  "hasDynamicHelp": false,
3712
3801
  "hiddenAliases": [],
3713
- "id": "tab:list",
3802
+ "id": "templates:list",
3714
3803
  "pluginAlias": "browse",
3715
3804
  "pluginName": "browse",
3716
3805
  "pluginType": "core",
@@ -3719,24 +3808,25 @@
3719
3808
  "relativePath": [
3720
3809
  "dist",
3721
3810
  "commands",
3722
- "tab",
3811
+ "templates",
3723
3812
  "list.js"
3724
3813
  ]
3725
3814
  },
3726
- "tab:new": {
3815
+ "tab:close": {
3727
3816
  "aliases": [],
3728
3817
  "args": {
3729
- "url": {
3730
- "description": "Optional URL to open in the new tab.",
3731
- "name": "url",
3818
+ "tab": {
3819
+ "description": "Optional tab index or targetId. Prefer targetId from `browse tab list` when indices may change.",
3820
+ "name": "tab",
3732
3821
  "required": false
3733
3822
  }
3734
3823
  },
3735
- "description": "Open a new tab and make it active.",
3824
+ "description": "Close a tab by index or targetId. Without an argument, closes the active tab. Prefer targetId for stability.",
3736
3825
  "examples": [
3737
- "browse tab new",
3738
- "browse tab new https://example.com",
3739
- "browse tab new https://example.com --session research"
3826
+ "browse tab close",
3827
+ "browse tab close 1",
3828
+ "browse tab close <target-id>",
3829
+ "browse tab close <target-id> --session research"
3740
3830
  ],
3741
3831
  "flags": {
3742
3832
  "auto-connect": {
@@ -3797,7 +3887,7 @@
3797
3887
  },
3798
3888
  "hasDynamicHelp": false,
3799
3889
  "hiddenAliases": [],
3800
- "id": "tab:new",
3890
+ "id": "tab:close",
3801
3891
  "pluginAlias": "browse",
3802
3892
  "pluginName": "browse",
3803
3893
  "pluginType": "core",
@@ -3807,24 +3897,16 @@
3807
3897
  "dist",
3808
3898
  "commands",
3809
3899
  "tab",
3810
- "new.js"
3900
+ "close.js"
3811
3901
  ]
3812
3902
  },
3813
- "tab:switch": {
3903
+ "tab:list": {
3814
3904
  "aliases": [],
3815
- "args": {
3816
- "tab": {
3817
- "description": "Tab index or targetId. Prefer targetId from `browse tab list` when indices may change.",
3818
- "name": "tab",
3819
- "required": true
3820
- }
3821
- },
3822
- "description": "Switch the active tab by index or targetId. Prefer targetId from `browse tab list` for stable agent workflows.",
3905
+ "args": {},
3906
+ "description": "List tabs in the active browser session, including stable targetIds.",
3823
3907
  "examples": [
3824
3908
  "browse tab list",
3825
- "browse tab switch 1",
3826
- "browse tab switch <target-id>",
3827
- "browse tab switch <target-id> --session research"
3909
+ "browse tab list --session research"
3828
3910
  ],
3829
3911
  "flags": {
3830
3912
  "auto-connect": {
@@ -3885,7 +3967,7 @@
3885
3967
  },
3886
3968
  "hasDynamicHelp": false,
3887
3969
  "hiddenAliases": [],
3888
- "id": "tab:switch",
3970
+ "id": "tab:list",
3889
3971
  "pluginAlias": "browse",
3890
3972
  "pluginName": "browse",
3891
3973
  "pluginType": "core",
@@ -3895,90 +3977,84 @@
3895
3977
  "dist",
3896
3978
  "commands",
3897
3979
  "tab",
3898
- "switch.js"
3980
+ "list.js"
3899
3981
  ]
3900
3982
  },
3901
- "templates:clone": {
3983
+ "tab:new": {
3902
3984
  "aliases": [],
3903
3985
  "args": {
3904
- "slug": {
3905
- "description": "Template slug.",
3906
- "name": "slug",
3907
- "required": true
3908
- },
3909
- "path": {
3910
- "description": "Destination directory. Defaults to the template slug.",
3911
- "name": "path",
3986
+ "url": {
3987
+ "description": "Optional URL to open in the new tab.",
3988
+ "name": "url",
3912
3989
  "required": false
3913
3990
  }
3914
3991
  },
3915
- "description": "Scaffold a ready-to-run project from a Browserbase template.",
3992
+ "description": "Open a new tab and make it active.",
3916
3993
  "examples": [
3917
- "browse templates clone google-trends-keywords",
3918
- "browse templates clone amazon-product-scraping --language python ./my-scraper",
3919
- "browse templates clone dynamic-form-filling ./form-bot --language typescript"
3994
+ "browse tab new",
3995
+ "browse tab new https://example.com",
3996
+ "browse tab new https://example.com --session research"
3920
3997
  ],
3921
3998
  "flags": {
3922
- "json": {
3923
- "description": "Print clone result as JSON.",
3924
- "name": "json",
3999
+ "auto-connect": {
4000
+ "description": "Auto-discover and attach to a local browser with remote debugging enabled.",
4001
+ "name": "auto-connect",
3925
4002
  "allowNo": false,
3926
4003
  "type": "boolean"
3927
4004
  },
3928
- "language": {
3929
- "description": "Template language. Defaults to TypeScript when available, then Python.",
3930
- "name": "language",
4005
+ "cdp": {
4006
+ "description": "Attach directly to a CDP endpoint. Accepts a port, http(s) URL, or ws(s) URL.",
4007
+ "name": "cdp",
3931
4008
  "hasDynamicHelp": false,
3932
- "helpValue": "<language>",
4009
+ "helpValue": "<url|port>",
3933
4010
  "multiple": false,
3934
- "options": [
3935
- "typescript",
3936
- "python"
3937
- ],
3938
4011
  "type": "option"
3939
- }
3940
- },
3941
- "hasDynamicHelp": false,
3942
- "hiddenAliases": [],
3943
- "id": "templates:clone",
3944
- "pluginAlias": "browse",
3945
- "pluginName": "browse",
3946
- "pluginType": "core",
3947
- "strict": true,
3948
- "isESM": true,
3949
- "relativePath": [
3950
- "dist",
3951
- "commands",
3952
- "templates",
3953
- "clone.js"
3954
- ]
3955
- },
3956
- "templates:find": {
3957
- "aliases": [],
3958
- "args": {
3959
- "query": {
3960
- "description": "Template slug or search query.",
3961
- "name": "query",
3962
- "required": true
3963
- }
3964
- },
3965
- "description": "Find Browserbase templates by slug, title, category, or tag.",
3966
- "examples": [
3967
- "browse templates find google-trends-keywords",
3968
- "browse templates find amazon",
3969
- "browse templates find Python --json"
3970
- ],
3971
- "flags": {
3972
- "json": {
3973
- "description": "Print matching templates as JSON.",
3974
- "name": "json",
4012
+ },
4013
+ "headed": {
4014
+ "description": "Show a visible browser window for managed local sessions.",
4015
+ "name": "headed",
3975
4016
  "allowNo": false,
3976
4017
  "type": "boolean"
4018
+ },
4019
+ "headless": {
4020
+ "description": "Run managed local sessions in headless mode.",
4021
+ "name": "headless",
4022
+ "allowNo": false,
4023
+ "type": "boolean"
4024
+ },
4025
+ "local": {
4026
+ "description": "Use a managed local browser session.",
4027
+ "name": "local",
4028
+ "allowNo": false,
4029
+ "type": "boolean"
4030
+ },
4031
+ "remote": {
4032
+ "description": "Use a remote Browserbase browser session.",
4033
+ "name": "remote",
4034
+ "allowNo": false,
4035
+ "type": "boolean"
4036
+ },
4037
+ "session": {
4038
+ "char": "s",
4039
+ "description": "Named browser session to use. Defaults to BROWSE_SESSION or default.",
4040
+ "name": "session",
4041
+ "hasDynamicHelp": false,
4042
+ "helpValue": "<name>",
4043
+ "multiple": false,
4044
+ "type": "option"
4045
+ },
4046
+ "target-id": {
4047
+ "description": "Select a specific CDP target when attaching to an existing browser.",
4048
+ "name": "target-id",
4049
+ "hasDynamicHelp": false,
4050
+ "helpValue": "<target-id>",
4051
+ "multiple": false,
4052
+ "type": "option"
3977
4053
  }
3978
4054
  },
3979
4055
  "hasDynamicHelp": false,
3980
4056
  "hiddenAliases": [],
3981
- "id": "templates:find",
4057
+ "id": "tab:new",
3982
4058
  "pluginAlias": "browse",
3983
4059
  "pluginName": "browse",
3984
4060
  "pluginType": "core",
@@ -3987,55 +4063,86 @@
3987
4063
  "relativePath": [
3988
4064
  "dist",
3989
4065
  "commands",
3990
- "templates",
3991
- "find.js"
4066
+ "tab",
4067
+ "new.js"
3992
4068
  ]
3993
4069
  },
3994
- "templates:list": {
4070
+ "tab:switch": {
3995
4071
  "aliases": [],
3996
- "args": {},
3997
- "description": "List Browserbase templates.",
4072
+ "args": {
4073
+ "tab": {
4074
+ "description": "Tab index or targetId. Prefer targetId from `browse tab list` when indices may change.",
4075
+ "name": "tab",
4076
+ "required": true
4077
+ }
4078
+ },
4079
+ "description": "Switch the active tab by index or targetId. Prefer targetId from `browse tab list` for stable agent workflows.",
3998
4080
  "examples": [
3999
- "browse templates list",
4000
- "browse templates list --category \"Web Automation\"",
4001
- "browse templates list --tag Python --source Browserbase",
4002
- "browse templates list --json"
4081
+ "browse tab list",
4082
+ "browse tab switch 1",
4083
+ "browse tab switch <target-id>",
4084
+ "browse tab switch <target-id> --session research"
4003
4085
  ],
4004
4086
  "flags": {
4005
- "category": {
4006
- "description": "Filter templates by category.",
4007
- "name": "category",
4087
+ "auto-connect": {
4088
+ "description": "Auto-discover and attach to a local browser with remote debugging enabled.",
4089
+ "name": "auto-connect",
4090
+ "allowNo": false,
4091
+ "type": "boolean"
4092
+ },
4093
+ "cdp": {
4094
+ "description": "Attach directly to a CDP endpoint. Accepts a port, http(s) URL, or ws(s) URL.",
4095
+ "name": "cdp",
4008
4096
  "hasDynamicHelp": false,
4009
- "helpValue": "<category>",
4097
+ "helpValue": "<url|port>",
4010
4098
  "multiple": false,
4011
4099
  "type": "option"
4012
4100
  },
4013
- "json": {
4014
- "description": "Print templates as JSON.",
4015
- "name": "json",
4101
+ "headed": {
4102
+ "description": "Show a visible browser window for managed local sessions.",
4103
+ "name": "headed",
4016
4104
  "allowNo": false,
4017
4105
  "type": "boolean"
4018
4106
  },
4019
- "source": {
4020
- "description": "Filter templates by source.",
4021
- "name": "source",
4107
+ "headless": {
4108
+ "description": "Run managed local sessions in headless mode.",
4109
+ "name": "headless",
4110
+ "allowNo": false,
4111
+ "type": "boolean"
4112
+ },
4113
+ "local": {
4114
+ "description": "Use a managed local browser session.",
4115
+ "name": "local",
4116
+ "allowNo": false,
4117
+ "type": "boolean"
4118
+ },
4119
+ "remote": {
4120
+ "description": "Use a remote Browserbase browser session.",
4121
+ "name": "remote",
4122
+ "allowNo": false,
4123
+ "type": "boolean"
4124
+ },
4125
+ "session": {
4126
+ "char": "s",
4127
+ "description": "Named browser session to use. Defaults to BROWSE_SESSION or default.",
4128
+ "name": "session",
4022
4129
  "hasDynamicHelp": false,
4023
- "helpValue": "<source>",
4130
+ "helpValue": "<name>",
4024
4131
  "multiple": false,
4025
4132
  "type": "option"
4026
4133
  },
4027
- "tag": {
4028
- "description": "Filter templates by tag.",
4029
- "name": "tag",
4134
+ "target-id": {
4135
+ "description": "Select a specific CDP target when attaching to an existing browser.",
4136
+ "name": "target-id",
4030
4137
  "hasDynamicHelp": false,
4031
- "helpValue": "<tag>",
4138
+ "helpValue": "<target-id>",
4032
4139
  "multiple": false,
4033
4140
  "type": "option"
4034
4141
  }
4035
4142
  },
4036
4143
  "hasDynamicHelp": false,
4037
4144
  "hiddenAliases": [],
4038
- "id": "templates:list",
4145
+ "id": "tab:switch",
4039
4146
  "pluginAlias": "browse",
4040
4147
  "pluginName": "browse",
4041
4148
  "pluginType": "core",
@@ -4044,8 +4151,8 @@
4044
4151
  "relativePath": [
4045
4152
  "dist",
4046
4153
  "commands",
4047
- "templates",
4048
- "list.js"
4154
+ "tab",
4155
+ "switch.js"
4049
4156
  ]
4050
4157
  },
4051
4158
  "cloud:contexts:create": {
@@ -4246,18 +4353,18 @@
4246
4353
  "update.js"
4247
4354
  ]
4248
4355
  },
4249
- "cloud:projects:get": {
4356
+ "cloud:extensions:delete": {
4250
4357
  "aliases": [],
4251
4358
  "args": {
4252
4359
  "id": {
4253
- "description": "Project ID.",
4360
+ "description": "Extension ID.",
4254
4361
  "name": "id",
4255
4362
  "required": true
4256
4363
  }
4257
4364
  },
4258
- "description": "Get a project by ID.",
4365
+ "description": "Delete a Chrome extension.",
4259
4366
  "examples": [
4260
- "browse cloud projects get <project-id>"
4367
+ "browse cloud extensions delete <extension-id>"
4261
4368
  ],
4262
4369
  "flags": {
4263
4370
  "api-key": {
@@ -4279,7 +4386,7 @@
4279
4386
  },
4280
4387
  "hasDynamicHelp": false,
4281
4388
  "hiddenAliases": [],
4282
- "id": "cloud:projects:get",
4389
+ "id": "cloud:extensions:delete",
4283
4390
  "pluginAlias": "browse",
4284
4391
  "pluginName": "browse",
4285
4392
  "pluginType": "core",
@@ -4289,17 +4396,22 @@
4289
4396
  "dist",
4290
4397
  "commands",
4291
4398
  "cloud",
4292
- "projects",
4293
- "get.js"
4399
+ "extensions",
4400
+ "delete.js"
4294
4401
  ]
4295
4402
  },
4296
- "cloud:projects:list": {
4403
+ "cloud:extensions:get": {
4297
4404
  "aliases": [],
4298
- "args": {},
4299
- "description": "List projects visible to the current API key.",
4405
+ "args": {
4406
+ "id": {
4407
+ "description": "Extension ID.",
4408
+ "name": "id",
4409
+ "required": true
4410
+ }
4411
+ },
4412
+ "description": "Get a Chrome extension by ID.",
4300
4413
  "examples": [
4301
- "browse cloud projects list",
4302
- "browse cloud projects list --json"
4414
+ "browse cloud extensions get <extension-id>"
4303
4415
  ],
4304
4416
  "flags": {
4305
4417
  "api-key": {
@@ -4317,35 +4429,11 @@
4317
4429
  "helpValue": "<baseUrl>",
4318
4430
  "multiple": false,
4319
4431
  "type": "option"
4320
- },
4321
- "format": {
4322
- "description": "Output format. Defaults to table in a terminal and JSON when piped.",
4323
- "name": "format",
4324
- "hasDynamicHelp": false,
4325
- "helpValue": "<format>",
4326
- "multiple": false,
4327
- "options": [
4328
- "table",
4329
- "json"
4330
- ],
4331
- "type": "option"
4332
- },
4333
- "json": {
4334
- "description": "Print raw JSON output.",
4335
- "name": "json",
4336
- "allowNo": false,
4337
- "type": "boolean"
4338
- },
4339
- "wide": {
4340
- "description": "Show full table values without truncation.",
4341
- "name": "wide",
4342
- "allowNo": false,
4343
- "type": "boolean"
4344
4432
  }
4345
4433
  },
4346
4434
  "hasDynamicHelp": false,
4347
4435
  "hiddenAliases": [],
4348
- "id": "cloud:projects:list",
4436
+ "id": "cloud:extensions:get",
4349
4437
  "pluginAlias": "browse",
4350
4438
  "pluginName": "browse",
4351
4439
  "pluginType": "core",
@@ -4355,22 +4443,22 @@
4355
4443
  "dist",
4356
4444
  "commands",
4357
4445
  "cloud",
4358
- "projects",
4359
- "list.js"
4446
+ "extensions",
4447
+ "get.js"
4360
4448
  ]
4361
4449
  },
4362
- "cloud:projects:usage": {
4450
+ "cloud:extensions:upload": {
4363
4451
  "aliases": [],
4364
4452
  "args": {
4365
- "id": {
4366
- "description": "Project ID.",
4367
- "name": "id",
4453
+ "file": {
4454
+ "description": "Path to extension ZIP file.",
4455
+ "name": "file",
4368
4456
  "required": true
4369
4457
  }
4370
4458
  },
4371
- "description": "Get project usage.",
4459
+ "description": "Upload a Chrome extension ZIP file.",
4372
4460
  "examples": [
4373
- "browse cloud projects usage <project-id>"
4461
+ "browse cloud extensions upload ./extension.zip"
4374
4462
  ],
4375
4463
  "flags": {
4376
4464
  "api-key": {
@@ -4392,7 +4480,7 @@
4392
4480
  },
4393
4481
  "hasDynamicHelp": false,
4394
4482
  "hiddenAliases": [],
4395
- "id": "cloud:projects:usage",
4483
+ "id": "cloud:extensions:upload",
4396
4484
  "pluginAlias": "browse",
4397
4485
  "pluginName": "browse",
4398
4486
  "pluginType": "core",
@@ -4402,22 +4490,22 @@
4402
4490
  "dist",
4403
4491
  "commands",
4404
4492
  "cloud",
4405
- "projects",
4406
- "usage.js"
4493
+ "extensions",
4494
+ "upload.js"
4407
4495
  ]
4408
4496
  },
4409
- "cloud:extensions:delete": {
4497
+ "cloud:projects:get": {
4410
4498
  "aliases": [],
4411
4499
  "args": {
4412
4500
  "id": {
4413
- "description": "Extension ID.",
4501
+ "description": "Project ID.",
4414
4502
  "name": "id",
4415
4503
  "required": true
4416
4504
  }
4417
4505
  },
4418
- "description": "Delete a Chrome extension.",
4506
+ "description": "Get a project by ID.",
4419
4507
  "examples": [
4420
- "browse cloud extensions delete <extension-id>"
4508
+ "browse cloud projects get <project-id>"
4421
4509
  ],
4422
4510
  "flags": {
4423
4511
  "api-key": {
@@ -4439,7 +4527,7 @@
4439
4527
  },
4440
4528
  "hasDynamicHelp": false,
4441
4529
  "hiddenAliases": [],
4442
- "id": "cloud:extensions:delete",
4530
+ "id": "cloud:projects:get",
4443
4531
  "pluginAlias": "browse",
4444
4532
  "pluginName": "browse",
4445
4533
  "pluginType": "core",
@@ -4449,22 +4537,17 @@
4449
4537
  "dist",
4450
4538
  "commands",
4451
4539
  "cloud",
4452
- "extensions",
4453
- "delete.js"
4540
+ "projects",
4541
+ "get.js"
4454
4542
  ]
4455
4543
  },
4456
- "cloud:extensions:get": {
4544
+ "cloud:projects:list": {
4457
4545
  "aliases": [],
4458
- "args": {
4459
- "id": {
4460
- "description": "Extension ID.",
4461
- "name": "id",
4462
- "required": true
4463
- }
4464
- },
4465
- "description": "Get a Chrome extension by ID.",
4546
+ "args": {},
4547
+ "description": "List projects visible to the current API key.",
4466
4548
  "examples": [
4467
- "browse cloud extensions get <extension-id>"
4549
+ "browse cloud projects list",
4550
+ "browse cloud projects list --json"
4468
4551
  ],
4469
4552
  "flags": {
4470
4553
  "api-key": {
@@ -4482,11 +4565,35 @@
4482
4565
  "helpValue": "<baseUrl>",
4483
4566
  "multiple": false,
4484
4567
  "type": "option"
4568
+ },
4569
+ "format": {
4570
+ "description": "Output format. Defaults to table in a terminal and JSON when piped.",
4571
+ "name": "format",
4572
+ "hasDynamicHelp": false,
4573
+ "helpValue": "<format>",
4574
+ "multiple": false,
4575
+ "options": [
4576
+ "table",
4577
+ "json"
4578
+ ],
4579
+ "type": "option"
4580
+ },
4581
+ "json": {
4582
+ "description": "Print raw JSON output.",
4583
+ "name": "json",
4584
+ "allowNo": false,
4585
+ "type": "boolean"
4586
+ },
4587
+ "wide": {
4588
+ "description": "Show full table values without truncation.",
4589
+ "name": "wide",
4590
+ "allowNo": false,
4591
+ "type": "boolean"
4485
4592
  }
4486
4593
  },
4487
4594
  "hasDynamicHelp": false,
4488
4595
  "hiddenAliases": [],
4489
- "id": "cloud:extensions:get",
4596
+ "id": "cloud:projects:list",
4490
4597
  "pluginAlias": "browse",
4491
4598
  "pluginName": "browse",
4492
4599
  "pluginType": "core",
@@ -4496,22 +4603,22 @@
4496
4603
  "dist",
4497
4604
  "commands",
4498
4605
  "cloud",
4499
- "extensions",
4500
- "get.js"
4606
+ "projects",
4607
+ "list.js"
4501
4608
  ]
4502
4609
  },
4503
- "cloud:extensions:upload": {
4610
+ "cloud:projects:usage": {
4504
4611
  "aliases": [],
4505
4612
  "args": {
4506
- "file": {
4507
- "description": "Path to extension ZIP file.",
4508
- "name": "file",
4613
+ "id": {
4614
+ "description": "Project ID.",
4615
+ "name": "id",
4509
4616
  "required": true
4510
4617
  }
4511
4618
  },
4512
- "description": "Upload a Chrome extension ZIP file.",
4619
+ "description": "Get project usage.",
4513
4620
  "examples": [
4514
- "browse cloud extensions upload ./extension.zip"
4621
+ "browse cloud projects usage <project-id>"
4515
4622
  ],
4516
4623
  "flags": {
4517
4624
  "api-key": {
@@ -4533,7 +4640,7 @@
4533
4640
  },
4534
4641
  "hasDynamicHelp": false,
4535
4642
  "hiddenAliases": [],
4536
- "id": "cloud:extensions:upload",
4643
+ "id": "cloud:projects:usage",
4537
4644
  "pluginAlias": "browse",
4538
4645
  "pluginName": "browse",
4539
4646
  "pluginType": "core",
@@ -4543,8 +4650,8 @@
4543
4650
  "dist",
4544
4651
  "commands",
4545
4652
  "cloud",
4546
- "extensions",
4547
- "upload.js"
4653
+ "projects",
4654
+ "usage.js"
4548
4655
  ]
4549
4656
  },
4550
4657
  "cloud:sessions:create": {
@@ -5138,5 +5245,5 @@
5138
5245
  ]
5139
5246
  }
5140
5247
  },
5141
- "version": "0.7.0"
5248
+ "version": "0.7.1"
5142
5249
  }