opendevbrowser 0.0.21 → 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 (54) hide show
  1. package/README.md +13 -3
  2. package/dist/{chunk-4KVXCXV3.js → chunk-2MG7BRPF.js} +521 -84
  3. package/dist/{chunk-4KVXCXV3.js.map → chunk-2MG7BRPF.js.map} +1 -1
  4. package/dist/chunk-3ILXPKSJ.js +86 -0
  5. package/dist/chunk-3ILXPKSJ.js.map +1 -0
  6. package/dist/{chunk-ZE2E7ZGH.js → chunk-K2TEHJCV.js} +240 -33
  7. package/dist/chunk-K2TEHJCV.js.map +1 -0
  8. package/dist/chunk-QVWOPIZJ.js +612 -0
  9. package/dist/chunk-QVWOPIZJ.js.map +1 -0
  10. package/dist/{chunk-3VA6XR25.js → chunk-STGGGVYT.js} +23 -100
  11. package/dist/chunk-STGGGVYT.js.map +1 -0
  12. package/dist/cli/commands/macro-resolve.d.ts.map +1 -1
  13. package/dist/cli/commands/uninstall.d.ts +1 -0
  14. package/dist/cli/commands/uninstall.d.ts.map +1 -1
  15. package/dist/cli/daemon-commands.d.ts.map +1 -1
  16. package/dist/cli/help.d.ts.map +1 -1
  17. package/dist/cli/index.js +298 -618
  18. package/dist/cli/index.js.map +1 -1
  19. package/dist/cli/installers/postinstall-skill-sync.d.ts +15 -0
  20. package/dist/cli/installers/postinstall-skill-sync.d.ts.map +1 -0
  21. package/dist/cli/installers/postinstall-skill-sync.js +48 -0
  22. package/dist/cli/installers/postinstall-skill-sync.js.map +1 -0
  23. package/dist/cli/installers/skills.d.ts +9 -14
  24. package/dist/cli/installers/skills.d.ts.map +1 -1
  25. package/dist/cli/skill-lifecycle.d.ts +26 -0
  26. package/dist/cli/skill-lifecycle.d.ts.map +1 -0
  27. package/dist/cli/update-skill-modes.d.ts +3 -0
  28. package/dist/cli/update-skill-modes.d.ts.map +1 -0
  29. package/dist/cli/utils/workflow-message.d.ts +1 -0
  30. package/dist/cli/utils/workflow-message.d.ts.map +1 -1
  31. package/dist/index.js +25 -9
  32. package/dist/index.js.map +1 -1
  33. package/dist/opendevbrowser.js +25 -9
  34. package/dist/opendevbrowser.js.map +1 -1
  35. package/dist/providers/social/platform.d.ts.map +1 -1
  36. package/dist/providers/social/search-quality.d.ts.map +1 -1
  37. package/dist/providers/social/youtube.d.ts.map +1 -1
  38. package/dist/providers/workflow-handoff.d.ts +27 -3
  39. package/dist/providers/workflow-handoff.d.ts.map +1 -1
  40. package/dist/providers/workflows.d.ts +1 -0
  41. package/dist/providers/workflows.d.ts.map +1 -1
  42. package/dist/{providers-ZIVHHH4F.js → providers-6YVHKTOJ.js} +2 -2
  43. package/dist/public-surface/generated-manifest.d.ts +162 -4
  44. package/dist/public-surface/generated-manifest.d.ts.map +1 -1
  45. package/dist/public-surface/source.d.ts +12 -6
  46. package/dist/public-surface/source.d.ts.map +1 -1
  47. package/dist/skills/skill-loader.js +2 -1
  48. package/dist/tools/macro_resolve.d.ts.map +1 -1
  49. package/extension/manifest.json +1 -1
  50. package/package.json +6 -4
  51. package/scripts/postinstall-sync-skills.mjs +33 -0
  52. package/dist/chunk-3VA6XR25.js.map +0 -1
  53. package/dist/chunk-ZE2E7ZGH.js.map +0 -1
  54. /package/dist/{providers-ZIVHHH4F.js.map → providers-6YVHKTOJ.js.map} +0 -0
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  SkillLoader
3
- } from "./chunk-3VA6XR25.js";
3
+ } from "./chunk-STGGGVYT.js";
4
4
  import {
5
5
  writeFileAtomic
6
6
  } from "./chunk-TBUCZX4A.js";
@@ -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-17T01:10:55.127Z",
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."
@@ -32637,11 +32656,18 @@ var PUBLIC_SURFACE_MANIFEST = {
32637
32656
  {
32638
32657
  "name": "update",
32639
32658
  "description": "Clear cached plugin and refresh managed skill packs",
32640
- "usage": "npx opendevbrowser update [--global|--local]",
32659
+ "usage": "npx opendevbrowser update [--global|--local] [--skills-global|--skills-local|--no-skills]",
32641
32660
  "flags": [
32642
32661
  "--global",
32643
- "--local"
32662
+ "--local",
32663
+ "--skills-global",
32664
+ "--skills-local",
32665
+ "--no-skills"
32666
+ ],
32667
+ "examples": [
32668
+ "npx opendevbrowser update --local --skills-local"
32644
32669
  ],
32670
+ "notes": [],
32645
32671
  "groupId": "install_lifecycle",
32646
32672
  "groupTitle": "Install & Lifecycle",
32647
32673
  "groupSummary": "Install, remove, and inspect CLI basics."
@@ -32649,13 +32675,18 @@ var PUBLIC_SURFACE_MANIFEST = {
32649
32675
  {
32650
32676
  "name": "uninstall",
32651
32677
  "description": "Remove plugin from config and clean managed skill packs",
32652
- "usage": "npx opendevbrowser uninstall [--global|--local] [--no-prompt] [--quiet]",
32678
+ "usage": "npx opendevbrowser uninstall [--global|--local] [--no-skills] [--no-prompt] [--quiet]",
32653
32679
  "flags": [
32654
32680
  "--global",
32655
32681
  "--local",
32682
+ "--no-skills",
32656
32683
  "--no-prompt",
32657
32684
  "--quiet"
32658
32685
  ],
32686
+ "examples": [
32687
+ "npx opendevbrowser uninstall --local --no-skills --no-prompt"
32688
+ ],
32689
+ "notes": [],
32659
32690
  "groupId": "install_lifecycle",
32660
32691
  "groupTitle": "Install & Lifecycle",
32661
32692
  "groupSummary": "Install, remove, and inspect CLI basics."
@@ -32667,6 +32698,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32667
32698
  "flags": [
32668
32699
  "--help"
32669
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
+ ],
32670
32707
  "groupId": "install_lifecycle",
32671
32708
  "groupTitle": "Install & Lifecycle",
32672
32709
  "groupSummary": "Install, remove, and inspect CLI basics."
@@ -32678,6 +32715,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32678
32715
  "flags": [
32679
32716
  "--version"
32680
32717
  ],
32718
+ "examples": [
32719
+ "npx opendevbrowser --version"
32720
+ ],
32721
+ "notes": [],
32681
32722
  "groupId": "install_lifecycle",
32682
32723
  "groupTitle": "Install & Lifecycle",
32683
32724
  "groupSummary": "Install, remove, and inspect CLI basics."
@@ -32691,6 +32732,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32691
32732
  "--token",
32692
32733
  "--stop"
32693
32734
  ],
32735
+ "examples": [
32736
+ "npx opendevbrowser serve --port 8788 --token local-dev-token"
32737
+ ],
32738
+ "notes": [],
32694
32739
  "groupId": "daemon_runtime",
32695
32740
  "groupTitle": "Daemon & Runtime",
32696
32741
  "groupSummary": "Run daemon services and single-process scripts."
@@ -32702,6 +32747,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32702
32747
  "flags": [
32703
32748
  "--output-format"
32704
32749
  ],
32750
+ "examples": [
32751
+ "npx opendevbrowser daemon status --output-format json"
32752
+ ],
32753
+ "notes": [],
32705
32754
  "groupId": "daemon_runtime",
32706
32755
  "groupTitle": "Daemon & Runtime",
32707
32756
  "groupSummary": "Run daemon services and single-process scripts."
@@ -32713,6 +32762,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32713
32762
  "flags": [
32714
32763
  "--output-format"
32715
32764
  ],
32765
+ "examples": [
32766
+ "npx opendevbrowser native status --output-format json"
32767
+ ],
32768
+ "notes": [],
32716
32769
  "groupId": "daemon_runtime",
32717
32770
  "groupTitle": "Daemon & Runtime",
32718
32771
  "groupSummary": "Run daemon services and single-process scripts."
@@ -32730,6 +32783,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32730
32783
  "--start-url",
32731
32784
  "--flag"
32732
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
+ ],
32733
32792
  "groupId": "daemon_runtime",
32734
32793
  "groupTitle": "Daemon & Runtime",
32735
32794
  "groupSummary": "Run daemon services and single-process scripts."
@@ -32751,6 +32810,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32751
32810
  "--wait-for-extension",
32752
32811
  "--wait-timeout-ms"
32753
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
+ ],
32754
32819
  "groupId": "session_lifecycle",
32755
32820
  "groupTitle": "Session Lifecycle",
32756
32821
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32766,6 +32831,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32766
32831
  "--start-url",
32767
32832
  "--extension-legacy"
32768
32833
  ],
