opendevbrowser 0.0.22 → 0.0.23

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.
Files changed (33) hide show
  1. package/README.md +1 -1
  2. package/dist/{chunk-OGE5KJ4X.js → chunk-2MG7BRPF.js} +513 -80
  3. package/dist/{chunk-OGE5KJ4X.js.map → chunk-2MG7BRPF.js.map} +1 -1
  4. package/dist/{chunk-ZE2E7ZGH.js → chunk-K2TEHJCV.js} +240 -33
  5. package/dist/chunk-K2TEHJCV.js.map +1 -0
  6. package/dist/cli/commands/macro-resolve.d.ts.map +1 -1
  7. package/dist/cli/daemon-commands.d.ts.map +1 -1
  8. package/dist/cli/help.d.ts.map +1 -1
  9. package/dist/cli/index.js +51 -6
  10. package/dist/cli/index.js.map +1 -1
  11. package/dist/cli/utils/workflow-message.d.ts +1 -0
  12. package/dist/cli/utils/workflow-message.d.ts.map +1 -1
  13. package/dist/index.js +23 -8
  14. package/dist/index.js.map +1 -1
  15. package/dist/opendevbrowser.js +23 -8
  16. package/dist/opendevbrowser.js.map +1 -1
  17. package/dist/providers/social/platform.d.ts.map +1 -1
  18. package/dist/providers/social/search-quality.d.ts.map +1 -1
  19. package/dist/providers/social/youtube.d.ts.map +1 -1
  20. package/dist/providers/workflow-handoff.d.ts +27 -3
  21. package/dist/providers/workflow-handoff.d.ts.map +1 -1
  22. package/dist/providers/workflows.d.ts +1 -0
  23. package/dist/providers/workflows.d.ts.map +1 -1
  24. package/dist/{providers-ZIVHHH4F.js → providers-6YVHKTOJ.js} +2 -2
  25. package/dist/public-surface/generated-manifest.d.ts +160 -2
  26. package/dist/public-surface/generated-manifest.d.ts.map +1 -1
  27. package/dist/public-surface/source.d.ts +8 -2
  28. package/dist/public-surface/source.d.ts.map +1 -1
  29. package/dist/tools/macro_resolve.d.ts.map +1 -1
  30. package/extension/manifest.json +1 -1
  31. package/package.json +1 -1
  32. package/dist/chunk-ZE2E7ZGH.js.map +0 -1
  33. /package/dist/{providers-ZIVHHH4F.js.map → providers-6YVHKTOJ.js.map} +0 -0
@@ -10,6 +10,7 @@ import {
10
10
  import {
11
11
  ChallengeOrchestrator,
12
12
  buildBlockerArtifacts,
13
+ buildMacroResolveSuccessHandoff,
13
14
  canonicalizeUrl,
14
15
  classifyBlockerSignal,
15
16
  createDefaultRuntime,
@@ -27,7 +28,7 @@ import {
27
28
  runResearchWorkflow,
28
29
  runShoppingWorkflow,
29
30
  toSnippet
30
- } from "./chunk-ZE2E7ZGH.js";
31
+ } from "./chunk-K2TEHJCV.js";
31
32
  import {
32
33
  ProviderRuntimeError
33
34
  } from "./chunk-FUSXMW3G.js";
@@ -31375,10 +31376,17 @@ async function resolveMacroExpression(options, config, manager, browserFallbackP
31375
31376
  resolution = parseFallbackMacro(options.expression, options.defaultProvider);
31376
31377
  }
31377
31378
  if (!options.execute) {
31379
+ const handoff2 = buildMacroResolveSuccessHandoff({
31380
+ expression: options.expression,
31381
+ defaultProvider: options.defaultProvider,
31382
+ execute: false,
31383
+ blocked: false
31384
+ });
31378
31385
  return {
31379
31386
  runtime: resolvedRuntime,
31380
31387
  resolution,
31381
- ...catalog ? { catalog } : {}
31388
+ ...catalog ? { catalog } : {},
31389
+ ...handoff2
31382
31390
  };
31383
31391
  }
31384
31392
  const execution = await executeMacroWithRuntime({
@@ -31390,11 +31398,18 @@ async function resolveMacroExpression(options, config, manager, browserFallbackP
31390
31398
  timeoutMs: options.timeoutMs,
31391
31399
  challengeAutomationMode: options.challengeAutomationMode
31392
31400
  });
31401
+ const handoff = buildMacroResolveSuccessHandoff({
31402
+ expression: options.expression,
31403
+ defaultProvider: options.defaultProvider,
31404
+ execute: true,
31405
+ blocked: Boolean(execution.meta.blocker)
31406
+ });
31393
31407
  return {
31394
31408
  runtime: resolvedRuntime,
31395
31409
  resolution,
31396
31410
  ...catalog ? { catalog } : {},
31397
- execution
31411
+ execution,
31412
+ ...handoff
31398
31413
  };
31399
31414
  }
31400
31415
 
@@ -32442,7 +32457,7 @@ var buildAnnotateResult = async (payload) => {
32442
32457
  // src/public-surface/generated-manifest.ts
32443
32458
  var PUBLIC_SURFACE_MANIFEST = {
32444
32459
  "schemaVersion": "2026-04-04",
32445
- "generatedAt": "2026-04-20T04:16:59.279Z",
32460
+ "generatedAt": "2026-04-20T16:29:04.426Z",
32446
32461
  "cli": {
32447
32462
  "groups": [
32448
32463
  {
@@ -32630,6 +32645,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32630
32645
  "--no-prompt",
32631
32646
  "--quiet"
32632
32647
  ],
32648
+ "examples": [
32649
+ "npx opendevbrowser install --local --with-config --skills-local"
32650
+ ],
32651
+ "notes": [],
32633
32652
  "groupId": "install_lifecycle",
32634
32653
  "groupTitle": "Install & Lifecycle",
32635
32654
  "groupSummary": "Install, remove, and inspect CLI basics."
@@ -32645,6 +32664,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32645
32664
  "--skills-local",
32646
32665
  "--no-skills"
32647
32666
  ],
32667
+ "examples": [
32668
+ "npx opendevbrowser update --local --skills-local"
32669
+ ],
32670
+ "notes": [],
32648
32671
  "groupId": "install_lifecycle",
32649
32672
  "groupTitle": "Install & Lifecycle",
32650
32673
  "groupSummary": "Install, remove, and inspect CLI basics."
@@ -32660,6 +32683,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32660
32683
  "--no-prompt",
32661
32684
  "--quiet"
32662
32685
  ],
32686
+ "examples": [
32687
+ "npx opendevbrowser uninstall --local --no-skills --no-prompt"
32688
+ ],
32689
+ "notes": [],
32663
32690
  "groupId": "install_lifecycle",
32664
32691
  "groupTitle": "Install & Lifecycle",
32665
32692
  "groupSummary": "Install, remove, and inspect CLI basics."
@@ -32671,6 +32698,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32671
32698
  "flags": [
32672
32699
  "--help"
32673
32700
  ],
32701
+ "examples": [
32702
+ "npx opendevbrowser --help"
32703
+ ],
32704
+ "notes": [
32705
+ "Generated help is the canonical first-contact discovery surface and should stay source-owned."
32706
+ ],
32674
32707
  "groupId": "install_lifecycle",
32675
32708
  "groupTitle": "Install & Lifecycle",
32676
32709
  "groupSummary": "Install, remove, and inspect CLI basics."
@@ -32682,6 +32715,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32682
32715
  "flags": [
32683
32716
  "--version"
32684
32717
  ],
32718
+ "examples": [
32719
+ "npx opendevbrowser --version"
32720
+ ],
32721
+ "notes": [],
32685
32722
  "groupId": "install_lifecycle",
32686
32723
  "groupTitle": "Install & Lifecycle",
32687
32724
  "groupSummary": "Install, remove, and inspect CLI basics."
@@ -32695,6 +32732,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32695
32732
  "--token",
32696
32733
  "--stop"
32697
32734
  ],
32735
+ "examples": [
32736
+ "npx opendevbrowser serve --port 8788 --token local-dev-token"
32737
+ ],
32738
+ "notes": [],
32698
32739
  "groupId": "daemon_runtime",
32699
32740
  "groupTitle": "Daemon & Runtime",
32700
32741
  "groupSummary": "Run daemon services and single-process scripts."
@@ -32706,6 +32747,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32706
32747
  "flags": [
32707
32748
  "--output-format"
32708
32749
  ],
32750
+ "examples": [
32751
+ "npx opendevbrowser daemon status --output-format json"
32752
+ ],
32753
+ "notes": [],
32709
32754
  "groupId": "daemon_runtime",
32710
32755
  "groupTitle": "Daemon & Runtime",
32711
32756
  "groupSummary": "Run daemon services and single-process scripts."
@@ -32717,6 +32762,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32717
32762
  "flags": [
32718
32763
  "--output-format"
32719
32764
  ],
32765
+ "examples": [
32766
+ "npx opendevbrowser native status --output-format json"
32767
+ ],
32768
+ "notes": [],
32720
32769
  "groupId": "daemon_runtime",
32721
32770
  "groupTitle": "Daemon & Runtime",
32722
32771
  "groupSummary": "Run daemon services and single-process scripts."
@@ -32734,6 +32783,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32734
32783
  "--start-url",
32735
32784
  "--flag"
32736
32785
  ],
32786
+ "examples": [
32787
+ "npx opendevbrowser run --script ./workflow.json --headless --output-format json"
32788
+ ],
32789
+ "notes": [
32790
+ "One-shot run uses a temporary profile unless --persist-profile is explicitly enabled."
32791
+ ],
32737
32792
  "groupId": "daemon_runtime",
32738
32793
  "groupTitle": "Daemon & Runtime",
32739
32794
  "groupSummary": "Run daemon services and single-process scripts."
@@ -32755,6 +32810,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32755
32810
  "--wait-for-extension",
32756
32811
  "--wait-timeout-ms"
32757
32812
  ],