32834
+ "examples": [
32835
+ "npx opendevbrowser connect --host 127.0.0.1 --cdp-port 9222 --output-format json"
32836
+ ],
32837
+ "notes": [],
32769
32838
  "groupId": "session_lifecycle",
32770
32839
  "groupTitle": "Session Lifecycle",
32771
32840
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32778,6 +32847,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32778
32847
  "--session-id",
32779
32848
  "--close-browser"
32780
32849
  ],
32850
+ "examples": [
32851
+ "npx opendevbrowser disconnect --session-id s1 --close-browser --output-format json"
32852
+ ],
32853
+ "notes": [],
32781
32854
  "groupId": "session_lifecycle",
32782
32855
  "groupTitle": "Session Lifecycle",
32783
32856
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32791,6 +32864,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32791
32864
  "--daemon",
32792
32865
  "--transport"
32793
32866
  ],
32867
+ "examples": [
32868
+ "npx opendevbrowser status --daemon --output-format json"
32869
+ ],
32870
+ "notes": [],
32794
32871
  "groupId": "session_lifecycle",
32795
32872
  "groupTitle": "Session Lifecycle",
32796
32873
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32805,6 +32882,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32805
32882
  "--challenge-automation-mode",
32806
32883
  "--timeout-ms"
32807
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": [],
32808
32889
  "groupId": "session_lifecycle",
32809
32890
  "groupTitle": "Session Lifecycle",
32810
32891
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32819,6 +32900,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32819
32900
  "--cookies-file",
32820
32901
  "--strict"
32821
32902
  ],
32903
+ "examples": [
32904
+ "npx opendevbrowser cookie-import --session-id s1 --cookies-file ./cookies.json --strict true --output-format json"
32905
+ ],
32906
+ "notes": [],
32822
32907
  "groupId": "session_lifecycle",
32823
32908
  "groupTitle": "Session Lifecycle",
32824
32909
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32831,6 +32916,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32831
32916
  "--session-id",
32832
32917
  "--url"
32833
32918
  ],
32919
+ "examples": [
32920
+ "npx opendevbrowser cookie-list --session-id s1 --url https://example.com --output-format json"
32921
+ ],
32922
+ "notes": [],
32834
32923
  "groupId": "session_lifecycle",
32835
32924
  "groupTitle": "Session Lifecycle",
32836
32925
  "groupSummary": "Launch, connect, and manage browser session state."
@@ -32857,6 +32946,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32857
32946
  "--cookie-policy-override",
32858
32947
  "--cookie-policy"
32859
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
+ ],
32860
32955
  "groupId": "provider_workflows",
32861
32956
  "groupTitle": "Provider Workflows",
32862
32957
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32881,6 +32976,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32881
32976
  "--cookie-policy-override",
32882
32977
  "--cookie-policy"
32883
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
+ ],
32884
32985
  "groupId": "provider_workflows",
32885
32986
  "groupTitle": "Provider Workflows",
32886
32987
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32904,6 +33005,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32904
33005
  "--output-dir",
32905
33006
  "--ttl-hours"
32906
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
+ ],
32907
33014
  "groupId": "provider_workflows",
32908
33015
  "groupTitle": "Provider Workflows",
32909
33016
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32926,6 +33033,13 @@ var PUBLIC_SURFACE_MANIFEST = {
32926
33033
  "--cookie-policy-override",
32927
33034
  "--cookie-policy"
32928
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
+ ],
32929
33043
  "groupId": "provider_workflows",
32930
33044
  "groupTitle": "Provider Workflows",
32931
33045
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32938,6 +33052,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32938
33052
  "--expired-only",
32939
33053
  "--output-dir"
32940
33054
  ],
33055
+ "examples": [
33056
+ "npx opendevbrowser artifacts cleanup --expired-only --output-dir /tmp/opendevbrowser --output-format json"
33057
+ ],
33058
+ "notes": [],
32941
33059
  "groupId": "provider_workflows",
32942
33060
  "groupTitle": "Provider Workflows",
32943
33061
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32954,6 +33072,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32954
33072
  "--timeout-ms",
32955
33073
  "--challenge-automation-mode"
32956
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
+ ],
32957
33081
  "groupId": "provider_workflows",
32958
33082
  "groupTitle": "Provider Workflows",
32959
33083
  "groupSummary": "Run research, shopping, media, and artifact workflows."
@@ -32968,6 +33092,12 @@ var PUBLIC_SURFACE_MANIFEST = {
32968
33092
  "--params-file",
32969
33093
  "--timeout-ms"
32970
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
+ ],
32971
33101
  "groupId": "design_canvas",
32972
33102
  "groupTitle": "Design Canvas",
32973
33103
  "groupSummary": "Execute typed /canvas commands for session, document, preview, and code-sync flows."
@@ -32982,6 +33112,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32982
33112
  "--wait-until",
32983
33113
  "--timeout-ms"
32984
33114
  ],
33115
+ "examples": [
33116
+ "npx opendevbrowser goto --session-id s1 --url https://example.com --wait-until networkidle --output-format json"
33117
+ ],
33118
+ "notes": [],
32985
33119
  "groupId": "navigation",
32986
33120
  "groupTitle": "Navigation",
32987
33121
  "groupSummary": "Move through pages and capture fresh refs."
@@ -32997,6 +33131,10 @@ var PUBLIC_SURFACE_MANIFEST = {
32997
33131
  "--until",
32998
33132
  "--timeout-ms"
32999
33133
  ],
33134
+ "examples": [
33135
+ "npx opendevbrowser wait --session-id s1 --state networkidle --timeout-ms 30000 --output-format json"
33136
+ ],
33137
+ "notes": [],
33000
33138
  "groupId": "navigation",
33001
33139
  "groupTitle": "Navigation",
33002
33140
  "groupSummary": "Move through pages and capture fresh refs."
@@ -33012,6 +33150,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33012
33150
  "--cursor",
33013
33151
  "--timeout-ms"
33014
33152
  ],
33153
+ "examples": [
33154
+ "npx opendevbrowser snapshot --session-id s1 --mode actionables --max-chars 4000 --output-format json"
33155
+ ],
33156
+ "notes": [],
33015
33157
  "groupId": "navigation",
33016
33158
  "groupTitle": "Navigation",
33017
33159
  "groupSummary": "Move through pages and capture fresh refs."
@@ -33027,6 +33169,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33027
33169
  "--cursor",
33028
33170
  "--timeout-ms"
33029
33171
  ],
33172
+ "examples": [
33173
+ "npx opendevbrowser review --session-id s1 --target-id page-1 --output-format json"
33174
+ ],
33175
+ "notes": [],
33030
33176
  "groupId": "navigation",
33031
33177
  "groupTitle": "Navigation",
33032
33178
  "groupSummary": "Move through pages and capture fresh refs."
@@ -33043,6 +33189,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33043
33189
  "--cursor",
33044
33190
  "--timeout-ms"
33045
33191
  ],
33192
+ "examples": [
33193
+ 'npx opendevbrowser review-desktop --session-id s1 --reason "trace challenge state" --output-format json'
33194
+ ],
33195
+ "notes": [],
33046
33196
  "groupId": "navigation",
33047
33197
  "groupTitle": "Navigation",
33048
33198
  "groupSummary": "Move through pages and capture fresh refs."
@@ -33057,6 +33207,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33057
33207
  "--target-id",
33058
33208
  "--timeout-ms"
33059
33209
  ],
33210
+ "examples": [
33211
+ "npx opendevbrowser click --session-id s1 --ref r12 --output-format json"
33212
+ ],
33213
+ "notes": [],
33060
33214
  "groupId": "interaction",
33061
33215
  "groupTitle": "Interaction",
33062
33216
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33069,6 +33223,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33069
33223
  "--session-id",
33070
33224
  "--ref"
33071
33225
  ],
33226
+ "examples": [
33227
+ "npx opendevbrowser hover --session-id s1 --ref r12 --output-format json"
33228
+ ],
33229
+ "notes": [],
33072
33230
  "groupId": "interaction",
33073
33231
  "groupTitle": "Interaction",
33074
33232
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33082,6 +33240,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33082
33240
  "--key",
33083
33241
  "--ref"
33084
33242
  ],
33243
+ "examples": [
33244
+ "npx opendevbrowser press --session-id s1 --key Enter --ref r12 --output-format json"
33245
+ ],
33246
+ "notes": [],
33085
33247
  "groupId": "interaction",
33086
33248
  "groupTitle": "Interaction",
33087
33249
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33094,6 +33256,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33094
33256
  "--session-id",
33095
33257
  "--ref"
33096
33258
  ],
33259
+ "examples": [
33260
+ "npx opendevbrowser check --session-id s1 --ref r12 --output-format json"
33261
+ ],
33262
+ "notes": [],
33097
33263
  "groupId": "interaction",
33098
33264
  "groupTitle": "Interaction",
33099
33265
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33106,6 +33272,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33106
33272
  "--session-id",
33107
33273
  "--ref"
33108
33274
  ],
33275
+ "examples": [
33276
+ "npx opendevbrowser uncheck --session-id s1 --ref r12 --output-format json"
33277
+ ],
33278
+ "notes": [],
33109
33279
  "groupId": "interaction",
33110
33280
  "groupTitle": "Interaction",
33111
33281
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33121,6 +33291,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33121
33291
  "--clear",
33122
33292
  "--submit"
33123
33293
  ],
33294
+ "examples": [
33295
+ 'npx opendevbrowser type --session-id s1 --ref r12 --text "agent@example.com" --clear --output-format json'
33296
+ ],
33297
+ "notes": [],
33124
33298
  "groupId": "interaction",
33125
33299
  "groupTitle": "Interaction",
33126
33300
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33134,6 +33308,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33134
33308
  "--ref",
33135
33309
  "--values"
33136
33310
  ],
33311
+ "examples": [
33312
+ "npx opendevbrowser select --session-id s1 --ref r12 --values us,ca --output-format json"
33313
+ ],
33314
+ "notes": [],
33137
33315
  "groupId": "interaction",
33138
33316
  "groupTitle": "Interaction",
33139
33317
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33147,6 +33325,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33147
33325
  "--dy",
33148
33326
  "--ref"
33149
33327
  ],
33328
+ "examples": [
33329
+ "npx opendevbrowser scroll --session-id s1 --dy 1000 --output-format json"
33330
+ ],
33331
+ "notes": [],
33150
33332
  "groupId": "interaction",
33151
33333
  "groupTitle": "Interaction",
33152
33334
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33159,6 +33341,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33159
33341
  "--session-id",
33160
33342
  "--ref"
33161
33343
  ],
33344
+ "examples": [
33345
+ "npx opendevbrowser scroll-into-view --session-id s1 --ref r12 --output-format json"
33346
+ ],
33347
+ "notes": [],
33162
33348
  "groupId": "interaction",
33163
33349
  "groupTitle": "Interaction",
33164
33350
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33173,6 +33359,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33173
33359
  "--files",
33174
33360
  "--target-id"
33175
33361
  ],
33362
+ "examples": [
33363
+ "npx opendevbrowser upload --session-id s1 --ref r12 --files ./draft.pdf,./hero.png --output-format json"
33364
+ ],
33365
+ "notes": [],
33176
33366
  "groupId": "interaction",
33177
33367
  "groupTitle": "Interaction",
33178
33368
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33188,6 +33378,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33188
33378
  "--steps",
33189
33379
  "--target-id"
33190
33380
  ],
33381
+ "examples": [
33382
+ "npx opendevbrowser pointer-move --session-id s1 --x 320 --y 240 --steps 12 --output-format json"
33383
+ ],
33384
+ "notes": [],
33191
33385
  "groupId": "interaction",
33192
33386
  "groupTitle": "Interaction",
33193
33387
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33204,6 +33398,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33204
33398
  "--click-count",
33205
33399
  "--target-id"
33206
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": [],
33207
33405
  "groupId": "interaction",
33208
33406
  "groupTitle": "Interaction",
33209
33407
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33220,6 +33418,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33220
33418
  "--click-count",
33221
33419
  "--target-id"
33222
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": [],
33223
33425
  "groupId": "interaction",
33224
33426
  "groupTitle": "Interaction",
33225
33427
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33237,6 +33439,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33237
33439
  "--steps",
33238
33440
  "--target-id"
33239
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": [],
33240
33446
  "groupId": "interaction",
33241
33447
  "groupTitle": "Interaction",
33242
33448
  "groupSummary": "Perform ref-based interactions in the active page."
@@ -33249,6 +33455,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33249
33455
  "--session-id",
33250
33456
  "--include-urls"
33251
33457
  ],
33458
+ "examples": [
33459
+ "npx opendevbrowser targets-list --session-id s1 --include-urls --output-format json"
33460
+ ],
33461
+ "notes": [],
33252
33462
  "groupId": "targets_pages",
33253
33463
  "groupTitle": "Targets & Pages",
33254
33464
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33261,6 +33471,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33261
33471
  "--session-id",
33262
33472
  "--target-id"
33263
33473
  ],
33474
+ "examples": [
33475
+ "npx opendevbrowser target-use --session-id s1 --target-id page-2 --output-format json"
33476
+ ],
33477
+ "notes": [],
33264
33478
  "groupId": "targets_pages",
33265
33479
  "groupTitle": "Targets & Pages",
33266
33480
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33273,6 +33487,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33273
33487
  "--session-id",
33274
33488
  "--url"
33275
33489
  ],
33490
+ "examples": [
33491
+ "npx opendevbrowser target-new --session-id s1 --url https://example.com/docs --output-format json"
33492
+ ],
33493
+ "notes": [],
33276
33494
  "groupId": "targets_pages",
33277
33495
  "groupTitle": "Targets & Pages",
33278
33496
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33285,6 +33503,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33285
33503
  "--session-id",
33286
33504
  "--target-id"
33287
33505
  ],
33506
+ "examples": [
33507
+ "npx opendevbrowser target-close --session-id s1 --target-id page-2 --output-format json"
33508
+ ],
33509
+ "notes": [],
33288
33510
  "groupId": "targets_pages",