32813
+ "examples": [
32814
+ "npx opendevbrowser launch --no-extension --headless --start-url https://example.com --output-format json"
32815
+ ],
32816
+ "notes": [
32817
+ "Use --wait-for-extension when you need a clean daemon-extension handshake before the next step."
32818
+ ],
32758
32819
  "groupId": "session_lifecycle",
32759
32820
  "groupTitle": "Session Lifecycle",
32760
32821
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32770,6 +32831,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32770
32831
  "--start-url",
32771
32832
  "--extension-legacy"
32772
32833
  ],
32834
+ "examples": [
32835
+ "npx opendevbrowser connect --host 127.0.0.1 --cdp-port 9222 --output-format json"
32836
+ ],
32837
+ "notes": [],
32773
32838
  "groupId": "session_lifecycle",
32774
32839
  "groupTitle": "Session Lifecycle",
32775
32840
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32782,6 +32847,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32782
32847
  "--session-id",
32783
32848
  "--close-browser"
32784
32849
  ],
32850
+ "examples": [
32851
+ "npx opendevbrowser disconnect --session-id s1 --close-browser --output-format json"
32852
+ ],
32853
+ "notes": [],
32785
32854
  "groupId": "session_lifecycle",
32786
32855
  "groupTitle": "Session Lifecycle",
32787
32856
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32795,6 +32864,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32795
32864
  "--daemon",
32796
32865
  "--transport"
32797
32866
  ],
32867
+ "examples": [
32868
+ "npx opendevbrowser status --daemon --output-format json"
32869
+ ],
32870
+ "notes": [],
32798
32871
  "groupId": "session_lifecycle",
32799
32872
  "groupTitle": "Session Lifecycle",
32800
32873
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32809,6 +32882,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32809
32882
  "--challenge-automation-mode",
32810
32883
  "--timeout-ms"
32811
32884
  ],
32885
+ "examples": [
32886
+ "npx opendevbrowser status-capabilities --session-id s1 --target-id page-1 --challenge-automation-mode browser --timeout-ms 30000 --output-format json"
32887
+ ],
32888
+ "notes": [],
32812
32889
  "groupId": "session_lifecycle",
32813
32890
  "groupTitle": "Session Lifecycle",
32814
32891
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32823,6 +32900,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32823
32900
  "--cookies-file",
32824
32901
  "--strict"
32825
32902
  ],
32903
+ "examples": [
32904
+ "npx opendevbrowser cookie-import --session-id s1 --cookies-file ./cookies.json --strict true --output-format json"
32905
+ ],
32906
+ "notes": [],
32826
32907
  "groupId": "session_lifecycle",
32827
32908
  "groupTitle": "Session Lifecycle",
32828
32909
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32835,6 +32916,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32835
32916
  "--session-id",
32836
32917
  "--url"
32837
32918
  ],
32919
+ "examples": [
32920
+ "npx opendevbrowser cookie-list --session-id s1 --url https://example.com --output-format json"
32921
+ ],
32922
+ "notes": [],
32838
32923
  "groupId": "session_lifecycle",
32839
32924
  "groupTitle": "Session Lifecycle",
32840
32925
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32861,6 +32946,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32861
32946
  "--cookie-policy-override",
32862
32947
  "--cookie-policy"
32863
32948
  ],
32949
+ "examples": [
32950
+ 'npx opendevbrowser research run --topic "Chrome extension debugging workflows" --days 30 --source-selection auto --mode json --output-format json'
32951
+ ],
32952
+ "notes": [
32953
+ "Generic topical research is currently safest with --source-selection auto; add shopping only for deliberate commercial comparison."
32954
+ ],
32864
32955
  "groupId": "provider_workflows",
32865
32956
  "groupTitle": "Provider Workflows",
32866
32957
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32885,6 +32976,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32885
32976
  "--cookie-policy-override",
32886
32977
  "--cookie-policy"
32887
32978
  ],
32979
+ "examples": [
32980
+ 'npx opendevbrowser shopping run --query "wireless ergonomic mouse" --providers shopping/bestbuy,shopping/ebay --budget 150 --browser-mode managed --mode json --output-format json'
32981
+ ],
32982
+ "notes": [
32983
+ "Treat --region as advisory unless the workflow output reports region_authoritative=true."
32984
+ ],
32888
32985
  "groupId": "provider_workflows",
32889
32986
  "groupTitle": "Provider Workflows",
32890
32987
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32908,6 +33005,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32908
33005
  "--output-dir",
32909
33006
  "--ttl-hours"
32910
33007
  ],
33008
+ "examples": [
33009
+ 'npx opendevbrowser product-video run --product-url "https://example.com/p/1" --include-screenshots --output-format json'
33010
+ ],
33011
+ "notes": [
33012
+ "Confirm whether the returned pack is visual-ready or metadata-first before briefing production."
33013
+ ],
32911
33014
  "groupId": "provider_workflows",
32912
33015
  "groupTitle": "Provider Workflows",
32913
33016
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32930,6 +33033,13 @@ var PUBLIC_SURFACE_MANIFEST = {
32930
33033
  "--cookie-policy-override",
32931
33034
  "--cookie-policy"
32932
33035
  ],
33036
+ "examples": [
33037
+ 'npx opendevbrowser inspiredesign run --brief "Extract a reusable dashboard design contract from live references" --url https://linear.app --capture-mode deep --include-prototype-guidance --output-dir /tmp/inspiredesign --output-format json'
33038
+ ],
33039
+ "notes": [
33040
+ "--capture-mode defaults to off; opt into deep only when live DOM or layout evidence is required.",
33041
+ "Repeat --url for multiple references. There is no --urls alias."
33042
+ ],
32933
33043
  "groupId": "provider_workflows",
32934
33044
  "groupTitle": "Provider Workflows",
32935
33045
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32942,6 +33052,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32942
33052
  "--expired-only",
32943
33053
  "--output-dir"
32944
33054
  ],
33055
+ "examples": [
33056
+ "npx opendevbrowser artifacts cleanup --expired-only --output-dir /tmp/opendevbrowser --output-format json"
33057
+ ],
33058
+ "notes": [],
32945
33059
  "groupId": "provider_workflows",
32946
33060
  "groupTitle": "Provider Workflows",
32947
33061
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32958,6 +33072,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32958
33072
  "--timeout-ms",
32959
33073
  "--challenge-automation-mode"
32960
33074
  ],
33075
+ "examples": [
33076
+ `npx opendevbrowser macro-resolve --expression '@community.search("browser automation failures", 4)' --execute --challenge-automation-mode browser --output-format json`
33077
+ ],
33078
+ "notes": [
33079
+ "When --execute is enabled, inspect execution.meta.blocker before trusting a blocked result as complete."
33080
+ ],
32961
33081
  "groupId": "provider_workflows",
32962
33082
  "groupTitle": "Provider Workflows",
32963
33083
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32972,6 +33092,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32972
33092
  "--params-file",
32973
33093
  "--timeout-ms"
32974
33094
  ],
33095
+ "examples": [
33096
+ `npx opendevbrowser canvas --command canvas.session.open --params '{"label":"design review"}' --timeout-ms 120000 --output-format json`
33097
+ ],
33098
+ "notes": [
33099
+ "Use --params-file for strict request envelopes such as canvas.plan.set or governance handoff payloads."
33100
+ ],
32975
33101
  "groupId": "design_canvas",
32976
33102
  "groupTitle": "Design Canvas",
32977
33103
  "groupSummary": "Execute typed /canvas commands for session, document, preview, and code-sync flows."
@@ -32986,6 +33112,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32986
33112
  "--wait-until",
32987
33113
  "--timeout-ms"
32988
33114
  ],
33115
+ "examples": [
33116
+ "npx opendevbrowser goto --session-id s1 --url https://example.com --wait-until networkidle --output-format json"
33117
+ ],
33118
+ "notes": [],
32989
33119
  "groupId": "navigation",
32990
33120
  "groupTitle": "Navigation",
32991
33121
  "groupSummary": "Move through pages and capture fresh refs."
@@ -33001,6 +33131,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33001
33131
  "--until",
33002
33132
  "--timeout-ms"
33003
33133
  ],
33134
+ "examples": [
33135
+ "npx opendevbrowser wait --session-id s1 --state networkidle --timeout-ms 30000 --output-format json"
33136
+ ],
33137
+ "notes": [],
33004
33138
  "groupId": "navigation",
33005
33139
  "groupTitle": "Navigation",
33006
33140
  "groupSummary": "Move through pages and capture fresh refs."
@@ -33016,6 +33150,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33016
33150
  "--cursor",
33017
33151
  "--timeout-ms"
33018
33152
  ],
33153
+ "examples": [
33154
+ "npx opendevbrowser snapshot --session-id s1 --mode actionables --max-chars 4000 --output-format json"
33155
+ ],
33156
+ "notes": [],
33019
33157
  "groupId": "navigation",