33289
33511
  "groupTitle": "Targets & Pages",
33290
33512
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33298,6 +33520,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33298
33520
  "--name",
33299
33521
  "--url"
33300
33522
  ],
33523
+ "examples": [
33524
+ "npx opendevbrowser page --session-id s1 --name settings --url https://example.com/settings --output-format json"
33525
+ ],
33526
+ "notes": [],
33301
33527
  "groupId": "targets_pages",
33302
33528
  "groupTitle": "Targets & Pages",
33303
33529
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33309,6 +33535,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33309
33535
  "flags": [
33310
33536
  "--session-id"
33311
33537
  ],
33538
+ "examples": [
33539
+ "npx opendevbrowser pages --session-id s1 --output-format json"
33540
+ ],
33541
+ "notes": [],
33312
33542
  "groupId": "targets_pages",
33313
33543
  "groupTitle": "Targets & Pages",
33314
33544
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33321,6 +33551,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33321
33551
  "--session-id",
33322
33552
  "--name"
33323
33553
  ],
33554
+ "examples": [
33555
+ "npx opendevbrowser page-close --session-id s1 --name settings --output-format json"
33556
+ ],
33557
+ "notes": [],
33324
33558
  "groupId": "targets_pages",
33325
33559
  "groupTitle": "Targets & Pages",
33326
33560
  "groupSummary": "Manage tabs, targets, and named pages."
@@ -33334,6 +33568,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33334
33568
  "--ref",
33335
33569
  "--max-chars"
33336
33570
  ],
33571
+ "examples": [
33572
+ "npx opendevbrowser dom-html --session-id s1 --ref r12 --max-chars 2000 --output-format json"
33573
+ ],
33574
+ "notes": [],
33337
33575
  "groupId": "dom_export",
33338
33576
  "groupTitle": "DOM & Export",
33339
33577
  "groupSummary": "Read DOM state and export page or component code."
@@ -33347,6 +33585,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33347
33585
  "--ref",
33348
33586
  "--max-chars"
33349
33587
  ],
33588
+ "examples": [
33589
+ "npx opendevbrowser dom-text --session-id s1 --ref r12 --max-chars 500 --output-format json"
33590
+ ],
33591
+ "notes": [],
33350
33592
  "groupId": "dom_export",
33351
33593
  "groupTitle": "DOM & Export",
33352
33594
  "groupSummary": "Read DOM state and export page or component code."
@@ -33360,6 +33602,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33360
33602
  "--ref",
33361
33603
  "--attr"
33362
33604
  ],
33605
+ "examples": [
33606
+ "npx opendevbrowser dom-attr --session-id s1 --ref r12 --attr aria-label --output-format json"
33607
+ ],
33608
+ "notes": [],
33363
33609
  "groupId": "dom_export",
33364
33610
  "groupTitle": "DOM & Export",
33365
33611
  "groupSummary": "Read DOM state and export page or component code."
@@ -33372,6 +33618,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33372
33618
  "--session-id",
33373
33619
  "--ref"
33374
33620
  ],
33621
+ "examples": [
33622
+ "npx opendevbrowser dom-value --session-id s1 --ref r12 --output-format json"
33623
+ ],
33624
+ "notes": [],
33375
33625
  "groupId": "dom_export",
33376
33626
  "groupTitle": "DOM & Export",
33377
33627
  "groupSummary": "Read DOM state and export page or component code."
@@ -33384,6 +33634,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33384
33634
  "--session-id",
33385
33635
  "--ref"
33386
33636
  ],
33637
+ "examples": [
33638
+ "npx opendevbrowser dom-visible --session-id s1 --ref r12 --output-format json"
33639
+ ],
33640
+ "notes": [],
33387
33641
  "groupId": "dom_export",
33388
33642
  "groupTitle": "DOM & Export",
33389
33643
  "groupSummary": "Read DOM state and export page or component code."
@@ -33396,6 +33650,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33396
33650
  "--session-id",
33397
33651
  "--ref"
33398
33652
  ],
33653
+ "examples": [
33654
+ "npx opendevbrowser dom-enabled --session-id s1 --ref r12 --output-format json"
33655
+ ],
33656
+ "notes": [],
33399
33657
  "groupId": "dom_export",
33400
33658
  "groupTitle": "DOM & Export",
33401
33659
  "groupSummary": "Read DOM state and export page or component code."
@@ -33408,6 +33666,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33408
33666
  "--session-id",
33409
33667
  "--ref"
33410
33668
  ],
33669
+ "examples": [
33670
+ "npx opendevbrowser dom-checked --session-id s1 --ref r12 --output-format json"
33671
+ ],
33672
+ "notes": [],
33411
33673
  "groupId": "dom_export",
33412
33674
  "groupTitle": "DOM & Export",
33413
33675
  "groupSummary": "Read DOM state and export page or component code."
@@ -33421,6 +33683,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33421
33683
  "--target-id",
33422
33684
  "--path"
33423
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": [],
33424
33690
  "groupId": "dom_export",
33425
33691
  "groupTitle": "DOM & Export",
33426
33692
  "groupSummary": "Read DOM state and export page or component code."
@@ -33435,6 +33701,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33435
33701
  "--target-id",
33436
33702
  "--path"
33437
33703
  ],
33704
+ "examples": [
33705
+ "npx opendevbrowser clone-component --session-id s1 --ref r12 --path ./exports/component.tsx --output-format json"
33706
+ ],
33707
+ "notes": [],
33438
33708
  "groupId": "dom_export",
33439
33709
  "groupTitle": "DOM & Export",
33440
33710
  "groupSummary": "Read DOM state and export page or component code."
@@ -33452,6 +33722,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33452
33722
  "--max",
33453
33723
  "--request-id"
33454
33724
  ],
33725
+ "examples": [
33726
+ "npx opendevbrowser session-inspector --session-id s1 --include-urls --max 20 --output-format json"
33727
+ ],
33728
+ "notes": [],
33455
33729
  "groupId": "diagnostics_annotation",
33456
33730
  "groupTitle": "Diagnostics & Annotation",
33457
33731
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33466,6 +33740,12 @@ var PUBLIC_SURFACE_MANIFEST = {
33466
33740
  "--challenge-automation-mode",
33467
33741
  "--timeout-ms"
33468
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
+ ],
33469
33749
  "groupId": "diagnostics_annotation",
33470
33750
  "groupTitle": "Diagnostics & Annotation",
33471
33751
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33489,6 +33769,12 @@ var PUBLIC_SURFACE_MANIFEST = {
33489
33769
  "--challenge-automation-mode",
33490
33770
  "--timeout-ms"
33491
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
+ ],
33492
33778
  "groupId": "diagnostics_annotation",
33493
33779
  "groupTitle": "Diagnostics & Annotation",
33494
33780
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33500,6 +33786,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33500
33786
  "flags": [
33501
33787
  "--session-id"
33502
33788
  ],
33789
+ "examples": [
33790
+ "npx opendevbrowser perf --session-id s1 --output-format json"
33791
+ ],
33792
+ "notes": [],
33503
33793
  "groupId": "diagnostics_annotation",
33504
33794
  "groupTitle": "Diagnostics & Annotation",
33505
33795
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33516,6 +33806,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33516
33806
  "--full-page",
33517
33807
  "--timeout-ms"
33518
33808
  ],
33809
+ "examples": [
33810
+ "npx opendevbrowser screenshot --session-id s1 --path ./artifacts/page.png --full-page --output-format json"
33811
+ ],
33812
+ "notes": [],
33519
33813
  "groupId": "diagnostics_annotation",
33520
33814
  "groupTitle": "Diagnostics & Annotation",
33521
33815
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33531,6 +33825,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33531
33825
  "--prompt-text",
33532
33826
  "--timeout-ms"
33533
33827
  ],
33828
+ "examples": [
33829
+ "npx opendevbrowser dialog --session-id s1 --action status --output-format json"
33830
+ ],
33831
+ "notes": [],
33534
33832
  "groupId": "diagnostics_annotation",
33535
33833
  "groupTitle": "Diagnostics & Annotation",
33536
33834
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33544,6 +33842,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33544
33842
  "--since-seq",
33545
33843
  "--max"
33546
33844
  ],
33845
+ "examples": [
33846
+ "npx opendevbrowser console-poll --session-id s1 --max 50 --output-format json"
33847
+ ],
33848
+ "notes": [],
33547
33849
  "groupId": "diagnostics_annotation",
33548
33850
  "groupTitle": "Diagnostics & Annotation",
33549
33851
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33557,6 +33859,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33557
33859
  "--since-seq",
33558
33860
  "--max"
33559
33861
  ],
33862
+ "examples": [
33863
+ "npx opendevbrowser network-poll --session-id s1 --max 50 --output-format json"
33864
+ ],
33865
+ "notes": [],
33560
33866
  "groupId": "diagnostics_annotation",
33561
33867
  "groupTitle": "Diagnostics & Annotation",
33562
33868
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33573,6 +33879,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33573
33879
  "--max",
33574
33880
  "--request-id"
33575
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": [],
33576
33886
  "groupId": "diagnostics_annotation",
33577
33887
  "groupTitle": "Diagnostics & Annotation",
33578
33888
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33594,6 +33904,12 @@ var PUBLIC_SURFACE_MANIFEST = {
33594
33904
  "--include-screenshots",
33595
33905
  "--timeout-ms"
33596
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
+ ],
33597
33913
  "groupId": "diagnostics_annotation",
33598
33914
  "groupTitle": "Diagnostics & Annotation",
33599
33915
  "groupSummary": "Collect session-centric diagnostics, trace proof, and annotation payloads."
@@ -33610,6 +33926,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33610
33926
  "--max-frames",
33611
33927
  "--timeout-ms"
33612
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": [],
33613
33933
  "groupId": "browser_replay",
33614
33934
  "groupTitle": "Browser Replay",
33615
33935
  "groupSummary": "Capture temporal replay artifacts through the public browser replay lane for a browser target."
@@ -33623,6 +33943,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33623
33943
  "--screencast-id",
33624
33944
  "--timeout-ms"
33625
33945
  ],
33946
+ "examples": [
33947
+ "npx opendevbrowser screencast-stop --session-id s1 --screencast-id cast-1 --output-format json"
33948
+ ],
33949
+ "notes": [],
33626
33950
  "groupId": "browser_replay",
33627
33951
  "groupTitle": "Browser Replay",
33628
33952
  "groupSummary": "Capture temporal replay artifacts through the public browser replay lane for a browser target."
@@ -33634,6 +33958,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33634
33958
  "flags": [
33635
33959
  "--timeout-ms"
33636
33960
  ],
33961
+ "examples": [
33962
+ "npx opendevbrowser desktop-status --timeout-ms 5000 --output-format json"
33963
+ ],
33964
+ "notes": [],
33637
33965
  "groupId": "desktop_observation",
33638
33966
  "groupTitle": "Desktop Observation",
33639
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."
@@ -33646,6 +33974,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33646
33974
  "--reason",
33647
33975
  "--timeout-ms"
33648
33976
  ],
33977
+ "examples": [
33978
+ 'npx opendevbrowser desktop-windows --reason "inventory browser-adjacent windows" --output-format json'
33979
+ ],
33980
+ "notes": [],
33649
33981
  "groupId": "desktop_observation",
33650
33982
  "groupTitle": "Desktop Observation",
33651
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."
@@ -33658,6 +33990,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33658
33990
  "--reason",
33659
33991
  "--timeout-ms"
33660
33992
  ],
33993
+ "examples": [
33994
+ 'npx opendevbrowser desktop-active-window --reason "capture active browser context" --output-format json'
33995
+ ],
33996
+ "notes": [],
33661
33997
  "groupId": "desktop_observation",
33662
33998
  "groupTitle": "Desktop Observation",
33663
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."
@@ -33670,6 +34006,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33670
34006
  "--reason",
33671
34007
  "--timeout-ms"
33672
34008
  ],
34009
+ "examples": [
34010
+ 'npx opendevbrowser desktop-capture-desktop --reason "capture login checkpoint state" --output-format json'
34011
+ ],
34012
+ "notes": [],
33673
34013
  "groupId": "desktop_observation",
33674
34014
  "groupTitle": "Desktop Observation",
33675
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."
@@ -33683,6 +34023,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33683
34023
  "--reason",
33684
34024
  "--timeout-ms"
33685
34025
  ],
34026
+ "examples": [
34027
+ 'npx opendevbrowser desktop-capture-window --window-id 101 --reason "capture browser window" --output-format json'
34028
+ ],
34029
+ "notes": [],
33686
34030
  "groupId": "desktop_observation",
33687
34031
  "groupTitle": "Desktop Observation",
33688
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."
@@ -33696,6 +34040,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33696
34040
  "--window-id",
33697
34041
  "--timeout-ms"
33698
34042
  ],
34043
+ "examples": [
34044
+ 'npx opendevbrowser desktop-accessibility-snapshot --reason "inspect current browser-adjacent labels" --window-id 101 --output-format json'
34045
+ ],
34046
+ "notes": [],
33699
34047
  "groupId": "desktop_observation",
33700
34048
  "groupTitle": "Desktop Observation",
33701
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."
@@ -33711,6 +34059,10 @@ var PUBLIC_SURFACE_MANIFEST = {
33711
34059
  "--params-file",
33712
34060
  "--timeout-ms"
33713
34061
  ],
34062
+ "examples": [
34063
+ "npx opendevbrowser rpc --unsafe-internal --name browser.status --params-file ./rpc-params.json --output-format json"
34064
+ ],
34065
+ "notes": [],
33714
34066
  "groupId": "power",
33715
34067
  "groupTitle": "Power",
33716
34068
  "groupSummary": "Unsafe internal daemon passthrough."