33020
33158
  "groupTitle": "Navigation",
33021
33159
  "groupSummary": "Move through pages and capture fresh refs."
@@ -33031,6 +33169,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33031
33169
  "--cursor",
33032
33170
  "--timeout-ms"
33033
33171
  ],
33172
+ "examples": [
33173
+ "npx opendevbrowser review --session-id s1 --target-id page-1 --output-format json"
33174
+ ],
33175
+ "notes": [],
33034
33176
  "groupId": "navigation",
33035
33177
  "groupTitle": "Navigation",
33036
33178
  "groupSummary": "Move through pages and capture fresh refs."
@@ -33047,6 +33189,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33047
33189
  "--cursor",
33048
33190
  "--timeout-ms"
33049
33191
  ],
33192
+ "examples": [
33193
+ 'npx opendevbrowser review-desktop --session-id s1 --reason "trace challenge state" --output-format json'
33194
+ ],
33195
+ "notes": [],
33050
33196
  "groupId": "navigation",
33051
33197
  "groupTitle": "Navigation",
33052
33198
  "groupSummary": "Move through pages and capture fresh refs."
@@ -33061,6 +33207,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33061
33207
  "--target-id",
33062
33208
  "--timeout-ms"
33063
33209
  ],
33210
+ "examples": [
33211
+ "npx opendevbrowser click --session-id s1 --ref r12 --output-format json"
33212
+ ],
33213
+ "notes": [],
33064
33214
  "groupId": "interaction",
33065
33215
  "groupTitle": "Interaction",
33066
33216
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33073,6 +33223,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33073
33223
  "--session-id",
33074
33224
  "--ref"
33075
33225
  ],
33226
+ "examples": [
33227
+ "npx opendevbrowser hover --session-id s1 --ref r12 --output-format json"
33228
+ ],
33229
+ "notes": [],
33076
33230
  "groupId": "interaction",
33077
33231
  "groupTitle": "Interaction",
33078
33232
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33086,6 +33240,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33086
33240
  "--key",
33087
33241
  "--ref"
33088
33242
  ],
33243
+ "examples": [
33244
+ "npx opendevbrowser press --session-id s1 --key Enter --ref r12 --output-format json"
33245
+ ],
33246
+ "notes": [],
33089
33247
  "groupId": "interaction",
33090
33248
  "groupTitle": "Interaction",
33091
33249
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33098,6 +33256,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33098
33256
  "--session-id",
33099
33257
  "--ref"
33100
33258
  ],
33259
+ "examples": [
33260
+ "npx opendevbrowser check --session-id s1 --ref r12 --output-format json"
33261
+ ],
33262
+ "notes": [],
33101
33263
  "groupId": "interaction",
33102
33264
  "groupTitle": "Interaction",
33103
33265
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33110,6 +33272,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33110
33272
  "--session-id",
33111
33273
  "--ref"
33112
33274
  ],
33275
+ "examples": [
33276
+ "npx opendevbrowser uncheck --session-id s1 --ref r12 --output-format json"
33277
+ ],
33278
+ "notes": [],
33113
33279
  "groupId": "interaction",
33114
33280
  "groupTitle": "Interaction",
33115
33281
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33125,6 +33291,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33125
33291
  "--clear",
33126
33292
  "--submit"
33127
33293
  ],
33294
+ "examples": [
33295
+ 'npx opendevbrowser type --session-id s1 --ref r12 --text "agent@example.com" --clear --output-format json'
33296
+ ],
33297
+ "notes": [],
33128
33298
  "groupId": "interaction",
33129
33299
  "groupTitle": "Interaction",
33130
33300
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33138,6 +33308,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33138
33308
  "--ref",
33139
33309
  "--values"
33140
33310
  ],
33311
+ "examples": [
33312
+ "npx opendevbrowser select --session-id s1 --ref r12 --values us,ca --output-format json"
33313
+ ],
33314
+ "notes": [],
33141
33315
  "groupId": "interaction",
33142
33316
  "groupTitle": "Interaction",
33143
33317
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33151,6 +33325,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33151
33325
  "--dy",
33152
33326
  "--ref"
33153
33327
  ],
33328
+ "examples": [
33329
+ "npx opendevbrowser scroll --session-id s1 --dy 1000 --output-format json"
33330
+ ],
33331
+ "notes": [],
33154
33332
  "groupId": "interaction",
33155
33333
  "groupTitle": "Interaction",
33156
33334
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33163,6 +33341,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33163
33341
  "--session-id",
33164
33342
  "--ref"
33165
33343
  ],
33344
+ "examples": [
33345
+ "npx opendevbrowser scroll-into-view --session-id s1 --ref r12 --output-format json"
33346
+ ],
33347
+ "notes": [],
33166
33348
  "groupId": "interaction",
33167
33349
  "groupTitle": "Interaction",
33168
33350
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33177,6 +33359,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33177
33359
  "--files",
33178
33360
  "--target-id"
33179
33361
  ],
33362
+ "examples": [
33363
+ "npx opendevbrowser upload --session-id s1 --ref r12 --files ./draft.pdf,./hero.png --output-format json"
33364
+ ],
33365
+ "notes": [],
33180
33366
  "groupId": "interaction",
33181
33367
  "groupTitle": "Interaction",
33182
33368
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33192,6 +33378,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33192
33378
  "--steps",
33193
33379
  "--target-id"
33194
33380
  ],
33381
+ "examples": [
33382
+ "npx opendevbrowser pointer-move --session-id s1 --x 320 --y 240 --steps 12 --output-format json"
33383
+ ],
33384
+ "notes": [],
33195
33385
  "groupId": "interaction",
33196
33386
  "groupTitle": "Interaction",
33197
33387
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33208,6 +33398,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33208
33398
  "--click-count",
33209
33399
  "--target-id"
33210
33400
  ],
33401
+ "examples": [
33402
+ "npx opendevbrowser pointer-down --session-id s1 --x 320 --y 240 --button left --click-count 1 --output-format json"
33403
+ ],
33404
+ "notes": [],
33211
33405
  "groupId": "interaction",
33212
33406
  "groupTitle": "Interaction",
33213
33407
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33224,6 +33418,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33224
33418
  "--click-count",
33225
33419
  "--target-id"
33226
33420
  ],
33421
+ "examples": [
33422
+ "npx opendevbrowser pointer-up --session-id s1 --x 320 --y 240 --button left --click-count 1 --output-format json"
33423
+ ],
33424
+ "notes": [],
33227
33425
  "groupId": "interaction",
33228
33426
  "groupTitle": "Interaction",
33229
33427
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33241,6 +33439,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33241
33439
  "--steps",
33242
33440
  "--target-id"
33243
33441
  ],
33442
+ "examples": [
33443
+ "npx opendevbrowser pointer-drag --session-id s1 --from-x 320 --from-y 240 --to-x 640 --to-y 240 --steps 18 --output-format json"
33444
+ ],
33445
+ "notes": [],
33244
33446
  "groupId": "interaction",
33245
33447
  "groupTitle": "Interaction",
33246
33448
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33253,6 +33455,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33253
33455
  "--session-id",
33254
33456
  "--include-urls"
33255
33457
  ],
33458
+ "examples": [
33459
+ "npx opendevbrowser targets-list --session-id s1 --include-urls --output-format json"
33460
+ ],
33461
+ "notes": [],
33256
33462
  "groupId": "targets_pages",
33257
33463
  "groupTitle": "Targets & Pages",
33258
33464
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33265,6 +33471,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33265
33471
  "--session-id",
33266
33472
  "--target-id"
33267
33473
  ],
33474
+ "examples": [
33475
+ "npx opendevbrowser target-use --session-id s1 --target-id page-2 --output-format json"
33476
+ ],
33477
+ "notes": [],
33268
33478
  "groupId": "targets_pages",
33269
33479
  "groupTitle": "Targets & Pages",
33270
33480
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33277,6 +33487,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33277
33487
  "--session-id",
33278
33488
  "--url"
33279
33489
  ],
33490
+ "examples": [
33491
+ "npx opendevbrowser target-new --session-id s1 --url https://example.com/docs --output-format json"
33492
+ ],
33493
+ "notes": [],
33280
33494
  "groupId": "targets_pages",
33281
33495
  "groupTitle": "Targets & Pages",
33282
33496
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33289,6 +33503,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33289
33503
  "--session-id",
33290
33504
  "--target-id"
33291
33505
  ],
33506
+ "examples": [
33507
+ "npx opendevbrowser target-close --session-id s1 --target-id page-2 --output-format json"
33508
+ ],
33509
+ "notes": [],
33292
33510
  "groupId": "targets_pages",
33293
33511
  "groupTitle": "Targets & Pages",
33294
33512
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33302,6 +33520,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33302
33520
  "--name",
33303
33521
  "--url"
33304
33522
  ],
33523
+ "examples": [
33524
+ "npx opendevbrowser page --session-id s1 --name settings --url https://example.com/settings --output-format json"
33525
+ ],
33526
+ "notes": [],
33305
33527
  "groupId": "targets_pages",
33306
33528
  "groupTitle": "Targets & Pages",
33307
33529
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33313,6 +33535,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33313
33535
  "flags": [
33314
33536
  "--session-id"
33315
33537
  ],