@@ -34309,349 +34661,428 @@ var PUBLIC_SURFACE_MANIFEST = {
34309
34661
  {
34310
34662
  "name": "opendevbrowser_launch",
34311
34663
  "description": "Launch a managed browser session.",
34312
- "cliEquivalent": "launch"
34664
+ "cliEquivalent": "launch",
34665
+ "example": "npx opendevbrowser launch --no-extension --headless --start-url https://example.com --output-format json"
34313
34666
  },
34314
34667
  {
34315
34668
  "name": "opendevbrowser_connect",
34316
34669
  "description": "Connect to an existing browser session.",
34317
- "cliEquivalent": "connect"
34670
+ "cliEquivalent": "connect",
34671
+ "example": "npx opendevbrowser connect --host 127.0.0.1 --cdp-port 9222 --output-format json"
34318
34672
  },
34319
34673
  {
34320
34674
  "name": "opendevbrowser_disconnect",
34321
34675
  "description": "Disconnect a managed or connected session.",
34322
- "cliEquivalent": "disconnect"
34676
+ "cliEquivalent": "disconnect",
34677
+ "example": "npx opendevbrowser disconnect --session-id s1 --close-browser --output-format json"
34323
34678
  },
34324
34679
  {
34325
34680
  "name": "opendevbrowser_status",
34326
34681
  "description": "Inspect session and relay status.",
34327
- "cliEquivalent": "status"
34682
+ "cliEquivalent": "status",
34683
+ "example": "npx opendevbrowser status --daemon --output-format json"
34328
34684
  },
34329
34685
  {
34330
34686
  "name": "opendevbrowser_status_capabilities",
34331
34687
  "description": "Inspect runtime capability discovery for the host and an optional session.",
34332
- "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"
34333
34690
  },
34334
34691
  {
34335
34692
  "name": "opendevbrowser_session_inspector",
34336
34693
  "description": "Capture a session-first diagnostic bundle with relay health, trace proof, and a suggested next action.",
34337
- "cliEquivalent": "session-inspector"
34694
+ "cliEquivalent": "session-inspector",
34695
+ "example": "npx opendevbrowser session-inspector --session-id s1 --include-urls --max 20 --output-format json"
34338
34696
  },
34339
34697
  {
34340
34698
  "name": "opendevbrowser_session_inspector_plan",
34341
34699
  "description": "Inspect browser-scoped computer-use policy, eligibility, and safe suggested steps.",
34342
- "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"
34343
34702
  },
34344
34703
  {
34345
34704
  "name": "opendevbrowser_session_inspector_audit",
34346
34705
  "description": "Capture a correlated audit bundle across desktop evidence, browser review, and policy state.",
34347
- "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'
34348
34708
  },
34349
34709
  {
34350
34710
  "name": "opendevbrowser_targets_list",
34351
34711
  "description": "List available page targets/tabs.",
34352
- "cliEquivalent": "targets-list"
34712
+ "cliEquivalent": "targets-list",
34713
+ "example": "npx opendevbrowser targets-list --session-id s1 --include-urls --output-format json"
34353
34714
  },
34354
34715
  {
34355
34716
  "name": "opendevbrowser_target_use",
34356
34717
  "description": "Switch the active target by id.",
34357
- "cliEquivalent": "target-use"
34718
+ "cliEquivalent": "target-use",
34719
+ "example": "npx opendevbrowser target-use --session-id s1 --target-id page-2 --output-format json"
34358
34720
  },
34359
34721
  {
34360
34722
  "name": "opendevbrowser_target_new",
34361
34723
  "description": "Create a new target or tab.",
34362
- "cliEquivalent": "target-new"
34724
+ "cliEquivalent": "target-new",
34725
+ "example": "npx opendevbrowser target-new --session-id s1 --url https://example.com/docs --output-format json"
34363
34726
  },
34364
34727
  {
34365
34728
  "name": "opendevbrowser_target_close",
34366
34729
  "description": "Close a target or tab by id.",
34367
- "cliEquivalent": "target-close"
34730
+ "cliEquivalent": "target-close",
34731
+ "example": "npx opendevbrowser target-close --session-id s1 --target-id page-2 --output-format json"
34368
34732
  },
34369
34733
  {
34370
34734
  "name": "opendevbrowser_page",
34371
34735
  "description": "Open or focus a named page.",
34372
- "cliEquivalent": "page"
34736
+ "cliEquivalent": "page",
34737
+ "example": "npx opendevbrowser page --session-id s1 --name settings --url https://example.com/settings --output-format json"
34373
34738
  },
34374
34739
  {
34375
34740
  "name": "opendevbrowser_list",
34376
34741
  "description": "List named pages in the session.",
34377
- "cliEquivalent": "pages"
34742
+ "cliEquivalent": "pages",
34743
+ "example": "npx opendevbrowser pages --session-id s1 --output-format json"
34378
34744
  },
34379
34745
  {
34380
34746
  "name": "opendevbrowser_close",
34381
34747
  "description": "Close a named page.",
34382
- "cliEquivalent": "page-close"
34748
+ "cliEquivalent": "page-close",
34749
+ "example": "npx opendevbrowser page-close --session-id s1 --name settings --output-format json"
34383
34750
  },
34384
34751
  {
34385
34752
  "name": "opendevbrowser_goto",
34386
34753
  "description": "Navigate to a URL.",
34387
- "cliEquivalent": "goto"
34754
+ "cliEquivalent": "goto",
34755
+ "example": "npx opendevbrowser goto --session-id s1 --url https://example.com --wait-until networkidle --output-format json"
34388
34756
  },
34389
34757
  {
34390
34758
  "name": "opendevbrowser_wait",
34391
34759
  "description": "Wait for load, ref, or state conditions.",
34392
- "cliEquivalent": "wait"
34760
+ "cliEquivalent": "wait",
34761
+ "example": "npx opendevbrowser wait --session-id s1 --state networkidle --timeout-ms 30000 --output-format json"
34393
34762
  },
34394
34763
  {
34395
34764
  "name": "opendevbrowser_snapshot",
34396
34765
  "description": "Capture AX-tree refs for actions.",
34397
- "cliEquivalent": "snapshot"
34766
+ "cliEquivalent": "snapshot",
34767
+ "example": "npx opendevbrowser snapshot --session-id s1 --mode actionables --max-chars 4000 --output-format json"
34398
34768
  },
34399
34769
  {
34400
34770
  "name": "opendevbrowser_review",
34401
34771
  "description": "Capture a first-class review payload with status and actionables.",
34402
- "cliEquivalent": "review"
34772
+ "cliEquivalent": "review",
34773
+ "example": "npx opendevbrowser review --session-id s1 --target-id page-1 --output-format json"
34403
34774
  },
34404
34775
  {
34405
34776
  "name": "opendevbrowser_review_desktop",
34406
34777
  "description": "Capture desktop-assisted browser review with read-only desktop evidence and browser-owned verification.",
34407
- "cliEquivalent": "review-desktop"
34778
+ "cliEquivalent": "review-desktop",
34779
+ "example": 'npx opendevbrowser review-desktop --session-id s1 --reason "trace challenge state" --output-format json'
34408
34780
  },
34409
34781
  {
34410
34782
  "name": "opendevbrowser_click",
34411
34783
  "description": "Click an element by ref.",
34412
- "cliEquivalent": "click"
34784
+ "cliEquivalent": "click",
34785
+ "example": "npx opendevbrowser click --session-id s1 --ref r12 --output-format json"
34413
34786
  },
34414
34787
  {
34415
34788
  "name": "opendevbrowser_hover",
34416
34789
  "description": "Hover an element by ref.",
34417
- "cliEquivalent": "hover"
34790
+ "cliEquivalent": "hover",
34791
+ "example": "npx opendevbrowser hover --session-id s1 --ref r12 --output-format json"
34418
34792
  },
34419
34793
  {
34420
34794
  "name": "opendevbrowser_press",
34421
34795
  "description": "Send a keyboard key.",
34422
- "cliEquivalent": "press"
34796
+ "cliEquivalent": "press",
34797
+ "example": "npx opendevbrowser press --session-id s1 --key Enter --ref r12 --output-format json"
34423
34798
  },
34424
34799
  {
34425
34800
  "name": "opendevbrowser_check",
34426
34801
  "description": "Check a checkbox or radio by ref.",
34427
- "cliEquivalent": "check"
34802
+ "cliEquivalent": "check",
34803
+ "example": "npx opendevbrowser check --session-id s1 --ref r12 --output-format json"
34428
34804
  },
34429
34805
  {
34430
34806
  "name": "opendevbrowser_uncheck",
34431
34807
  "description": "Uncheck a checkbox or radio by ref.",
34432
- "cliEquivalent": "uncheck"
34808
+ "cliEquivalent": "uncheck",
34809
+ "example": "npx opendevbrowser uncheck --session-id s1 --ref r12 --output-format json"
34433
34810
  },
34434
34811
  {
34435
34812
  "name": "opendevbrowser_type",
34436
34813
  "description": "Type text into an input by ref.",
34437
- "cliEquivalent": "type"
34814
+ "cliEquivalent": "type",
34815
+ "example": 'npx opendevbrowser type --session-id s1 --ref r12 --text "agent@example.com" --clear --output-format json'
34438
34816
  },
34439
34817
  {
34440
34818
  "name": "opendevbrowser_select",
34441
34819
  "description": "Set select values by ref.",
34442
- "cliEquivalent": "select"
34820
+ "cliEquivalent": "select",
34821
+ "example": "npx opendevbrowser select --session-id s1 --ref r12 --values us,ca --output-format json"
34443
34822
  },
34444
34823
  {
34445
34824
  "name": "opendevbrowser_scroll",
34446
34825
  "description": "Scroll a page or element.",
34447
- "cliEquivalent": "scroll"
34826
+ "cliEquivalent": "scroll",
34827
+ "example": "npx opendevbrowser scroll --session-id s1 --dy 1000 --output-format json"
34448
34828
  },
34449
34829
  {
34450
34830
  "name": "opendevbrowser_scroll_into_view",
34451
34831
  "description": "Scroll a target element into view.",
34452
- "cliEquivalent": "scroll-into-view"
34832
+ "cliEquivalent": "scroll-into-view",
34833
+ "example": "npx opendevbrowser scroll-into-view --session-id s1 --ref r12 --output-format json"
34453
34834
  },
34454
34835
  {
34455
34836
  "name": "opendevbrowser_upload",
34456
34837
  "description": "Upload files to a file input or chooser by ref.",
34457
- "cliEquivalent": "upload"
34838
+ "cliEquivalent": "upload",
34839
+ "example": "npx opendevbrowser upload --session-id s1 --ref r12 --files ./draft.pdf,./hero.png --output-format json"
34458
34840
  },
34459
34841
  {
34460
34842
  "name": "opendevbrowser_pointer_move",
34461
34843
  "description": "Move the pointer to viewport coordinates.",
34462
- "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"
34463
34846
  },
34464
34847
  {
34465
34848
  "name": "opendevbrowser_pointer_down",
34466
34849
  "description": "Press a mouse button at viewport coordinates.",
34467
- "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"
34468
34852
  },
34469
34853
  {
34470
34854
  "name": "opendevbrowser_pointer_up",
34471
34855
  "description": "Release a mouse button at viewport coordinates.",
34472
- "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"
34473
34858
  },
34474
34859
  {
34475
34860
  "name": "opendevbrowser_pointer_drag",
34476
34861
  "description": "Drag the pointer between viewport coordinates.",
34477
- "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"
34478
34864
  },
34479
34865
  {
34480
34866
  "name": "opendevbrowser_dom_get_html",
34481
34867
  "description": "Get HTML for a page or ref.",
34482
- "cliEquivalent": "dom-html"
34868
+ "cliEquivalent": "dom-html",
34869
+ "example": "npx opendevbrowser dom-html --session-id s1 --ref r12 --max-chars 2000 --output-format json"
34483
34870
  },
34484
34871
  {
34485
34872
  "name": "opendevbrowser_dom_get_text",
34486
34873
  "description": "Get text for a page or ref.",
34487
- "cliEquivalent": "dom-text"
34874
+ "cliEquivalent": "dom-text",
34875
+ "example": "npx opendevbrowser dom-text --session-id s1 --ref r12 --max-chars 500 --output-format json"
34488
34876
  },
34489
34877
  {
34490
34878
  "name": "opendevbrowser_get_attr",
34491
34879
  "description": "Read a DOM attribute by ref.",
34492
- "cliEquivalent": "dom-attr"
34880
+ "cliEquivalent": "dom-attr",
34881
+ "example": "npx opendevbrowser dom-attr --session-id s1 --ref r12 --attr aria-label --output-format json"
34493
34882
  },
34494
34883
  {
34495
34884
  "name": "opendevbrowser_get_value",
34496
34885
  "description": "Read a form or control value by ref.",
34497
- "cliEquivalent": "dom-value"
34886
+ "cliEquivalent": "dom-value",
34887
+ "example": "npx opendevbrowser dom-value --session-id s1 --ref r12 --output-format json"
34498
34888
  },
34499
34889
  {
34500
34890
  "name": "opendevbrowser_is_visible",
34501
34891
  "description": "Check ref visibility.",
34502
- "cliEquivalent": "dom-visible"
34892
+ "cliEquivalent": "dom-visible",
34893
+ "example": "npx opendevbrowser dom-visible --session-id s1 --ref r12 --output-format json"
34503
34894
  },
34504
34895
  {
34505
34896
  "name": "opendevbrowser_is_enabled",
34506
34897
  "description": "Check ref enabled state.",
34507
- "cliEquivalent": "dom-enabled"
34898
+ "cliEquivalent": "dom-enabled",
34899
+ "example": "npx opendevbrowser dom-enabled --session-id s1 --ref r12 --output-format json"
34508
34900
  },
34509
34901
  {
34510
34902
  "name": "opendevbrowser_is_checked",
34511
34903
  "description": "Check ref checked state.",
34512
- "cliEquivalent": "dom-checked"
34904
+ "cliEquivalent": "dom-checked",
34905
+ "example": "npx opendevbrowser dom-checked --session-id s1 --ref r12 --output-format json"
34513
34906
  },
34514
34907
  {
34515
34908
  "name": "opendevbrowser_run",
34516
34909
  "description": "Execute multi-action automation scripts.",
34517
- "cliEquivalent": "run"
34910
+ "cliEquivalent": "run",
34911
+ "example": "npx opendevbrowser run --script ./workflow.json --headless --output-format json"
34518
34912
  },
34519
34913
  {
34520
34914
  "name": "opendevbrowser_prompting_guide",
34521
- "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
+ ]
34522
34920
  },
34523
34921
  {
34524
34922
  "name": "opendevbrowser_console_poll",
34525
34923
  "description": "Poll redacted console events.",
34526
- "cliEquivalent": "console-poll"
34924
+ "cliEquivalent": "console-poll",
34925
+ "example": "npx opendevbrowser console-poll --session-id s1 --max 50 --output-format json"
34527
34926
  },
34528
34927
  {
34529
34928
  "name": "opendevbrowser_network_poll",
34530
34929
  "description": "Poll redacted network events.",
34531
- "cliEquivalent": "network-poll"
34930
+ "cliEquivalent": "network-poll",
34931
+ "example": "npx opendevbrowser network-poll --session-id s1 --max 50 --output-format json"
34532
34932
  },
34533
34933
  {
34534
34934
  "name": "opendevbrowser_debug_trace_snapshot",
34535
34935
  "description": "Capture page, console, and network diagnostics.",
34536
- "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"
34537
34938
  },
34538
34939
  {
34539
34940
  "name": "opendevbrowser_cookie_import",
34540
34941
  "description": "Import validated cookies into a session.",
34541
- "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"
34542
34944
  },
34543
34945
  {
34544
34946
  "name": "opendevbrowser_cookie_list",
34545
34947
  "description": "List cookies in a session with optional URL filters.",
34546
- "cliEquivalent": "cookie-list"
34948
+ "cliEquivalent": "cookie-list",
34949
+ "example": "npx opendevbrowser cookie-list --session-id s1 --url https://example.com --output-format json"
34547
34950
  },
34548
34951
  {
34549
34952
  "name": "opendevbrowser_macro_resolve",
34550
34953
  "description": "Resolve or execute provider macro expressions.",
34551
- "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`
34552
34956
  },
34553
34957
  {
34554
34958
  "name": "opendevbrowser_research_run",
34555
34959
  "description": "Run the research workflow directly.",
34556
- "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'
34557
34962
  },
34558
34963
  {
34559
34964
  "name": "opendevbrowser_shopping_run",
34560
34965
  "description": "Run the shopping workflow directly.",
34561
- "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'
34562
34968
  },
34563
34969
  {
34564
34970
  "name": "opendevbrowser_product_video_run",
34565
34971
  "description": "Run the product-video asset workflow directly.",
34566
- "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'
34567
34974
  },
34568
34975
  {
34569
34976
  "name": "opendevbrowser_inspiredesign_run",
34570
34977
  "description": "Run the inspiredesign workflow directly.",
34571
- "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'
34572
34980
  },