33538
+ "examples": [
33539
+ "npx opendevbrowser pages --session-id s1 --output-format json"
33540
+ ],
33541
+ "notes": [],
33316
33542
  "groupId": "targets_pages",
33317
33543
  "groupTitle": "Targets & Pages",
33318
33544
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33325,6 +33551,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33325
33551
  "--session-id",
33326
33552
  "--name"
33327
33553
  ],
33554
+ "examples": [
33555
+ "npx opendevbrowser page-close --session-id s1 --name settings --output-format json"
33556
+ ],
33557
+ "notes": [],
33328
33558
  "groupId": "targets_pages",
33329
33559
  "groupTitle": "Targets & Pages",
33330
33560
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33338,6 +33568,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33338
33568
  "--ref",
33339
33569
  "--max-chars"
33340
33570
  ],
33571
+ "examples": [
33572
+ "npx opendevbrowser dom-html --session-id s1 --ref r12 --max-chars 2000 --output-format json"
33573
+ ],
33574
+ "notes": [],
33341
33575
  "groupId": "dom_export",
33342
33576
  "groupTitle": "DOM & Export",
33343
33577
  "groupSummary": "Read DOM state and export page or component code."
@@ -33351,6 +33585,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33351
33585
  "--ref",
33352
33586
  "--max-chars"
33353
33587
  ],
33588
+ "examples": [
33589
+ "npx opendevbrowser dom-text --session-id s1 --ref r12 --max-chars 500 --output-format json"
33590
+ ],
33591
+ "notes": [],
33354
33592
  "groupId": "dom_export",
33355
33593
  "groupTitle": "DOM & Export",
33356
33594
  "groupSummary": "Read DOM state and export page or component code."
@@ -33364,6 +33602,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33364
33602
  "--ref",
33365
33603
  "--attr"
33366
33604
  ],
33605
+ "examples": [
33606
+ "npx opendevbrowser dom-attr --session-id s1 --ref r12 --attr aria-label --output-format json"
33607
+ ],
33608
+ "notes": [],
33367
33609
  "groupId": "dom_export",
33368
33610
  "groupTitle": "DOM & Export",
33369
33611
  "groupSummary": "Read DOM state and export page or component code."
@@ -33376,6 +33618,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33376
33618
  "--session-id",
33377
33619
  "--ref"
33378
33620
  ],
33621
+ "examples": [
33622
+ "npx opendevbrowser dom-value --session-id s1 --ref r12 --output-format json"
33623
+ ],
33624
+ "notes": [],
33379
33625
  "groupId": "dom_export",
33380
33626
  "groupTitle": "DOM & Export",
33381
33627
  "groupSummary": "Read DOM state and export page or component code."
@@ -33388,6 +33634,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33388
33634
  "--session-id",
33389
33635
  "--ref"
33390
33636
  ],
33637
+ "examples": [
33638
+ "npx opendevbrowser dom-visible --session-id s1 --ref r12 --output-format json"
33639
+ ],
33640
+ "notes": [],
33391
33641
  "groupId": "dom_export",
33392
33642
  "groupTitle": "DOM & Export",
33393
33643
  "groupSummary": "Read DOM state and export page or component code."
@@ -33400,6 +33650,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33400
33650
  "--session-id",
33401
33651
  "--ref"
33402
33652
  ],
33653
+ "examples": [
33654
+ "npx opendevbrowser dom-enabled --session-id s1 --ref r12 --output-format json"
33655
+ ],
33656
+ "notes": [],
33403
33657
  "groupId": "dom_export",
33404
33658
  "groupTitle": "DOM & Export",
33405
33659
  "groupSummary": "Read DOM state and export page or component code."
@@ -33412,6 +33666,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33412
33666
  "--session-id",
33413
33667
  "--ref"
33414
33668
  ],
33669
+ "examples": [
33670
+ "npx opendevbrowser dom-checked --session-id s1 --ref r12 --output-format json"
33671
+ ],
33672
+ "notes": [],
33415
33673
  "groupId": "dom_export",
33416
33674
  "groupTitle": "DOM & Export",
33417
33675
  "groupSummary": "Read DOM state and export page or component code."
@@ -33425,6 +33683,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33425
33683
  "--target-id",
33426
33684
  "--path"
33427
33685
  ],
33686
+ "examples": [
33687
+ "npx opendevbrowser clone-page --session-id s1 --target-id page-1 --path ./exports/page.tsx --output-format json"
33688
+ ],
33689
+ "notes": [],
33428
33690
  "groupId": "dom_export",
33429
33691
  "groupTitle": "DOM & Export",
33430
33692
  "groupSummary": "Read DOM state and export page or component code."
@@ -33439,6 +33701,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33439
33701
  "--target-id",
33440
33702
  "--path"
33441
33703
  ],
33704
+ "examples": [
33705
+ "npx opendevbrowser clone-component --session-id s1 --ref r12 --path ./exports/component.tsx --output-format json"
33706
+ ],
33707
+ "notes": [],
33442
33708
  "groupId": "dom_export",
33443
33709
  "groupTitle": "DOM & Export",
33444
33710
  "groupSummary": "Read DOM state and export page or component code."
@@ -33456,6 +33722,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33456
33722
  "--max",
33457
33723
  "--request-id"
33458
33724
  ],
33725
+ "examples": [
33726
+ "npx opendevbrowser session-inspector --session-id s1 --include-urls --max 20 --output-format json"
33727
+ ],
33728
+ "notes": [],
33459
33729
  "groupId": "diagnostics_annotation",
33460
33730
  "groupTitle": "Diagnostics & Annotation",
33461
33731
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33470,6 +33740,12 @@ var PUBLIC_SURFACE_MANIFEST = {
33470
33740
  "--challenge-automation-mode",
33471
33741
  "--timeout-ms"
33472
33742
  ],
33743
+ "examples": [
33744
+ "npx opendevbrowser session-inspector-plan --session-id s1 --target-id page-1 --challenge-automation-mode browser --output-format json"
33745
+ ],
33746
+ "notes": [
33747
+ "Inspect browser-scoped challenge automation before enabling browser_with_helper on a live rerun."
33748
+ ],
33473
33749
  "groupId": "diagnostics_annotation",
33474
33750
  "groupTitle": "Diagnostics & Annotation",
33475
33751
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33493,6 +33769,12 @@ var PUBLIC_SURFACE_MANIFEST = {
33493
33769
  "--challenge-automation-mode",
33494
33770
  "--timeout-ms"
33495
33771
  ],
33772
+ "examples": [
33773
+ 'npx opendevbrowser session-inspector-audit --session-id s1 --target-id page-1 --reason "trace challenge state" --include-urls --request-id req-session-audit-001 --challenge-automation-mode browser_with_helper --output-format json'
33774
+ ],
33775
+ "notes": [
33776
+ "Audit mode is the quickest correlated proof lane when you need desktop evidence plus browser trace state."
33777
+ ],
33496
33778
  "groupId": "diagnostics_annotation",
33497
33779
  "groupTitle": "Diagnostics & Annotation",
33498
33780
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33504,6 +33786,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33504
33786
  "flags": [
33505
33787
  "--session-id"
33506
33788
  ],
33789
+ "examples": [
33790
+ "npx opendevbrowser perf --session-id s1 --output-format json"
33791
+ ],
33792
+ "notes": [],
33507
33793
  "groupId": "diagnostics_annotation",
33508
33794
  "groupTitle": "Diagnostics & Annotation",
33509
33795
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33520,6 +33806,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33520
33806
  "--full-page",
33521
33807
  "--timeout-ms"
33522
33808
  ],
33809
+ "examples": [
33810
+ "npx opendevbrowser screenshot --session-id s1 --path ./artifacts/page.png --full-page --output-format json"
33811
+ ],
33812
+ "notes": [],
33523
33813
  "groupId": "diagnostics_annotation",
33524
33814
  "groupTitle": "Diagnostics & Annotation",
33525
33815
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33535,6 +33825,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33535
33825
  "--prompt-text",
33536
33826
  "--timeout-ms"
33537
33827
  ],
33828
+ "examples": [
33829
+ "npx opendevbrowser dialog --session-id s1 --action status --output-format json"
33830
+ ],
33831
+ "notes": [],
33538
33832
  "groupId": "diagnostics_annotation",
33539
33833
  "groupTitle": "Diagnostics & Annotation",
33540
33834
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33548,6 +33842,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33548
33842
  "--since-seq",
33549
33843
  "--max"
33550
33844
  ],
33845
+ "examples": [
33846
+ "npx opendevbrowser console-poll --session-id s1 --max 50 --output-format json"
33847
+ ],
33848
+ "notes": [],
33551
33849
  "groupId": "diagnostics_annotation",
33552
33850
  "groupTitle": "Diagnostics & Annotation",
33553
33851
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33561,6 +33859,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33561
33859
  "--since-seq",
33562
33860
  "--max"
33563
33861
  ],
33862
+ "examples": [
33863
+ "npx opendevbrowser network-poll --session-id s1 --max 50 --output-format json"
33864
+ ],
33865
+ "notes": [],
33564
33866
  "groupId": "diagnostics_annotation",
33565
33867
  "groupTitle": "Diagnostics & Annotation",
33566
33868
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33577,6 +33879,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33577
33879
  "--max",
33578
33880
  "--request-id"
33579
33881
  ],
33882
+ "examples": [
33883
+ "npx opendevbrowser debug-trace-snapshot --session-id s1 --max 50 --request-id req-trace-001 --output-format json"
33884
+ ],
33885
+ "notes": [],
33580
33886
  "groupId": "diagnostics_annotation",
33581
33887
  "groupTitle": "Diagnostics & Annotation",
33582
33888
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33598,6 +33904,12 @@ var PUBLIC_SURFACE_MANIFEST = {
33598
33904
  "--include-screenshots",
33599
33905
  "--timeout-ms"
33600
33906
  ],
33907
+ "examples": [
33908
+ 'npx opendevbrowser annotate --session-id s1 --transport auto --context "review call to action spacing" --include-screenshots true --output-format json'
33909
+ ],
33910
+ "notes": [
33911
+ "Use --stored when you want the last delivered annotation payload without starting a new capture."
33912
+ ],
33601
33913
  "groupId": "diagnostics_annotation",
33602
33914
  "groupTitle": "Diagnostics & Annotation",
33603
33915
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33614,6 +33926,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33614
33926
  "--max-frames",
33615
33927
  "--timeout-ms"
33616
33928
  ],
33929
+ "examples": [
33930
+ "npx opendevbrowser screencast-start --session-id s1 --output-dir ./artifacts/replay --interval-ms 750 --max-frames 40 --output-format json"
33931
+ ],
33932
+ "notes": [],
33617
33933
  "groupId": "browser_replay",
33618
33934
  "groupTitle": "Browser Replay",
33619
33935
  "groupSummary": "Capture temporal replay artifacts through the public browser replay lane for a browser target."
@@ -33627,6 +33943,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33627
33943
  "--screencast-id",
33628
33944
  "--timeout-ms"
33629
33945
  ],
33946
+ "examples": [
33947
+ "npx opendevbrowser screencast-stop --session-id s1 --screencast-id cast-1 --output-format json"
33948
+ ],
33949
+ "notes": [],
33630
33950
  "groupId": "browser_replay",
33631
33951
  "groupTitle": "Browser Replay",
33632
33952
  "groupSummary": "Capture temporal replay artifacts through the public browser replay lane for a browser target."
@@ -33638,6 +33958,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33638
33958
  "flags": [
33639
33959
  "--timeout-ms"
33640
33960
  ],
33961
+ "examples": [
33962
+ "npx opendevbrowser desktop-status --timeout-ms 5000 --output-format json"
33963
+ ],
33964
+ "notes": [],
33641
33965
  "groupId": "desktop_observation",
33642
33966
  "groupTitle": "Desktop Observation",
33643
33967
  "groupSummary": "Inspect the public read-only sibling desktop observation plane on macOS; availability, window inventory, and accessibility probes use the local swift command, while screenshots use macOS screencapture outside extension relay."
@@ -33650,6 +33974,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33650
33974
  "--reason",
33651
33975
  "--timeout-ms"
33652
33976
  ],
33977
+ "examples": [
33978
+ 'npx opendevbrowser desktop-windows --reason "inventory browser-adjacent windows" --output-format json'
33979
+ ],
33980
+ "notes": [],
33653
33981
  "groupId": "desktop_observation",
33654
33982
  "groupTitle": "Desktop Observation",
33655
33983
  "groupSummary": "Inspect the public read-only sibling desktop observation plane on macOS; availability, window inventory, and accessibility probes use the local swift command, while screenshots use macOS screencapture outside extension relay."
@@ -33662,6 +33990,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33662
33990
  "--reason",
33663
33991
  "--timeout-ms"
33664
33992
  ],
33993
+ "examples": [
33994
+ 'npx opendevbrowser desktop-active-window --reason "capture active browser context" --output-format json'
33995
+ ],
33996
+ "notes": [],
33665
33997
  "groupId": "desktop_observation",
33666
33998
  "groupTitle": "Desktop Observation",
33667
33999
  "groupSummary": "Inspect the public read-only sibling desktop observation plane on macOS; availability, window inventory, and accessibility probes use the local swift command, while screenshots use macOS screencapture outside extension relay."
@@ -33674,6 +34006,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33674
34006
  "--reason",
33675
34007
  "--timeout-ms"
33676
34008
  ],
34009
+ "examples": [
34010
+ 'npx opendevbrowser desktop-capture-desktop --reason "capture login checkpoint state" --output-format json'
34011
+ ],
34012
+ "notes": [],
33677
34013
  "groupId": "desktop_observation",
33678
34014
  "groupTitle": "Desktop Observation",
33679
34015
  "groupSummary": "Inspect the public read-only sibling desktop observation plane on macOS; availability, window inventory, and accessibility probes use the local swift command, while screenshots use macOS screencapture outside extension relay."
@@ -33687,6 +34023,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33687
34023
  "--reason",
33688
34024
  "--timeout-ms"
33689
34025
  ],
34026
+ "examples": [
34027
+ 'npx opendevbrowser desktop-capture-window --window-id 101 --reason "capture browser window" --output-format json'
34028
+ ],
34029
+ "notes": [],
33690
34030
  "groupId": "desktop_observation",
33691
34031
  "groupTitle": "Desktop Observation",
33692
34032
  "groupSummary": "Inspect the public read-only sibling desktop observation plane on macOS; availability, window inventory, and accessibility probes use the local swift command, while screenshots use macOS screencapture outside extension relay."
@@ -33700,6 +34040,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33700
34040
  "--window-id",
33701
34041
  "--timeout-ms"
33702
34042
  ],
34043
+ "examples": [
34044
+ 'npx opendevbrowser desktop-accessibility-snapshot --reason "inspect current browser-adjacent labels" --window-id 101 --output-format json'
34045
+ ],
34046
+ "notes": [],
33703
34047
  "groupId": "desktop_observation",
33704
34048
  "groupTitle": "Desktop Observation",
33705
34049
  "groupSummary": "Inspect the public read-only sibling desktop observation plane on macOS; availability, window inventory, and accessibility probes use the local swift command, while screenshots use macOS screencapture outside extension relay."
@@ -33715,6 +34059,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33715
34059
  "--params-file",
33716
34060
  "--timeout-ms"
33717
34061
  ],
34062
+ "examples": [
34063
+ "npx opendevbrowser rpc --unsafe-internal --name browser.status --params-file ./rpc-params.json --output-format json"
34064
+ ],
34065
+ "notes": [],
33718
34066
  "groupId": "power",
33719
34067
  "groupTitle": "Power",
33720
34068
  "groupSummary": "Unsafe internal daemon passthrough."