34573
34981
  {
34574
34982
  "name": "opendevbrowser_canvas",
34575
34983
  "description": "Execute a typed design-canvas command surface call.",
34576
- "cliEquivalent": "canvas"
34984
+ "cliEquivalent": "canvas",
34985
+ "example": `npx opendevbrowser canvas --command canvas.session.open --params '{"label":"design review"}' --timeout-ms 120000 --output-format json`
34577
34986
  },
34578
34987
  {
34579
34988
  "name": "opendevbrowser_clone_page",
34580
34989
  "description": "Export the active page into React code.",
34581
- "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"
34582
34992
  },
34583
34993
  {
34584
34994
  "name": "opendevbrowser_clone_component",
34585
34995
  "description": "Export a component by ref into React code.",
34586
- "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"
34587
34998
  },
34588
34999
  {
34589
35000
  "name": "opendevbrowser_perf",
34590
35001
  "description": "Collect browser performance metrics.",
34591
- "cliEquivalent": "perf"
35002
+ "cliEquivalent": "perf",
35003
+ "example": "npx opendevbrowser perf --session-id s1 --output-format json"
34592
35004
  },
34593
35005
  {
34594
35006
  "name": "opendevbrowser_screenshot",
34595
35007
  "description": "Capture a page screenshot.",
34596
- "cliEquivalent": "screenshot"
35008
+ "cliEquivalent": "screenshot",
35009
+ "example": "npx opendevbrowser screenshot --session-id s1 --path ./artifacts/page.png --full-page --output-format json"
34597
35010
  },
34598
35011
  {
34599
35012
  "name": "opendevbrowser_screencast_start",
34600
35013
  "description": "Start a browser replay screencast capture.",
34601
- "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"
34602
35016
  },
34603
35017
  {
34604
35018
  "name": "opendevbrowser_screencast_stop",
34605
35019
  "description": "Stop a browser replay screencast capture.",
34606
- "cliEquivalent": "screencast-stop"
35020
+ "cliEquivalent": "screencast-stop",
35021
+ "example": "npx opendevbrowser screencast-stop --session-id s1 --screencast-id cast-1 --output-format json"
34607
35022
  },
34608
35023
  {
34609
35024
  "name": "opendevbrowser_dialog",
34610
35025
  "description": "Inspect or handle a JavaScript dialog.",
34611
- "cliEquivalent": "dialog"
35026
+ "cliEquivalent": "dialog",
35027
+ "example": "npx opendevbrowser dialog --session-id s1 --action status --output-format json"
34612
35028
  },
34613
35029
  {
34614
35030
  "name": "opendevbrowser_desktop_status",
34615
35031
  "description": "Inspect public read-only desktop observation availability.",
34616
- "cliEquivalent": "desktop-status"
35032
+ "cliEquivalent": "desktop-status",
35033
+ "example": "npx opendevbrowser desktop-status --timeout-ms 5000 --output-format json"
34617
35034
  },
34618
35035
  {
34619
35036
  "name": "opendevbrowser_desktop_windows",
34620
35037
  "description": "List windows exposed by the public read-only desktop observation plane.",
34621
- "cliEquivalent": "desktop-windows"
35038
+ "cliEquivalent": "desktop-windows",
35039
+ "example": 'npx opendevbrowser desktop-windows --reason "inventory browser-adjacent windows" --output-format json'
34622
35040
  },
34623
35041
  {
34624
35042
  "name": "opendevbrowser_desktop_active_window",
34625
35043
  "description": "Inspect the active window through the public read-only desktop observation plane.",
34626
- "cliEquivalent": "desktop-active-window"
35044
+ "cliEquivalent": "desktop-active-window",
35045
+ "example": 'npx opendevbrowser desktop-active-window --reason "capture active browser context" --output-format json'
34627
35046
  },
34628
35047
  {
34629
35048
  "name": "opendevbrowser_desktop_capture_desktop",
34630
35049
  "description": "Capture the current desktop surface through the public read-only desktop observation plane.",
34631
- "cliEquivalent": "desktop-capture-desktop"
35050
+ "cliEquivalent": "desktop-capture-desktop",
35051
+ "example": 'npx opendevbrowser desktop-capture-desktop --reason "capture login checkpoint state" --output-format json'
34632
35052
  },
34633
35053
  {
34634
35054
  "name": "opendevbrowser_desktop_capture_window",
34635
35055
  "description": "Capture a specific window through the public read-only desktop observation plane.",
34636
- "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'
34637
35058
  },
34638
35059
  {
34639
35060
  "name": "opendevbrowser_desktop_accessibility_snapshot",
34640
35061
  "description": "Capture desktop accessibility state through the public read-only desktop observation plane.",
34641
- "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'
34642
35064
  },
34643
35065
  {
34644
35066
  "name": "opendevbrowser_annotate",
34645
35067
  "description": "Capture interactive annotations.",
34646
- "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'
34647
35070
  },
34648
35071
  {
34649
35072
  "name": "opendevbrowser_skill_list",
34650
- "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
+ ]
34651
35078
  },
34652
35079
  {
34653
35080
  "name": "opendevbrowser_skill_load",
34654
- "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
+ ]
34655
35086
  }
34656
35087
  ],
34657
35088
  "cliToolPairs": [
@@ -34940,18 +35371,22 @@ var CLI_COMMAND_HELP_DETAILS = Object.fromEntries(
34940
35371
  {
34941
35372
  description: command.description,
34942
35373
  usage: command.usage,
34943
- flags: [...command.flags]
35374
+ flags: [...command.flags],
35375
+ examples: [...command.examples],
35376
+ notes: [...command.notes]
34944
35377
  }
34945
35378
  ])
34946
35379
  );
34947
- var COMMANDS_BY_GROUP = new Map(
35380
+ var COMMANDS_BY_GROUP = Object.fromEntries(
34948
35381
  PUBLIC_SURFACE_MANIFEST.cli.groups.map((group) => [
34949
35382
  group.id,
34950
35383
  PUBLIC_SURFACE_MANIFEST.cli.commands.filter((command) => command.groupId === group.id).map((command) => ({
34951
35384
  name: command.name,
34952
35385
  description: command.description,
34953
35386
  usage: command.usage,
34954
- flags: [...command.flags]
35387
+ flags: [...command.flags],
35388
+ examples: [...command.examples],
35389
+ notes: [...command.notes]
34955
35390
  }))
34956
35391
  ])
34957
35392
  );
@@ -34959,12 +35394,14 @@ var PUBLIC_CLI_COMMAND_GROUPS = PUBLIC_SURFACE_MANIFEST.cli.groups.map((group) =
34959
35394
  id: group.id,
34960
35395
  title: group.title,
34961
35396
  summary: group.summary,
34962
- commands: COMMANDS_BY_GROUP.get(group.id) ?? []
35397
+ commands: COMMANDS_BY_GROUP[group.id]
34963
35398
  }));
34964
35399
  var TOOL_SURFACE_ENTRIES = PUBLIC_SURFACE_MANIFEST.tools.entries.map((entry) => ({
34965
35400
  name: entry.name,
34966
35401
  description: entry.description,
34967
- ...entry.cliEquivalent ? { cliEquivalent: entry.cliEquivalent } : {}
35402
+ ...entry.cliEquivalent ? { cliEquivalent: entry.cliEquivalent } : {},
35403
+ example: entry.example,
35404
+ ...entry.notes ? { notes: [...entry.notes] } : {}
34968
35405
  }));
34969
35406
 
34970
35407
  export {
@@ -35015,4 +35452,4 @@ export {
35015
35452
  TOOL_SURFACE_ENTRIES
35016
35453
  };
35017
35454
  /* v8 ignore next -- @preserve */
35018
- //# sourceMappingURL=chunk-4KVXCXV3.js.map
35455
+ //# sourceMappingURL=chunk-2MG7BRPF.js.map