@@ -34313,349 +34661,428 @@ var PUBLIC_SURFACE_MANIFEST = {
34313
34661
  {
34314
34662
  "name": "opendevbrowser_launch",
34315
34663
  "description": "Launch a managed browser session.",
34316
- "cliEquivalent": "launch"
34664
+ "cliEquivalent": "launch",
34665
+ "example": "npx opendevbrowser launch --no-extension --headless --start-url https://example.com --output-format json"
34317
34666
  },
34318
34667
  {
34319
34668
  "name": "opendevbrowser_connect",
34320
34669
  "description": "Connect to an existing browser session.",
34321
- "cliEquivalent": "connect"
34670
+ "cliEquivalent": "connect",
34671
+ "example": "npx opendevbrowser connect --host 127.0.0.1 --cdp-port 9222 --output-format json"
34322
34672
  },
34323
34673
  {
34324
34674
  "name": "opendevbrowser_disconnect",
34325
34675
  "description": "Disconnect a managed or connected session.",
34326
- "cliEquivalent": "disconnect"
34676
+ "cliEquivalent": "disconnect",
34677
+ "example": "npx opendevbrowser disconnect --session-id s1 --close-browser --output-format json"
34327
34678
  },
34328
34679
  {
34329
34680
  "name": "opendevbrowser_status",
34330
34681
  "description": "Inspect session and relay status.",
34331
- "cliEquivalent": "status"
34682
+ "cliEquivalent": "status",
34683
+ "example": "npx opendevbrowser status --daemon --output-format json"
34332
34684
  },
34333
34685
  {
34334
34686
  "name": "opendevbrowser_status_capabilities",
34335
34687
  "description": "Inspect runtime capability discovery for the host and an optional session.",
34336
- "cliEquivalent": "status-capabilities"
34688
+ "cliEquivalent": "status-capabilities",
34689
+ "example": "npx opendevbrowser status-capabilities --session-id s1 --target-id page-1 --challenge-automation-mode browser --timeout-ms 30000 --output-format json"
34337
34690
  },
34338
34691
  {
34339
34692
  "name": "opendevbrowser_session_inspector",
34340
34693
  "description": "Capture a session-first diagnostic bundle with relay health, trace proof, and a suggested next action.",
34341
- "cliEquivalent": "session-inspector"
34694
+ "cliEquivalent": "session-inspector",
34695
+ "example": "npx opendevbrowser session-inspector --session-id s1 --include-urls --max 20 --output-format json"
34342
34696
  },
34343
34697
  {
34344
34698
  "name": "opendevbrowser_session_inspector_plan",
34345
34699
  "description": "Inspect browser-scoped computer-use policy, eligibility, and safe suggested steps.",
34346
- "cliEquivalent": "session-inspector-plan"
34700
+ "cliEquivalent": "session-inspector-plan",
34701
+ "example": "npx opendevbrowser session-inspector-plan --session-id s1 --target-id page-1 --challenge-automation-mode browser --output-format json"
34347
34702
  },
34348
34703
  {
34349
34704
  "name": "opendevbrowser_session_inspector_audit",
34350
34705
  "description": "Capture a correlated audit bundle across desktop evidence, browser review, and policy state.",
34351
- "cliEquivalent": "session-inspector-audit"
34706
+ "cliEquivalent": "session-inspector-audit",
34707
+ "example": 'npx opendevbrowser session-inspector-audit --session-id s1 --target-id page-1 --reason "trace challenge state" --include-urls --request-id req-session-audit-001 --challenge-automation-mode browser_with_helper --output-format json'
34352
34708
  },
34353
34709
  {
34354
34710
  "name": "opendevbrowser_targets_list",
34355
34711
  "description": "List available page targets/tabs.",
34356
- "cliEquivalent": "targets-list"
34712
+ "cliEquivalent": "targets-list",
34713
+ "example": "npx opendevbrowser targets-list --session-id s1 --include-urls --output-format json"
34357
34714
  },
34358
34715
  {
34359
34716
  "name": "opendevbrowser_target_use",
34360
34717
  "description": "Switch the active target by id.",
34361
- "cliEquivalent": "target-use"
34718
+ "cliEquivalent": "target-use",
34719
+ "example": "npx opendevbrowser target-use --session-id s1 --target-id page-2 --output-format json"
34362
34720
  },
34363
34721
  {
34364
34722
  "name": "opendevbrowser_target_new",
34365
34723
  "description": "Create a new target or tab.",
34366
- "cliEquivalent": "target-new"
34724
+ "cliEquivalent": "target-new",
34725
+ "example": "npx opendevbrowser target-new --session-id s1 --url https://example.com/docs --output-format json"
34367
34726
  },
34368
34727
  {
34369
34728
  "name": "opendevbrowser_target_close",
34370
34729
  "description": "Close a target or tab by id.",
34371
- "cliEquivalent": "target-close"
34730
+ "cliEquivalent": "target-close",
34731
+ "example": "npx opendevbrowser target-close --session-id s1 --target-id page-2 --output-format json"
34372
34732
  },
34373
34733
  {
34374
34734
  "name": "opendevbrowser_page",
34375
34735
  "description": "Open or focus a named page.",
34376
- "cliEquivalent": "page"
34736
+ "cliEquivalent": "page",
34737
+ "example": "npx opendevbrowser page --session-id s1 --name settings --url https://example.com/settings --output-format json"
34377
34738
  },
34378
34739
  {
34379
34740
  "name": "opendevbrowser_list",
34380
34741
  "description": "List named pages in the session.",
34381
- "cliEquivalent": "pages"
34742
+ "cliEquivalent": "pages",
34743
+ "example": "npx opendevbrowser pages --session-id s1 --output-format json"
34382
34744
  },
34383
34745
  {
34384
34746
  "name": "opendevbrowser_close",
34385
34747
  "description": "Close a named page.",
34386
- "cliEquivalent": "page-close"
34748
+ "cliEquivalent": "page-close",
34749
+ "example": "npx opendevbrowser page-close --session-id s1 --name settings --output-format json"
34387
34750
  },
34388
34751
  {
34389
34752
  "name": "opendevbrowser_goto",
34390
34753
  "description": "Navigate to a URL.",
34391
- "cliEquivalent": "goto"
34754
+ "cliEquivalent": "goto",
34755
+ "example": "npx opendevbrowser goto --session-id s1 --url https://example.com --wait-until networkidle --output-format json"
34392
34756
  },
34393
34757
  {
34394
34758
  "name": "opendevbrowser_wait",
34395
34759
  "description": "Wait for load, ref, or state conditions.",
34396
- "cliEquivalent": "wait"
34760
+ "cliEquivalent": "wait",
34761
+ "example": "npx opendevbrowser wait --session-id s1 --state networkidle --timeout-ms 30000 --output-format json"
34397
34762
  },
34398
34763
  {
34399
34764
  "name": "opendevbrowser_snapshot",
34400
34765
  "description": "Capture AX-tree refs for actions.",
34401
- "cliEquivalent": "snapshot"
34766
+ "cliEquivalent": "snapshot",
34767
+ "example": "npx opendevbrowser snapshot --session-id s1 --mode actionables --max-chars 4000 --output-format json"
34402
34768
  },
34403
34769
  {
34404
34770
  "name": "opendevbrowser_review",
34405
34771
  "description": "Capture a first-class review payload with status and actionables.",
34406
- "cliEquivalent": "review"
34772
+ "cliEquivalent": "review",
34773
+ "example": "npx opendevbrowser review --session-id s1 --target-id page-1 --output-format json"
34407
34774
  },
34408
34775
  {
34409
34776
  "name": "opendevbrowser_review_desktop",
34410
34777
  "description": "Capture desktop-assisted browser review with read-only desktop evidence and browser-owned verification.",
34411
- "cliEquivalent": "review-desktop"
34778
+ "cliEquivalent": "review-desktop",
34779
+ "example": 'npx opendevbrowser review-desktop --session-id s1 --reason "trace challenge state" --output-format json'
34412
34780
  },
34413
34781
  {
34414
34782
  "name": "opendevbrowser_click",
34415
34783
  "description": "Click an element by ref.",
34416
- "cliEquivalent": "click"
34784
+ "cliEquivalent": "click",
34785
+ "example": "npx opendevbrowser click --session-id s1 --ref r12 --output-format json"
34417
34786
  },
34418
34787
  {
34419
34788
  "name": "opendevbrowser_hover",
34420
34789
  "description": "Hover an element by ref.",
34421
- "cliEquivalent": "hover"
34790
+ "cliEquivalent": "hover",
34791
+ "example": "npx opendevbrowser hover --session-id s1 --ref r12 --output-format json"
34422
34792
  },
34423
34793
  {
34424
34794
  "name": "opendevbrowser_press",
34425
34795
  "description": "Send a keyboard key.",
34426
- "cliEquivalent": "press"
34796
+ "cliEquivalent": "press",
34797
+ "example": "npx opendevbrowser press --session-id s1 --key Enter --ref r12 --output-format json"
34427
34798
  },
34428
34799
  {
34429
34800
  "name": "opendevbrowser_check",
34430
34801
  "description": "Check a checkbox or radio by ref.",
34431
- "cliEquivalent": "check"
34802
+ "cliEquivalent": "check",
34803
+ "example": "npx opendevbrowser check --session-id s1 --ref r12 --output-format json"
34432
34804
  },
34433
34805
  {
34434
34806
  "name": "opendevbrowser_uncheck",
34435
34807
  "description": "Uncheck a checkbox or radio by ref.",
34436
- "cliEquivalent": "uncheck"
34808
+ "cliEquivalent": "uncheck",
34809
+ "example": "npx opendevbrowser uncheck --session-id s1 --ref r12 --output-format json"
34437
34810
  },
34438
34811
  {
34439
34812
  "name": "opendevbrowser_type",
34440
34813
  "description": "Type text into an input by ref.",
34441
- "cliEquivalent": "type"
34814
+ "cliEquivalent": "type",
34815
+ "example": 'npx opendevbrowser type --session-id s1 --ref r12 --text "agent@example.com" --clear --output-format json'
34442
34816
  },
34443
34817
  {
34444
34818
  "name": "opendevbrowser_select",
34445
34819
  "description": "Set select values by ref.",
34446
- "cliEquivalent": "select"
34820
+ "cliEquivalent": "select",
34821
+ "example": "npx opendevbrowser select --session-id s1 --ref r12 --values us,ca --output-format json"
34447
34822
  },
34448
34823
  {
34449
34824
  "name": "opendevbrowser_scroll",
34450
34825
  "description": "Scroll a page or element.",
34451
- "cliEquivalent": "scroll"
34826
+ "cliEquivalent": "scroll",
34827
+ "example": "npx opendevbrowser scroll --session-id s1 --dy 1000 --output-format json"
34452
34828
  },
34453
34829
  {
34454
34830
  "name": "opendevbrowser_scroll_into_view",
34455
34831
  "description": "Scroll a target element into view.",
34456
- "cliEquivalent": "scroll-into-view"
34832
+ "cliEquivalent": "scroll-into-view",
34833
+ "example": "npx opendevbrowser scroll-into-view --session-id s1 --ref r12 --output-format json"
34457
34834
  },
34458
34835
  {
34459
34836
  "name": "opendevbrowser_upload",
34460
34837
  "description": "Upload files to a file input or chooser by ref.",
34461
- "cliEquivalent": "upload"
34838
+ "cliEquivalent": "upload",
34839
+ "example": "npx opendevbrowser upload --session-id s1 --ref r12 --files ./draft.pdf,./hero.png --output-format json"
34462
34840
  },
34463
34841
  {
34464
34842
  "name": "opendevbrowser_pointer_move",
34465
34843
  "description": "Move the pointer to viewport coordinates.",
34466
- "cliEquivalent": "pointer-move"
34844
+ "cliEquivalent": "pointer-move",
34845
+ "example": "npx opendevbrowser pointer-move --session-id s1 --x 320 --y 240 --steps 12 --output-format json"
34467
34846
  },
34468
34847
  {
34469
34848
  "name": "opendevbrowser_pointer_down",
34470
34849
  "description": "Press a mouse button at viewport coordinates.",
34471
- "cliEquivalent": "pointer-down"
34850
+ "cliEquivalent": "pointer-down",
34851
+ "example": "npx opendevbrowser pointer-down --session-id s1 --x 320 --y 240 --button left --click-count 1 --output-format json"
34472
34852
  },
34473
34853
  {
34474
34854
  "name": "opendevbrowser_pointer_up",
34475
34855
  "description": "Release a mouse button at viewport coordinates.",
34476
- "cliEquivalent": "pointer-up"
34856
+ "cliEquivalent": "pointer-up",
34857
+ "example": "npx opendevbrowser pointer-up --session-id s1 --x 320 --y 240 --button left --click-count 1 --output-format json"
34477
34858
  },
34478
34859
  {
34479
34860
  "name": "opendevbrowser_pointer_drag",
34480
34861
  "description": "Drag the pointer between viewport coordinates.",
34481
- "cliEquivalent": "pointer-drag"
34862
+ "cliEquivalent": "pointer-drag",
34863
+ "example": "npx opendevbrowser pointer-drag --session-id s1 --from-x 320 --from-y 240 --to-x 640 --to-y 240 --steps 18 --output-format json"
34482
34864
  },
34483
34865
  {
34484
34866
  "name": "opendevbrowser_dom_get_html",
34485
34867
  "description": "Get HTML for a page or ref.",
34486
- "cliEquivalent": "dom-html"
34868
+ "cliEquivalent": "dom-html",
34869
+ "example": "npx opendevbrowser dom-html --session-id s1 --ref r12 --max-chars 2000 --output-format json"
34487
34870
  },
34488
34871
  {
34489
34872
  "name": "opendevbrowser_dom_get_text",
34490
34873
  "description": "Get text for a page or ref.",
34491
- "cliEquivalent": "dom-text"
34874
+ "cliEquivalent": "dom-text",
34875
+ "example": "npx opendevbrowser dom-text --session-id s1 --ref r12 --max-chars 500 --output-format json"
34492
34876
  },
34493
34877
  {
34494
34878
  "name": "opendevbrowser_get_attr",
34495
34879
  "description": "Read a DOM attribute by ref.",
34496
- "cliEquivalent": "dom-attr"
34880
+ "cliEquivalent": "dom-attr",
34881
+ "example": "npx opendevbrowser dom-attr --session-id s1 --ref r12 --attr aria-label --output-format json"
34497
34882
  },
34498
34883
  {
34499
34884
  "name": "opendevbrowser_get_value",
34500
34885
  "description": "Read a form or control value by ref.",
34501
- "cliEquivalent": "dom-value"
34886
+ "cliEquivalent": "dom-value",
34887
+ "example": "npx opendevbrowser dom-value --session-id s1 --ref r12 --output-format json"
34502
34888
  },
34503
34889
  {
34504
34890
  "name": "opendevbrowser_is_visible",
34505
34891
  "description": "Check ref visibility.",
34506
- "cliEquivalent": "dom-visible"
34892
+ "cliEquivalent": "dom-visible",
34893
+ "example": "npx opendevbrowser dom-visible --session-id s1 --ref r12 --output-format json"
34507
34894
  },
34508
34895
  {
34509
34896
  "name": "opendevbrowser_is_enabled",
34510
34897
  "description": "Check ref enabled state.",
34511
- "cliEquivalent": "dom-enabled"
34898
+ "cliEquivalent": "dom-enabled",
34899
+ "example": "npx opendevbrowser dom-enabled --session-id s1 --ref r12 --output-format json"
34512
34900
  },
34513
34901
  {
34514
34902
  "name": "opendevbrowser_is_checked",
34515
34903
  "description": "Check ref checked state.",
34516
- "cliEquivalent": "dom-checked"
34904
+ "cliEquivalent": "dom-checked",
34905
+ "example": "npx opendevbrowser dom-checked --session-id s1 --ref r12 --output-format json"
34517
34906
  },
34518
34907
  {
34519
34908
  "name": "opendevbrowser_run",
34520
34909
  "description": "Execute multi-action automation scripts.",
34521
- "cliEquivalent": "run"
34910
+ "cliEquivalent": "run",
34911
+ "example": "npx opendevbrowser run --script ./workflow.json --headless --output-format json"
34522
34912
  },
34523
34913
  {
34524
34914
  "name": "opendevbrowser_prompting_guide",
34525
- "description": "Start here for first-contact OpenDevBrowser guidance and the bundled best-practices quick start."
34915
+ "description": "Start here for first-contact OpenDevBrowser guidance and the bundled best-practices quick start.",
34916
+ "example": '{"topic":"quick start"}',
34917
+ "notes": [
34918
+ "Tool-only helper. Use it before low-level browser commands when an agent needs the canonical quick start."
34919
+ ]
34526
34920
  },
34527
34921
  {
34528
34922
  "name": "opendevbrowser_console_poll",
34529
34923
  "description": "Poll redacted console events.",
34530
- "cliEquivalent": "console-poll"
34924
+ "cliEquivalent": "console-poll",
34925
+ "example": "npx opendevbrowser console-poll --session-id s1 --max 50 --output-format json"
34531
34926
  },
34532
34927
  {
34533
34928
  "name": "opendevbrowser_network_poll",
34534
34929
  "description": "Poll redacted network events.",
34535
- "cliEquivalent": "network-poll"
34930
+ "cliEquivalent": "network-poll",
34931
+ "example": "npx opendevbrowser network-poll --session-id s1 --max 50 --output-format json"
34536
34932
  },
34537
34933
  {
34538
34934
  "name": "opendevbrowser_debug_trace_snapshot",
34539
34935
  "description": "Capture page, console, and network diagnostics.",
34540
- "cliEquivalent": "debug-trace-snapshot"
34936
+ "cliEquivalent": "debug-trace-snapshot",
34937
+ "example": "npx opendevbrowser debug-trace-snapshot --session-id s1 --max 50 --request-id req-trace-001 --output-format json"
34541
34938
  },
34542
34939
  {
34543
34940
  "name": "opendevbrowser_cookie_import",
34544
34941
  "description": "Import validated cookies into a session.",
34545
- "cliEquivalent": "cookie-import"
34942
+ "cliEquivalent": "cookie-import",
34943
+ "example": "npx opendevbrowser cookie-import --session-id s1 --cookies-file ./cookies.json --strict true --output-format json"
34546
34944
  },
34547
34945
  {
34548
34946
  "name": "opendevbrowser_cookie_list",
34549
34947
  "description": "List cookies in a session with optional URL filters.",
34550
- "cliEquivalent": "cookie-list"
34948
+ "cliEquivalent": "cookie-list",
34949
+ "example": "npx opendevbrowser cookie-list --session-id s1 --url https://example.com --output-format json"
34551
34950
  },
34552
34951
  {
34553
34952
  "name": "opendevbrowser_macro_resolve",
34554
34953
  "description": "Resolve or execute provider macro expressions.",
34555
- "cliEquivalent": "macro-resolve"
34954
+ "cliEquivalent": "macro-resolve",
34955
+ "example": `npx opendevbrowser macro-resolve --expression '@community.search("browser automation failures", 4)' --execute --challenge-automation-mode browser --output-format json`
34556
34956
  },
34557
34957
  {
34558
34958
  "name": "opendevbrowser_research_run",
34559
34959
  "description": "Run the research workflow directly.",
34560
- "cliEquivalent": "research"
34960
+ "cliEquivalent": "research",
34961
+ "example": 'npx opendevbrowser research run --topic "Chrome extension debugging workflows" --days 30 --source-selection auto --mode json --output-format json'
34561
34962
  },
34562
34963
  {
34563
34964
  "name": "opendevbrowser_shopping_run",
34564
34965
  "description": "Run the shopping workflow directly.",
34565
- "cliEquivalent": "shopping"
34966
+ "cliEquivalent": "shopping",
34967
+ "example": 'npx opendevbrowser shopping run --query "wireless ergonomic mouse" --providers shopping/bestbuy,shopping/ebay --budget 150 --browser-mode managed --mode json --output-format json'
34566
34968
  },
34567
34969
  {
34568
34970
  "name": "opendevbrowser_product_video_run",
34569
34971
  "description": "Run the product-video asset workflow directly.",
34570
- "cliEquivalent": "product-video"
34972
+ "cliEquivalent": "product-video",
34973
+ "example": 'npx opendevbrowser product-video run --product-url "https://example.com/p/1" --include-screenshots --output-format json'
34571
34974
  },
34572
34975
  {
34573
34976
  "name": "opendevbrowser_inspiredesign_run",
34574
34977
  "description": "Run the inspiredesign workflow directly.",
34575
- "cliEquivalent": "inspiredesign"
34978
+ "cliEquivalent": "inspiredesign",
34979
+ "example": 'npx opendevbrowser inspiredesign run --brief "Extract a reusable dashboard design contract from live references" --url https://linear.app --capture-mode deep --include-prototype-guidance --output-dir /tmp/inspiredesign --output-format json'
34576
34980
  },
34577
34981
  {
34578
34982
  "name": "opendevbrowser_canvas",
34579
34983
  "description": "Execute a typed design-canvas command surface call.",
34580
- "cliEquivalent": "canvas"
34984
+ "cliEquivalent": "canvas",
34985
+ "example": `npx opendevbrowser canvas --command canvas.session.open --params '{"label":"design review"}' --timeout-ms 120000 --output-format json`
34581
34986
  },
34582
34987
  {
34583
34988
  "name": "opendevbrowser_clone_page",
34584
34989
  "description": "Export the active page into React code.",
34585
- "cliEquivalent": "clone-page"
34990
+ "cliEquivalent": "clone-page",
34991
+ "example": "npx opendevbrowser clone-page --session-id s1 --target-id page-1 --path ./exports/page.tsx --output-format json"
34586
34992
  },
34587
34993
  {
34588
34994
  "name": "opendevbrowser_clone_component",
34589
34995
  "description": "Export a component by ref into React code.",
34590
- "cliEquivalent": "clone-component"
34996
+ "cliEquivalent": "clone-component",
34997
+ "example": "npx opendevbrowser clone-component --session-id s1 --ref r12 --path ./exports/component.tsx --output-format json"
34591
34998
  },
34592
34999
  {
34593
35000
  "name": "opendevbrowser_perf",
34594
35001
  "description": "Collect browser performance metrics.",
34595
- "cliEquivalent": "perf"
35002
+ "cliEquivalent": "perf",
35003
+ "example": "npx opendevbrowser perf --session-id s1 --output-format json"
34596
35004
  },
34597
35005
  {
34598
35006
  "name": "opendevbrowser_screenshot",
34599
35007
  "description": "Capture a page screenshot.",
34600
- "cliEquivalent": "screenshot"
35008
+ "cliEquivalent": "screenshot",
35009
+ "example": "npx opendevbrowser screenshot --session-id s1 --path ./artifacts/page.png --full-page --output-format json"
34601
35010
  },
34602
35011
  {
34603
35012
  "name": "opendevbrowser_screencast_start",
34604
35013
  "description": "Start a browser replay screencast capture.",
34605
- "cliEquivalent": "screencast-start"
35014
+ "cliEquivalent": "screencast-start",
35015
+ "example": "npx opendevbrowser screencast-start --session-id s1 --output-dir ./artifacts/replay --interval-ms 750 --max-frames 40 --output-format json"
34606
35016
  },
34607
35017
  {
34608
35018
  "name": "opendevbrowser_screencast_stop",
34609
35019
  "description": "Stop a browser replay screencast capture.",
34610
- "cliEquivalent": "screencast-stop"
35020
+ "cliEquivalent": "screencast-stop",
35021
+ "example": "npx opendevbrowser screencast-stop --session-id s1 --screencast-id cast-1 --output-format json"
34611
35022
  },
34612
35023
  {
34613
35024
  "name": "opendevbrowser_dialog",
34614
35025
  "description": "Inspect or handle a JavaScript dialog.",
34615
- "cliEquivalent": "dialog"
35026
+ "cliEquivalent": "dialog",
35027
+ "example": "npx opendevbrowser dialog --session-id s1 --action status --output-format json"
34616
35028
  },
34617
35029
  {
34618
35030
  "name": "opendevbrowser_desktop_status",
34619
35031
  "description": "Inspect public read-only desktop observation availability.",
34620
- "cliEquivalent": "desktop-status"
35032
+ "cliEquivalent": "desktop-status",
35033
+ "example": "npx opendevbrowser desktop-status --timeout-ms 5000 --output-format json"
34621
35034
  },
34622
35035
  {
34623
35036
  "name": "opendevbrowser_desktop_windows",
34624
35037
  "description": "List windows exposed by the public read-only desktop observation plane.",
34625
- "cliEquivalent": "desktop-windows"
35038
+ "cliEquivalent": "desktop-windows",
35039
+ "example": 'npx opendevbrowser desktop-windows --reason "inventory browser-adjacent windows" --output-format json'
34626
35040
  },
34627
35041
  {
34628
35042
  "name": "opendevbrowser_desktop_active_window",
34629
35043
  "description": "Inspect the active window through the public read-only desktop observation plane.",
34630
- "cliEquivalent": "desktop-active-window"
35044
+ "cliEquivalent": "desktop-active-window",
35045
+ "example": 'npx opendevbrowser desktop-active-window --reason "capture active browser context" --output-format json'
34631
35046
  },
34632
35047
  {
34633
35048
  "name": "opendevbrowser_desktop_capture_desktop",
34634
35049
  "description": "Capture the current desktop surface through the public read-only desktop observation plane.",
34635
- "cliEquivalent": "desktop-capture-desktop"
35050
+ "cliEquivalent": "desktop-capture-desktop",
35051
+ "example": 'npx opendevbrowser desktop-capture-desktop --reason "capture login checkpoint state" --output-format json'
34636
35052
  },
34637
35053
  {
34638
35054
  "name": "opendevbrowser_desktop_capture_window",
34639
35055
  "description": "Capture a specific window through the public read-only desktop observation plane.",
34640
- "cliEquivalent": "desktop-capture-window"
35056
+ "cliEquivalent": "desktop-capture-window",
35057
+ "example": 'npx opendevbrowser desktop-capture-window --window-id 101 --reason "capture browser window" --output-format json'
34641
35058
  },
34642
35059
  {
34643
35060
  "name": "opendevbrowser_desktop_accessibility_snapshot",
34644
35061
  "description": "Capture desktop accessibility state through the public read-only desktop observation plane.",
34645
- "cliEquivalent": "desktop-accessibility-snapshot"
35062
+ "cliEquivalent": "desktop-accessibility-snapshot",
35063
+ "example": 'npx opendevbrowser desktop-accessibility-snapshot --reason "inspect current browser-adjacent labels" --window-id 101 --output-format json'
34646
35064
  },
34647
35065
  {
34648
35066
  "name": "opendevbrowser_annotate",
34649
35067
  "description": "Capture interactive annotations.",
34650
- "cliEquivalent": "annotate"
35068
+ "cliEquivalent": "annotate",
35069
+ "example": 'npx opendevbrowser annotate --session-id s1 --transport auto --context "review call to action spacing" --include-screenshots true --output-format json'
34651
35070
  },
34652
35071
  {
34653
35072
  "name": "opendevbrowser_skill_list",
34654
- "description": "List bundled and discovered skill packs before choosing a local onboarding or workflow lane."
35073
+ "description": "List bundled and discovered skill packs before choosing a local onboarding or workflow lane.",
35074
+ "example": "{}",
35075
+ "notes": [
35076
+ "Tool-only helper. Use it to inspect local workflow lanes before loading a pack."
35077
+ ]
34655
35078
  },
34656
35079
  {
34657
35080
  "name": "opendevbrowser_skill_load",
34658
- "description": "Load a specific skill pack locally, especially the bundled best-practices quick start."
35081
+ "description": "Load a specific skill pack locally, especially the bundled best-practices quick start.",
35082
+ "example": '{"name":"opendevbrowser-best-practices","topic":"quick start"}',
35083
+ "notes": [
35084
+ "Tool-only helper. Use it to load opendevbrowser-best-practices or design-agent guidance directly into the current agent context."
35085
+ ]
34659
35086
  }
34660
35087
  ],
34661
35088
  "cliToolPairs": [
@@ -34944,18 +35371,22 @@ var CLI_COMMAND_HELP_DETAILS = Object.fromEntries(
34944
35371
  {
34945
35372
  description: command.description,
34946
35373
  usage: command.usage,
34947
- flags: [...command.flags]
35374
+ flags: [...command.flags],
35375
+ examples: [...command.examples],
35376
+ notes: [...command.notes]
34948
35377
  }
34949
35378
  ])
34950
35379
  );
34951
- var COMMANDS_BY_GROUP = new Map(
35380
+ var COMMANDS_BY_GROUP = Object.fromEntries(
34952
35381
  PUBLIC_SURFACE_MANIFEST.cli.groups.map((group) => [
34953
35382
  group.id,
34954
35383
  PUBLIC_SURFACE_MANIFEST.cli.commands.filter((command) => command.groupId === group.id).map((command) => ({
34955
35384
  name: command.name,
34956
35385
  description: command.description,
34957
35386
  usage: command.usage,
34958
- flags: [...command.flags]
35387
+ flags: [...command.flags],
35388
+ examples: [...command.examples],
35389
+ notes: [...command.notes]
34959
35390
  }))
34960
35391
  ])
34961
35392
  );
@@ -34963,12 +35394,14 @@ var PUBLIC_CLI_COMMAND_GROUPS = PUBLIC_SURFACE_MANIFEST.cli.groups.map((group) =
34963
35394
  id: group.id,
34964
35395
  title: group.title,
34965
35396
  summary: group.summary,
34966
- commands: COMMANDS_BY_GROUP.get(group.id) ?? []
35397
+ commands: COMMANDS_BY_GROUP[group.id]
34967
35398
  }));
34968
35399
  var TOOL_SURFACE_ENTRIES = PUBLIC_SURFACE_MANIFEST.tools.entries.map((entry) => ({
34969
35400
  name: entry.name,
34970
35401
  description: entry.description,
34971
- ...entry.cliEquivalent ? { cliEquivalent: entry.cliEquivalent } : {}
35402
+ ...entry.cliEquivalent ? { cliEquivalent: entry.cliEquivalent } : {},
35403
+ example: entry.example,
35404
+ ...entry.notes ? { notes: [...entry.notes] } : {}
34972
35405
  }));
34973
35406
 
34974
35407
  export {
@@ -35019,4 +35452,4 @@ export {
35019
35452
  TOOL_SURFACE_ENTRIES
35020
35453
  };
35021
35454
  /* v8 ignore next -- @preserve */
35022
- //# sourceMappingURL=chunk-OGE5KJ4X.js.map
35455
+ //# sourceMappingURL=chunk-2MG7BRPF.js.map