@rudderhq/server 0.5.1 → 0.5.2-canary.0
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.
- package/dist/bootstrap/create-http-app.d.ts.map +1 -1
- package/dist/bootstrap/create-http-app.js +2 -1
- package/dist/bootstrap/create-http-app.js.map +1 -1
- package/dist/bundled-plugins/plugin-linear/dist/worker.js +128 -7
- package/dist/bundled-plugins/plugin-linear/dist/worker.js.map +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -18
- package/dist/index.js.map +1 -1
- package/dist/middleware/index.d.ts +1 -1
- package/dist/middleware/index.d.ts.map +1 -1
- package/dist/middleware/index.js +1 -1
- package/dist/middleware/index.js.map +1 -1
- package/dist/middleware/logger.d.ts +3 -0
- package/dist/middleware/logger.d.ts.map +1 -1
- package/dist/middleware/logger.js +31 -2
- package/dist/middleware/logger.js.map +1 -1
- package/dist/middleware/logger.test.d.ts +2 -0
- package/dist/middleware/logger.test.d.ts.map +1 -0
- package/dist/middleware/logger.test.js +50 -0
- package/dist/middleware/logger.test.js.map +1 -0
- package/dist/routes/agents.d.ts.map +1 -1
- package/dist/routes/agents.js +28 -6
- package/dist/routes/agents.js.map +1 -1
- package/dist/routes/browser.d.ts.map +1 -1
- package/dist/routes/browser.js +215 -4
- package/dist/routes/browser.js.map +1 -1
- package/dist/routes/instance-settings.d.ts.map +1 -1
- package/dist/routes/instance-settings.js +3 -0
- package/dist/routes/instance-settings.js.map +1 -1
- package/dist/routes/messenger.d.ts.map +1 -1
- package/dist/routes/messenger.js +11 -3
- package/dist/routes/messenger.js.map +1 -1
- package/dist/routes/onboarding.d.ts.map +1 -1
- package/dist/routes/onboarding.js +109 -17
- package/dist/routes/onboarding.js.map +1 -1
- package/dist/routes/orgs.d.ts.map +1 -1
- package/dist/routes/orgs.js +70 -8
- package/dist/routes/orgs.js.map +1 -1
- package/dist/runtime/http-server-shutdown.d.ts +15 -0
- package/dist/runtime/http-server-shutdown.d.ts.map +1 -0
- package/dist/runtime/http-server-shutdown.js +70 -0
- package/dist/runtime/http-server-shutdown.js.map +1 -0
- package/dist/runtime/http-server-shutdown.test.d.ts +2 -0
- package/dist/runtime/http-server-shutdown.test.d.ts.map +1 -0
- package/dist/runtime/http-server-shutdown.test.js +94 -0
- package/dist/runtime/http-server-shutdown.test.js.map +1 -0
- package/dist/services/access.d.ts +2 -2
- package/dist/services/agent-instructions.d.ts.map +1 -1
- package/dist/services/agent-instructions.js +1 -0
- package/dist/services/agent-instructions.js.map +1 -1
- package/dist/services/browser-broker.d.ts +5 -1
- package/dist/services/browser-broker.d.ts.map +1 -1
- package/dist/services/browser-broker.js +55 -4
- package/dist/services/browser-broker.js.map +1 -1
- package/dist/services/browser-broker.test.js +58 -0
- package/dist/services/browser-broker.test.js.map +1 -1
- package/dist/services/chats.d.ts +3 -3
- package/dist/services/integrations/feishu/user-bindings.d.ts +1 -1
- package/dist/services/knowledge-portability/organization-skills.catalog.d.ts +1 -1
- package/dist/services/messenger-saved-views.d.ts +45 -20
- package/dist/services/messenger-saved-views.d.ts.map +1 -1
- package/dist/services/messenger-saved-views.js +260 -67
- package/dist/services/messenger-saved-views.js.map +1 -1
- package/dist/services/messenger.d.ts.map +1 -1
- package/dist/services/messenger.js +4 -3
- package/dist/services/messenger.js.map +1 -1
- package/dist/services/organization-workspace-browser.d.ts +7 -0
- package/dist/services/organization-workspace-browser.d.ts.map +1 -1
- package/dist/services/organization-workspace-browser.js +87 -7
- package/dist/services/organization-workspace-browser.js.map +1 -1
- package/package.json +13 -13
- package/resources/bundled-skills/browser/SKILL.md +172 -41
- package/resources/bundled-skills/browser/agents/openai.yaml +12 -2
- package/resources/bundled-skills/browser/evals/evals.json +41 -0
- package/resources/bundled-skills/browser/references/interaction-guide.md +171 -0
- package/resources/bundled-skills/browser/references/tool-contract.md +192 -68
- package/resources/bundled-skills/rudder-docs/references/cli-reference.md +18 -1
- package/resources/bundled-skills/skill-creator/CHANGELOG.md +26 -0
- package/resources/bundled-skills/skill-creator/LICENSE.txt +202 -0
- package/resources/bundled-skills/skill-creator/SKILL.md +544 -3
- package/resources/bundled-skills/skill-creator/agents/analyzer.md +274 -0
- package/resources/bundled-skills/skill-creator/agents/comparator.md +202 -0
- package/resources/bundled-skills/skill-creator/agents/grader.md +223 -0
- package/resources/bundled-skills/skill-creator/assets/eval_review.html +146 -0
- package/resources/bundled-skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/resources/bundled-skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/resources/bundled-skills/skill-creator/references/compatibility/claudecode.md +29 -0
- package/resources/bundled-skills/skill-creator/references/compatibility/codex.md +69 -0
- package/resources/bundled-skills/skill-creator/references/compatibility/other.md +41 -0
- package/resources/bundled-skills/skill-creator/references/rudder.md +96 -0
- package/resources/bundled-skills/skill-creator/references/schemas.md +430 -0
- package/resources/bundled-skills/skill-creator/scripts/__init__.py +0 -0
- package/resources/bundled-skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/resources/bundled-skills/skill-creator/scripts/generate_report.py +335 -0
- package/resources/bundled-skills/skill-creator/scripts/improve_description.py +197 -0
- package/resources/bundled-skills/skill-creator/scripts/model_backends.py +115 -0
- package/resources/bundled-skills/skill-creator/scripts/package_skill.py +136 -0
- package/resources/bundled-skills/skill-creator/scripts/quick_validate.py +103 -0
- package/resources/bundled-skills/skill-creator/scripts/run_eval.py +363 -0
- package/resources/bundled-skills/skill-creator/scripts/run_loop.py +319 -0
- package/resources/bundled-skills/skill-creator/scripts/utils.py +223 -0
- package/skills/browser/SKILL.md +172 -41
- package/skills/browser/agents/openai.yaml +12 -2
- package/skills/browser/evals/evals.json +41 -0
- package/skills/browser/references/interaction-guide.md +171 -0
- package/skills/browser/references/tool-contract.md +192 -68
- package/skills/rudder-docs/references/cli-reference.md +18 -1
- package/skills/skill-creator/CHANGELOG.md +26 -0
- package/skills/skill-creator/LICENSE.txt +202 -0
- package/skills/skill-creator/SKILL.md +544 -3
- package/skills/skill-creator/agents/analyzer.md +274 -0
- package/skills/skill-creator/agents/comparator.md +202 -0
- package/skills/skill-creator/agents/grader.md +223 -0
- package/skills/skill-creator/assets/eval_review.html +146 -0
- package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/skills/skill-creator/references/compatibility/claudecode.md +29 -0
- package/skills/skill-creator/references/compatibility/codex.md +69 -0
- package/skills/skill-creator/references/compatibility/other.md +41 -0
- package/skills/skill-creator/references/rudder.md +96 -0
- package/skills/skill-creator/references/schemas.md +430 -0
- package/skills/skill-creator/scripts/__init__.py +0 -0
- package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/skills/skill-creator/scripts/generate_report.py +335 -0
- package/skills/skill-creator/scripts/improve_description.py +197 -0
- package/skills/skill-creator/scripts/model_backends.py +115 -0
- package/skills/skill-creator/scripts/package_skill.py +136 -0
- package/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/skills/skill-creator/scripts/run_eval.py +363 -0
- package/skills/skill-creator/scripts/run_loop.py +319 -0
- package/skills/skill-creator/scripts/utils.py +223 -0
- package/ui-dist/assets/{abnfDiagram-VRR7QNED-CAAPm9Nj.js → abnfDiagram-VRR7QNED-DLc7ClAF.js} +1 -1
- package/ui-dist/assets/{arc-DOFoNr3M.js → arc-B9ISB5mW.js} +1 -1
- package/ui-dist/assets/{architectureDiagram-ZJ3FMSHR-DRg6yhG8.js → architectureDiagram-ZJ3FMSHR-5zowBbVV.js} +1 -1
- package/ui-dist/assets/{blockDiagram-677ZJIJ3-e3ShzsXT.js → blockDiagram-677ZJIJ3-C0biHGAq.js} +1 -1
- package/ui-dist/assets/{c4Diagram-LMCZKHZV-Csd_18O2.js → c4Diagram-LMCZKHZV-u4oCpAvD.js} +1 -1
- package/ui-dist/assets/channel-B9BQAFDn.js +1 -0
- package/ui-dist/assets/{chunk-2Q5K7J3B-eF77FV1C.js → chunk-2Q5K7J3B-BvM44Y3G.js} +1 -1
- package/ui-dist/assets/{chunk-32BRIVSS-CpMx72B5.js → chunk-32BRIVSS-CQbfzkR_.js} +1 -1
- package/ui-dist/assets/{chunk-5VM5RSS4-Be6WylCu.js → chunk-5VM5RSS4-B33a1mNS.js} +1 -1
- package/ui-dist/assets/{chunk-EX3LRPZG-D-A_TfL-.js → chunk-EX3LRPZG-BdCiha3f.js} +1 -1
- package/ui-dist/assets/{chunk-JWPE2WC7-CdBLDqvo.js → chunk-JWPE2WC7-DTNMfMC9.js} +1 -1
- package/ui-dist/assets/{chunk-MOJQB5TN-DkLjRENV.js → chunk-MOJQB5TN-c0lOAGa1.js} +1 -1
- package/ui-dist/assets/{chunk-RYQCIY6F-57VqTsE9.js → chunk-RYQCIY6F-DS3dEwKK.js} +1 -1
- package/ui-dist/assets/{chunk-V7JOEXUC-DI_m8pt6.js → chunk-V7JOEXUC-4jQJFaAG.js} +1 -1
- package/ui-dist/assets/{chunk-VR4S4FIN-CM_944j4.js → chunk-VR4S4FIN-Cs5XNjhG.js} +1 -1
- package/ui-dist/assets/{chunk-XXDRQBXY--WTAlt82.js → chunk-XXDRQBXY-D7ngbc8f.js} +1 -1
- package/ui-dist/assets/classDiagram-OUVF2IWQ-BKPnFl2Y.js +1 -0
- package/ui-dist/assets/classDiagram-v2-EOCWNBFH-BKPnFl2Y.js +1 -0
- package/ui-dist/assets/{cose-bilkent-JH36ORCC-CR0qu31s.js → cose-bilkent-JH36ORCC-1q6mmBp1.js} +1 -1
- package/ui-dist/assets/{cynefin-VYW2F7L2-f41lF5RD.js → cynefin-VYW2F7L2-t8yI99WT.js} +1 -1
- package/ui-dist/assets/{cynefinDiagram-TSTJHNR4-88wJ2LA8.js → cynefinDiagram-TSTJHNR4-BJF8z1ot.js} +1 -1
- package/ui-dist/assets/{dagre-VKFMJZFB-B1yJCIRh.js → dagre-VKFMJZFB-DBMtPdDi.js} +1 -1
- package/ui-dist/assets/{diagram-FQU43EPY-C0iYYFUe.js → diagram-FQU43EPY-BW1cV08t.js} +1 -1
- package/ui-dist/assets/{diagram-G47NLZAW-Cp6S0siK.js → diagram-G47NLZAW-DhwFKMkK.js} +1 -1
- package/ui-dist/assets/{diagram-NH7WQ7WH-CmZb5OSk.js → diagram-NH7WQ7WH-BbtnvhAE.js} +1 -1
- package/ui-dist/assets/{diagram-OA4YK3LP-9rFYGY7H.js → diagram-OA4YK3LP-BNUrV8Uf.js} +1 -1
- package/ui-dist/assets/{diagram-WEI45ONY-Og8vyDQh.js → diagram-WEI45ONY-DSHgjKh-.js} +1 -1
- package/ui-dist/assets/{ebnfDiagram-CCIWWBDH--5sMape2.js → ebnfDiagram-CCIWWBDH-BhvcX5k_.js} +1 -1
- package/ui-dist/assets/{erDiagram-Q63AITRT-DG10Bza-.js → erDiagram-Q63AITRT-BB5qlCUl.js} +1 -1
- package/ui-dist/assets/{flowDiagram-23GEKE2U-BW-aZfEk.js → flowDiagram-23GEKE2U-D52CQxkF.js} +1 -1
- package/ui-dist/assets/{ganttDiagram-NO4QXBWP-DcA7on8t.js → ganttDiagram-NO4QXBWP-BRJluXTY.js} +1 -1
- package/ui-dist/assets/{gitGraphDiagram-IHSO6WYX-ygGufg32.js → gitGraphDiagram-IHSO6WYX-Ci37w2rd.js} +1 -1
- package/ui-dist/assets/{graph-BXl6uBoM.js → graph-B3oLyKo8.js} +1 -1
- package/ui-dist/assets/{index-BM-SJNCx.js → index-BFfcvskP.js} +1 -1
- package/ui-dist/assets/{index-CssgLJwf.js → index-BQyVJzm5.js} +582 -543
- package/ui-dist/assets/{index-uKIvv9n9.js → index-BUYnNl4X.js} +1 -1
- package/ui-dist/assets/index-BaAPxkqh.css +1 -0
- package/ui-dist/assets/{index-DxXOCTVe.js → index-Bi8rkXAt.js} +1 -1
- package/ui-dist/assets/{index-DoiNhQrY.js → index-BtaMMtrx.js} +1 -1
- package/ui-dist/assets/{index-GdN-7KLt.js → index-CMHGH6Ig.js} +1 -1
- package/ui-dist/assets/{index-B58ems-F.js → index-CRvK1hVa.js} +1 -1
- package/ui-dist/assets/{index-DTlR8bJV.js → index-D3V5dOpZ.js} +1 -1
- package/ui-dist/assets/{index-9bXlV2sq.js → index-DGxgT-vs.js} +1 -1
- package/ui-dist/assets/{index-BmTNDbzy.js → index-DNRSLbBv.js} +1 -1
- package/ui-dist/assets/{index-CRLl2Ck7.js → index-Dm1qKNK3.js} +1 -1
- package/ui-dist/assets/{index-fkDP349f.js → index-KXhgZp0M.js} +1 -1
- package/ui-dist/assets/{index-Dl6nXXNc.js → index-aEV7UyJI.js} +1 -1
- package/ui-dist/assets/{index-ZA8lPH2n.js → index-gNfdxaL_.js} +1 -1
- package/ui-dist/assets/{index-Dug5GX1J.js → index-lFScKWNi.js} +1 -1
- package/ui-dist/assets/{index-CqmU1PxY.js → index-t5ekUQSC.js} +1 -1
- package/ui-dist/assets/{index-DOVMMhyj.js → index-u_Naonif.js} +1 -1
- package/ui-dist/assets/{index-CCDynlok.js → index-wLT_pklf.js} +1 -1
- package/ui-dist/assets/{infoDiagram-FWYZ7A6U-27INMkBm.js → infoDiagram-FWYZ7A6U-CiSa6UqO.js} +1 -1
- package/ui-dist/assets/{ishikawaDiagram-FXEZZL3T-Bp6XQ1_r.js → ishikawaDiagram-FXEZZL3T-BG8fdYii.js} +1 -1
- package/ui-dist/assets/{journeyDiagram-5HDEW3XC-9vaIwdZ3.js → journeyDiagram-5HDEW3XC-P0SmNi5K.js} +1 -1
- package/ui-dist/assets/{kanban-definition-HUTT4EX6-DjsMaR6l.js → kanban-definition-HUTT4EX6-bcBMmd2f.js} +1 -1
- package/ui-dist/assets/{layout-C0oWcIiC.js → layout-De1WFa12.js} +1 -1
- package/ui-dist/assets/{linear-DNbmenmQ.js → linear-DfawTapb.js} +1 -1
- package/ui-dist/assets/{map-B1s9kpcR.js → map-Cos50Fg1.js} +1 -1
- package/ui-dist/assets/{mermaid.core-DsYT9DxL.js → mermaid.core-CfATbZhh.js} +4 -4
- package/ui-dist/assets/{mindmap-definition-LN4V7U3C-vVHeRI83.js → mindmap-definition-LN4V7U3C-kkJ3RazO.js} +1 -1
- package/ui-dist/assets/{pegDiagram-2B236MQR-ohrgWLo_.js → pegDiagram-2B236MQR-xLFEe0pr.js} +1 -1
- package/ui-dist/assets/{pieDiagram-ENE6RG2P-B0EqPrjn.js → pieDiagram-ENE6RG2P-DRxKmqBN.js} +1 -1
- package/ui-dist/assets/{quadrantDiagram-ABIIQ3AL-D44iYm0o.js → quadrantDiagram-ABIIQ3AL-C3JX8tIm.js} +1 -1
- package/ui-dist/assets/{railroadDiagram-RFXS5EU6-BQU5bpbU.js → railroadDiagram-RFXS5EU6-Bnb7quMk.js} +1 -1
- package/ui-dist/assets/{requirementDiagram-TGXJPOKE-DGJciRxB.js → requirementDiagram-TGXJPOKE-CnKvG8M4.js} +1 -1
- package/ui-dist/assets/{sankeyDiagram-HTMAVEWB-NMXZW_Qb.js → sankeyDiagram-HTMAVEWB-B2v6M2b7.js} +1 -1
- package/ui-dist/assets/{sequenceDiagram-DBY2YBRQ-8uWY67Bb.js → sequenceDiagram-DBY2YBRQ-DHSuM1Sl.js} +1 -1
- package/ui-dist/assets/{sizeCapture-X5ZJPWSS-BnUUR-On.js → sizeCapture-X5ZJPWSS-DjACjUD7.js} +1 -1
- package/ui-dist/assets/{stateDiagram-2N3HPSRC-B37bcKMy.js → stateDiagram-2N3HPSRC-D-dQiH6y.js} +1 -1
- package/ui-dist/assets/stateDiagram-v2-6OUMAXLB-y22jWP_O.js +1 -0
- package/ui-dist/assets/{swimlanes-5IMT3BWC-Bi2ZzUMi.js → swimlanes-5IMT3BWC-LhFeuGXm.js} +2 -2
- package/ui-dist/assets/swimlanesDiagram-G3AALYLV-Gi07kkaw.js +8 -0
- package/ui-dist/assets/{timeline-definition-FHXFAJF6-CkWauU5D.js → timeline-definition-FHXFAJF6-CxHGii0e.js} +1 -1
- package/ui-dist/assets/{vennDiagram-L72KCM5P-BrmBXmnk.js → vennDiagram-L72KCM5P-vP83_x2-.js} +1 -1
- package/ui-dist/assets/{wardleyDiagram-EHGQE667-kO5cojc6.js → wardleyDiagram-EHGQE667-DWcdC5N6.js} +1 -1
- package/ui-dist/assets/{xychartDiagram-FW5EYKEG-CUBDaCDm.js → xychartDiagram-FW5EYKEG-wxi_332O.js} +1 -1
- package/ui-dist/index.html +2 -2
- package/ui-dist/assets/channel-BFLsBJOK.js +0 -1
- package/ui-dist/assets/classDiagram-OUVF2IWQ-Dah6C4Dl.js +0 -1
- package/ui-dist/assets/classDiagram-v2-EOCWNBFH-Dah6C4Dl.js +0 -1
- package/ui-dist/assets/index-BcdA9dZc.css +0 -1
- package/ui-dist/assets/stateDiagram-v2-6OUMAXLB-p6H0vL7N.js +0 -1
- package/ui-dist/assets/swimlanesDiagram-G3AALYLV-BX6FiLF9.js +0 -8
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
# Browser Interaction Guide
|
|
2
|
+
|
|
3
|
+
Read this reference for workflows that require more than one simple Browser
|
|
4
|
+
operation. It is intentionally task-oriented; exact schemas and limits live in
|
|
5
|
+
`tool-contract.md`.
|
|
6
|
+
|
|
7
|
+
## Snapshot Discipline
|
|
8
|
+
|
|
9
|
+
Keep the latest relevant `rudder_browser_snapshot` result while it still
|
|
10
|
+
describes the UI you are operating.
|
|
11
|
+
|
|
12
|
+
- Re-snapshot after navigation when you need locator ground truth on the new
|
|
13
|
+
page.
|
|
14
|
+
- Re-snapshot after a strict, stale, missing, hidden, covered, or timeout error.
|
|
15
|
+
- Do not print or request full snapshots repeatedly when `count`, one attribute,
|
|
16
|
+
one state check, or a smaller max depth answers the question.
|
|
17
|
+
- Do not discover a page by iterating through broad results and reading each
|
|
18
|
+
element separately. Take one bounded orientation snapshot, then narrow to the
|
|
19
|
+
relevant region with declarative locator reads.
|
|
20
|
+
- Do not dump body text or embedded application-state JSON as exploratory
|
|
21
|
+
search. Use a focused page, container, or result.
|
|
22
|
+
|
|
23
|
+
## Stable Locator Construction
|
|
24
|
+
|
|
25
|
+
Choose a strategy from evidence in the latest snapshot:
|
|
26
|
+
|
|
27
|
+
1. `testId` for an exact `data-testid`.
|
|
28
|
+
2. `css` for a stable copied `data-*` attribute or other durable attribute.
|
|
29
|
+
3. `href` for an exact visible destination, scoped if repeated.
|
|
30
|
+
4. `role` plus a plain-string accessible `name`.
|
|
31
|
+
5. `label` or `placeholder` for form controls.
|
|
32
|
+
6. Scoped `text` for visible text without a more stable contract.
|
|
33
|
+
7. Scoped CSS copied from actual page state.
|
|
34
|
+
|
|
35
|
+
Generic labels such as Menu, Close, Search, Size, Color, Sort, and Submit are
|
|
36
|
+
ambiguous by default. Scope them to the correct dialog, card, form, or section
|
|
37
|
+
and count before acting.
|
|
38
|
+
|
|
39
|
+
Use locator `scope` for a container, `filter.hasText` or `hasNotText` to narrow
|
|
40
|
+
it, and `and` or `or` only when each side is supported by current page evidence.
|
|
41
|
+
Use `frame` with outer-to-inner iframe CSS selectors for nested frames.
|
|
42
|
+
|
|
43
|
+
## Forms And Controls
|
|
44
|
+
|
|
45
|
+
- Locators are read-only and may only count, read bounded text/attributes/state,
|
|
46
|
+
or wait for attached, detached, visible, or hidden state.
|
|
47
|
+
- For a simple input or clickable control, call `rudder_browser_read`, select
|
|
48
|
+
the exact opaque ref, and call `rudder_browser_type` or
|
|
49
|
+
`rudder_browser_click` once. Re-read before the next interaction because refs
|
|
50
|
+
are invalidated.
|
|
51
|
+
- For select controls, checkboxes not represented by a safe high-level ref,
|
|
52
|
+
keypresses, hover, scroll, or drag, verify the target with a current snapshot,
|
|
53
|
+
screenshot, and `elementInfo`, then use explicit coordinate CUA.
|
|
54
|
+
- File upload is unavailable until Rudder can provide run-owned staged handles;
|
|
55
|
+
do not attempt to operate a native picker or pass local paths.
|
|
56
|
+
|
|
57
|
+
For multi-field forms, fill fields one at a time or in small logical groups and
|
|
58
|
+
verify the narrow values that matter before submission. Submission is an
|
|
59
|
+
external side effect when it sends data or creates state; confirm if the user's
|
|
60
|
+
request did not already authorize that exact submission.
|
|
61
|
+
|
|
62
|
+
## Navigation And State Changes
|
|
63
|
+
|
|
64
|
+
Menus, filters, tabs, and accordions often do not navigate. Wait for their
|
|
65
|
+
specific visible or selected state instead of load state.
|
|
66
|
+
|
|
67
|
+
If you know an exact safe destination and click side effects do not matter,
|
|
68
|
+
direct navigation is more reliable than clicking a brittle link. Never generate
|
|
69
|
+
and probe a grid of guessed URL variants.
|
|
70
|
+
|
|
71
|
+
## Frames
|
|
72
|
+
|
|
73
|
+
Snapshot results include frame document metadata. Build the `frame` selector
|
|
74
|
+
chain from outer frame to target frame, then use the same locator strategies as
|
|
75
|
+
the main document. Re-snapshot if a frame navigates or its execution context is
|
|
76
|
+
replaced.
|
|
77
|
+
|
|
78
|
+
DOM-CUA is read-only. Its node ids are ephemeral snapshot evidence, not
|
|
79
|
+
interaction handles. Use a fresh high-level ref or an explicit coordinate
|
|
80
|
+
action to interact.
|
|
81
|
+
|
|
82
|
+
## Visual And Coordinate Interaction
|
|
83
|
+
|
|
84
|
+
Use a screenshot when canvas, rendered geometry, color, overlap, or pixel state
|
|
85
|
+
is the source of truth. Coordinates are viewport-relative CSS pixels.
|
|
86
|
+
|
|
87
|
+
Before a coordinate click or drag:
|
|
88
|
+
|
|
89
|
+
1. Ensure the latest screenshot represents the current viewport and state.
|
|
90
|
+
2. Use `elementInfo` at the point when DOM evidence can validate the target.
|
|
91
|
+
3. Click the center of the proven target, not its edge.
|
|
92
|
+
4. Verify one resulting visual or DOM signal.
|
|
93
|
+
|
|
94
|
+
Use `move` for hover-only UI, `scroll` with a point inside the intended scroll
|
|
95
|
+
container, and `drag` with a short bounded path. Coordinate input is a fallback,
|
|
96
|
+
not a replacement for stable locators.
|
|
97
|
+
|
|
98
|
+
## Dialogs
|
|
99
|
+
|
|
100
|
+
A synchronous JavaScript dialog blocks the page action that opened it.
|
|
101
|
+
|
|
102
|
+
- Open the dialog once through a high-level ref or verified explicit coordinate
|
|
103
|
+
action, then call `rudder_browser_dialog` to inspect and handle it.
|
|
104
|
+
- JavaScript prompts can only be dismissed in the Electron runtime. An attempt
|
|
105
|
+
to accept one fails closed after dismissal; prompt text is never bridged
|
|
106
|
+
through page-visible state.
|
|
107
|
+
- Use `rudder_browser_dialog` for a dialog opened independently by navigation,
|
|
108
|
+
a timer, or page code.
|
|
109
|
+
- Do not retry the opening click after a dialog timeout without inspecting the
|
|
110
|
+
current dialog and page state; the first click may already have happened.
|
|
111
|
+
|
|
112
|
+
## Downloads
|
|
113
|
+
|
|
114
|
+
For explicit media or file links, use download mode `media` with a unique
|
|
115
|
+
locator. This reads the media URL and downloads it without firing page events.
|
|
116
|
+
Locator-triggered download clicks are unavailable because resolving a semantic
|
|
117
|
+
locator and separately dispatching input cannot be made atomic. Use an
|
|
118
|
+
authorized high-level ref or verified explicit coordinate action for a normal
|
|
119
|
+
page interaction, and do not search the user's Downloads folder.
|
|
120
|
+
|
|
121
|
+
Paths are opaque temporary artifacts and are removed on tab/run cleanup.
|
|
122
|
+
|
|
123
|
+
## Page Assets
|
|
124
|
+
|
|
125
|
+
1. Put the page into the relevant rendered state, including lazy-loaded content.
|
|
126
|
+
2. Call assets `list` and keep its inventory id.
|
|
127
|
+
3. Select explicit `assetIds` for narrow acquisition or explicit `kinds` for a
|
|
128
|
+
bounded broad acquisition.
|
|
129
|
+
4. Call `bundle` once. Inspect failures rather than repeatedly downloading the
|
|
130
|
+
same asset.
|
|
131
|
+
|
|
132
|
+
Inline SVG inventory entries contain only a stable inventory id, media type,
|
|
133
|
+
inline origin, and bounded dimensions. Raw SVG/page markup, attributes, text,
|
|
134
|
+
and embedded `foreignObject` content are never returned. File assets are
|
|
135
|
+
streamed with per-asset, per-bundle, and per-run limits.
|
|
136
|
+
|
|
137
|
+
## Content Export
|
|
138
|
+
|
|
139
|
+
- Raw HTML export is unavailable because markup can contain credentials. Use
|
|
140
|
+
`text` for rendered readable text.
|
|
141
|
+
- Use `pdf` for a page PDF.
|
|
142
|
+
- On eligible Google Workspace URLs, use the requested `pdf`, `md`, `docx`,
|
|
143
|
+
`xlsx`, `csv`, or `pptx` format.
|
|
144
|
+
- Returned files are temporary artifacts. Do not upload or transmit them unless
|
|
145
|
+
the task authorizes that destination.
|
|
146
|
+
|
|
147
|
+
## Console And Clipboard
|
|
148
|
+
|
|
149
|
+
Use logs with the narrowest useful levels, substring filter, and limit. Clear
|
|
150
|
+
the buffer only when subsequent reads should exclude prior entries.
|
|
151
|
+
|
|
152
|
+
The clipboard belongs to the signed run. `writeText` and `readText` are the
|
|
153
|
+
simple path; structured items support bounded MIME text or Base64 data. The
|
|
154
|
+
state remains outside the page world. CUA `ControlOrMeta+C`,
|
|
155
|
+
`ControlOrMeta+X`, and `ControlOrMeta+V` explicitly transfer the focused
|
|
156
|
+
selection without reading or mutating the operating-system clipboard. Never
|
|
157
|
+
describe it as the system clipboard.
|
|
158
|
+
|
|
159
|
+
## Recovery Without Duplicate Side Effects
|
|
160
|
+
|
|
161
|
+
- On locator ambiguity or staleness, refresh the snapshot and rebuild once.
|
|
162
|
+
- After two failures against the same target, switch to a stable copied
|
|
163
|
+
attribute or an explicitly verified coordinate action. Do not keep
|
|
164
|
+
increasing timeout or selector complexity.
|
|
165
|
+
- On a Browser timeout, call `rudder_browser_tabs` before retrying. The active
|
|
166
|
+
tab may have been closed and the website action may already have occurred.
|
|
167
|
+
- On navigation failure, inspect the tab URL/title before deciding to retry.
|
|
168
|
+
- On result size errors, reduce depth/node count, scope the locator, crop the
|
|
169
|
+
screenshot, narrow log filters, or reduce asset selection.
|
|
170
|
+
- On disable, unavailable Broker, unsupported runtime, or inactive run, stop.
|
|
171
|
+
Another browser or shell request would be a different surface and authority.
|
|
@@ -1,73 +1,197 @@
|
|
|
1
1
|
# Rudder Browser Tool Contract
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
only when
|
|
5
|
-
enabled, and the
|
|
6
|
-
`opencode_local`, or `pi_local`. Runtime fallback
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
- `
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
3
|
+
This reference describes the separate first-party `rudder-browser` transport.
|
|
4
|
+
It is available only when deployment is `local_trusted`, the instance Browser
|
|
5
|
+
setting is enabled, and the runtime is `claude_local`, `codex_local`,
|
|
6
|
+
`opencode_local`, or `pi_local`. Runtime fallback removes the Browser skill,
|
|
7
|
+
capability flag, and server or native bridge together. `rudder-tools`
|
|
8
|
+
never exposes Browser tools.
|
|
9
|
+
|
|
10
|
+
The transport polls a Broker-free, run-authenticated liveness endpoint. Live
|
|
11
|
+
disable or run termination aborts active Browser HTTP work, suppresses queued
|
|
12
|
+
stdio responses, revokes Browser state, and permanently exits that process.
|
|
13
|
+
Re-enable requires a fresh Browser server.
|
|
14
|
+
|
|
15
|
+
## Codex In-App Browser Parity
|
|
16
|
+
|
|
17
|
+
The baseline is the complete dynamic documentation returned by the Codex
|
|
18
|
+
In-app Browser bundle `26.707.91948` on 2026-07-17. That IAB advertises only the
|
|
19
|
+
Browser `visibility` and `viewport` capabilities plus the Tab `pageAssets`
|
|
20
|
+
capability. Rudder uses typed MCP tools instead of the JavaScript object API and
|
|
21
|
+
targets the mapped core task outcomes below.
|
|
22
|
+
|
|
23
|
+
| Codex In-app Browser API | Rudder Browser MCP |
|
|
24
|
+
| --- | --- |
|
|
25
|
+
| `browser.user.openTabs()` | `rudder_browser_user_tabs` (coarse origin discovery only) |
|
|
26
|
+
| `browser.tabs.list()`, `selected()`, `get()` | `rudder_browser_tabs` |
|
|
27
|
+
| `browser.tabs.new()`, `tab.goto()` | `rudder_browser_open`, `rudder_browser_navigate` |
|
|
28
|
+
| `tab.back()`, `forward()`, `reload()`, `close()` | matching navigation tools and `rudder_browser_close` |
|
|
29
|
+
| `tab.title()`, `tab.url()` | tab results, locator reads, and `rudder_browser_read` |
|
|
30
|
+
| `tab.playwright.domSnapshot()` | `rudder_browser_snapshot` |
|
|
31
|
+
| Playwright locator builders, filters, reads, and waits | read-only `rudder_browser_locator` |
|
|
32
|
+
| `frameLocator(...)` | locator `frame` chain |
|
|
33
|
+
| `playwright.evaluate(...)`, `locator.evaluate(...)` | intentionally unavailable; use bounded declarative reads |
|
|
34
|
+
| URL/load waits | `rudder_browser_wait` |
|
|
35
|
+
| `tab.cua.*` | `rudder_browser_cua` |
|
|
36
|
+
| `tab.dom_cua.*` | `rudder_browser_dom_cua` |
|
|
37
|
+
| `tab.getJsDialog()` and dialog methods | `rudder_browser_dialog` |
|
|
38
|
+
| `tab.screenshot(...)` | `rudder_browser_screenshot` |
|
|
39
|
+
| `tab.clipboard.*` | `rudder_browser_clipboard` |
|
|
40
|
+
| `tab.dev.logs(...)` | `rudder_browser_logs` |
|
|
41
|
+
| Browser `visibility` capability | `rudder_browser_visibility` |
|
|
42
|
+
| Browser `viewport` capability | `rudder_browser_viewport` |
|
|
43
|
+
| Tab `pageAssets` capability | `rudder_browser_assets` |
|
|
44
|
+
|
|
45
|
+
`browser.nameSession()` has no separate MCP action because every Rudder Browser
|
|
46
|
+
session is already identified by its signed organization, Agent, and run. User
|
|
47
|
+
tab ids are read-only context. Unlike Codex, Rudder returns only hostname and
|
|
48
|
+
origin summaries for operator tabs because the Desktop profile can serve more
|
|
49
|
+
than one organization. Titles, paths, queries, fragments, and credentials are
|
|
50
|
+
never exposed to an Agent. This is shape/discovery parity, not exact user-tab
|
|
51
|
+
inspection parity. The current IAB does not advertise extension-only tab
|
|
52
|
+
claiming, history, finalize/handoff, browser authentication, raw CDP, bot-
|
|
53
|
+
detection, or secure credential handoff, so those are not IAB parity blockers.
|
|
54
|
+
Rudder also intentionally rejects arbitrary `file:` navigation; both the
|
|
55
|
+
origin-only user-tab view and local-file boundary require an explicit product
|
|
56
|
+
permission decision before literal parity would be safe.
|
|
57
|
+
|
|
58
|
+
Rudder additionally provides read-only explicit-media download, text/PDF and
|
|
59
|
+
Google Workspace export, element-at-coordinate inspection,
|
|
60
|
+
and a compact legacy ref flow.
|
|
61
|
+
|
|
62
|
+
## Tool Inventory
|
|
63
|
+
|
|
64
|
+
### Tabs And Navigation
|
|
65
|
+
|
|
66
|
+
- `rudder_browser_user_tabs {}` lists live user-visible tabs in Rudder's
|
|
67
|
+
built-in Browser as hostname and origin-only summaries. Results use opaque
|
|
68
|
+
ids and are never controllable Agent tab ids. Ask for the exact URL when an
|
|
69
|
+
origin alone cannot identify the requested page.
|
|
70
|
+
- `rudder_browser_tabs {}` lists tabs owned by the signed run and returns its
|
|
71
|
+
selected tab id.
|
|
72
|
+
- `rudder_browser_open { url }` opens an HTTP(S) URL.
|
|
73
|
+
- `rudder_browser_navigate { tabId, url }` replaces a run-owned tab's page.
|
|
74
|
+
- `rudder_browser_back`, `rudder_browser_forward`, and
|
|
75
|
+
`rudder_browser_reload` accept `{ tabId }`.
|
|
76
|
+
- `rudder_browser_close { tabId }` closes one run-owned tab.
|
|
77
|
+
- `rudder_browser_visibility { visible? }` reads or changes whether the run's
|
|
78
|
+
selected tab is shown to the local operator.
|
|
79
|
+
- `rudder_browser_viewport { action, width?, height? }` gets, sets, or resets a
|
|
80
|
+
run-wide viewport override. Set requires width 320-3840 and height 240-2160.
|
|
81
|
+
|
|
82
|
+
V1 permits eight tabs per run and 32 Agent Browser tabs per Desktop process.
|
|
83
|
+
User-visible tabs do not consume this Agent tab quota.
|
|
84
|
+
|
|
85
|
+
### Page Understanding
|
|
86
|
+
|
|
87
|
+
- `rudder_browser_snapshot { tabId, boxes?, depth?, maxNodes? }` returns a
|
|
88
|
+
bounded accessibility-oriented DOM tree, same-origin frame boundaries,
|
|
89
|
+
optional boxes, and ephemeral DOM-CUA node ids. Depth is at most 30 and node
|
|
90
|
+
count at most 3000; Chromium full-tree capture is never materialized.
|
|
91
|
+
- `rudder_browser_locator` accepts a locator strategy of `css`, `testId`,
|
|
92
|
+
`href`, `role`, `label`, `placeholder`, or `text`. Locators may use a frame
|
|
93
|
+
chain, a scoped parent, filters, `and`, `or`, and an explicit index or
|
|
94
|
+
first/last position.
|
|
95
|
+
- Locator read actions are `count`, `allTextContents`, `textContent`,
|
|
96
|
+
`innerText`, `attribute`, `visible`, `enabled`, `checked`, and
|
|
97
|
+
`selected`, plus `wait` for attached, detached, visible, or hidden state.
|
|
98
|
+
- Locator operations are read-only. Mutating or event-generating actions such
|
|
99
|
+
as click, double-click, hover, fill, type, press, check, select, scroll, drag,
|
|
100
|
+
focus, and file assignment are rejected before Desktop dispatch.
|
|
101
|
+
- Arbitrary page or locator JavaScript evaluation is intentionally unavailable
|
|
102
|
+
because side-effect checks do not prevent credential reads.
|
|
103
|
+
- `rudder_browser_read { tabId }` returns bounded visible text and opaque refs
|
|
104
|
+
for the legacy compact flow.
|
|
105
|
+
|
|
106
|
+
### Interaction
|
|
107
|
+
|
|
108
|
+
- File upload is disabled until Rudder can bind a run-owned staged handle rather
|
|
109
|
+
than trusting a model-supplied filesystem path.
|
|
110
|
+
- `rudder_browser_cua` supports coordinate `click`, `doubleClick`, `move`,
|
|
111
|
+
`scroll`, `drag`, `keypress`, `type`, and read-only `elementInfo`.
|
|
112
|
+
- `rudder_browser_dom_cua` supports only the read-only `get` action. Node ids
|
|
113
|
+
cannot be used for click, scroll, keyboard, or text input; use a high-level
|
|
114
|
+
ref or explicit coordinate action instead.
|
|
115
|
+
- `rudder_browser_click` and `rudder_browser_type` operate only on refs from
|
|
116
|
+
the latest `rudder_browser_read` result.
|
|
117
|
+
|
|
118
|
+
### Dialogs, Evidence, And Artifacts
|
|
119
|
+
|
|
120
|
+
- `rudder_browser_dialog { tabId, action, promptText? }` gets, accepts, or
|
|
121
|
+
dismisses an alert, confirm, or before-unload dialog. JavaScript prompts are
|
|
122
|
+
dismissal-only in Electron; acceptance fails closed after dismissal.
|
|
123
|
+
- `rudder_browser_screenshot` supports viewport, full-page, explicit clip, or
|
|
124
|
+
unique-locator PNG/JPEG captures. Decoded image bytes are capped at 10 MB.
|
|
125
|
+
Full-page dimensions beyond Chromium's 16384-pixel limit fail explicitly
|
|
126
|
+
instead of returning a silently truncated image marked `fullPage`.
|
|
127
|
+
- `rudder_browser_logs` reads at most 500 buffered log entries and can filter by
|
|
128
|
+
level or substring and clear the buffer.
|
|
129
|
+
- `rudder_browser_clipboard` reads, writes, or clears a virtual run clipboard.
|
|
130
|
+
Text, binary Base64 entries, MIME types, and presentation style are bounded.
|
|
131
|
+
State remains in Desktop memory and is never installed on
|
|
132
|
+
`navigator.clipboard`. Explicit CUA copy, cut, and paste chords transfer only
|
|
133
|
+
the focused selection and never reach the native OS clipboard path.
|
|
134
|
+
- `rudder_browser_download` downloads explicit locator media without firing a
|
|
135
|
+
page event. Locator-triggered click downloads are rejected. Each artifact is
|
|
136
|
+
capped at 25 MB.
|
|
137
|
+
- `rudder_browser_assets` first creates an inventory, then bundles an explicit
|
|
138
|
+
`assetIds` or `kinds` selection. Each asset is capped at 25 MB, each bundle at
|
|
139
|
+
100 MB, and each run at 250 MB. Response bodies are canceled while streaming
|
|
140
|
+
as soon as a byte limit is crossed; bundle admission is serialized per run.
|
|
141
|
+
Navigation makes an inventory stale and unknown requested ids are rejected;
|
|
142
|
+
callers must list the current page again. Inline SVGs are inventory metadata
|
|
143
|
+
only (`id`, media `type`, `origin`, `width`, and `height`); raw markup and page
|
|
144
|
+
attributes are never returned or bundled.
|
|
145
|
+
- `rudder_browser_content` exports text or PDF, or an eligible Google
|
|
146
|
+
Doc, Sheet, or Slides page to `pdf`, `md`, `docx`, `xlsx`, `csv`, or `pptx`.
|
|
147
|
+
Content exports are capped at 25 MB.
|
|
148
|
+
- `rudder_browser_wait` waits for a URL substring, text, text disappearance, or
|
|
149
|
+
bounded time. URL input is never treated as a regular expression.
|
|
150
|
+
|
|
151
|
+
All returned paths are temporary run-owned artifacts. Explicit tab close,
|
|
152
|
+
Browser disable, run cleanup, and Desktop shutdown await artifact deletion.
|
|
153
|
+
|
|
154
|
+
## Identity And Logging
|
|
155
|
+
|
|
156
|
+
Every tool derives `orgId`, `agentId`, and `runId` only from the signed runtime
|
|
157
|
+
credential. Model arguments cannot select another identity, Broker, profile,
|
|
158
|
+
API URL, or key. Browser authorization requires a run-scoped Agent JWT; a run
|
|
159
|
+
header is only a matching assertion.
|
|
160
|
+
|
|
161
|
+
Browser request bodies are marked sensitive before HTTP error logging. Values,
|
|
162
|
+
clipboard data, prompt text, and Broker tokens
|
|
163
|
+
are never written as durable request-body diagnostics. Activity records contain
|
|
164
|
+
only action, status, safe origin, tab id, and stable error code.
|
|
27
165
|
|
|
28
166
|
## Stable Errors
|
|
29
167
|
|
|
30
|
-
- `browser_disabled` (
|
|
31
|
-
|
|
32
|
-
- `browser_unavailable` (
|
|
33
|
-
|
|
34
|
-
- `
|
|
35
|
-
|
|
36
|
-
- `
|
|
37
|
-
- `
|
|
38
|
-
|
|
39
|
-
- `
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
- `
|
|
43
|
-
|
|
44
|
-
- `
|
|
45
|
-
|
|
46
|
-
- `
|
|
47
|
-
|
|
48
|
-
- `
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
- `
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
or close an owned tab before opening another. V1 permits eight tabs per run
|
|
61
|
-
and 32 Agent Browser tabs per Desktop process.
|
|
62
|
-
- `browser_timeout` (`504`): the command expired in a queue or timed out during
|
|
63
|
-
execution. List tabs before retrying because an active timed-out tab is
|
|
64
|
-
closed to prevent late side effects.
|
|
65
|
-
- `browser_result_too_large` (`413`): the screenshot exceeded the bounded
|
|
66
|
-
response size. Use `read` or another narrower evidence path.
|
|
67
|
-
- `browser_broker_protocol_error` / `browser_broker_error` (`502`): Desktop
|
|
68
|
-
returned an invalid or internal Broker result. Do not blindly retry a
|
|
69
|
-
consequential action; inspect the tab or report the failure.
|
|
70
|
-
|
|
71
|
-
The Browser profile may contain sessions shared by organizations in the same
|
|
72
|
-
local Rudder instance. Tab ownership remains isolated by organization, Agent,
|
|
73
|
-
and run. Shared login state never broadens the task's authorization boundary.
|
|
168
|
+
- `browser_disabled` (409): Browser is disabled. Do not retry from the old MCP
|
|
169
|
+
process.
|
|
170
|
+
- `browser_unavailable` (503): Desktop has no live Browser Broker.
|
|
171
|
+
- `browser_runtime_unsupported` (403): the runtime adapter is not eligible.
|
|
172
|
+
- `browser_run_required` (400): runtime context has no run id.
|
|
173
|
+
- `agent_run_context_mismatch` (403): transport and signed run differ.
|
|
174
|
+
- `browser_run_credential_required` (403): the credential is not run-scoped.
|
|
175
|
+
- `browser_run_forbidden` (403): signed organization, Agent, and run ownership
|
|
176
|
+
do not match.
|
|
177
|
+
- `browser_run_inactive` (409): the run has ended.
|
|
178
|
+
- `browser_tab_not_found` (404): the run tab no longer exists.
|
|
179
|
+
- `browser_tab_forbidden` (403): the tab belongs to another run.
|
|
180
|
+
- `browser_ref_not_found` (404): the ref, node, or locator is stale, missing,
|
|
181
|
+
hidden, covered, disabled, or ambiguous.
|
|
182
|
+
- `browser_unsafe_url` (422): protocol, URL, or Rudder app origin is
|
|
183
|
+
blocked.
|
|
184
|
+
- `browser_invalid_argument` (400 or 422): arguments exceed schema bounds.
|
|
185
|
+
- `browser_navigation_failed` (502): Chromium could not complete navigation.
|
|
186
|
+
- `browser_tab_limit` (429): reuse or close an owned tab.
|
|
187
|
+
- `browser_timeout` (504): the operation expired; active timed-out tabs close
|
|
188
|
+
to prevent late side effects.
|
|
189
|
+
- `browser_result_too_large` (413): narrow the result or artifact selection.
|
|
190
|
+
- `browser_action_failed` (502): the bounded Electron action failed.
|
|
191
|
+
- `browser_broker_protocol_error` or `browser_broker_error` (502): Desktop
|
|
192
|
+
returned an invalid or internal Broker result.
|
|
193
|
+
|
|
194
|
+
Website login state may be shared by organizations using the same local Rudder
|
|
195
|
+
instance. Tab, clipboard, viewport, dialog, download, asset, and artifact state
|
|
196
|
+
remain isolated by organization, Agent, and run. Shared login state never
|
|
197
|
+
expands authorization.
|
|
@@ -84,12 +84,29 @@ operating-practices guide for operating behavior:
|
|
|
84
84
|
| `rudder_skill_scan_local` | `rudder skill scan-local --org-id <id> [--roots <csv>]` | Scan local roots for skill packages and import new ones. | yes | required | no | attached when available |
|
|
85
85
|
| `rudder_skill_scan_projects` | `rudder skill scan-projects --org-id <id> [--project-ids <csv>] [--workspace-ids <csv>]` | Scan the org workspace and any legacy project workspace records for skill packages and import new ones. | yes | required | no | attached when available |
|
|
86
86
|
| `rudder_browser_tabs` | `rudder browser tabs` | List Browser tabs owned by the current Rudder agent run. | no | required | required | required |
|
|
87
|
+
| `rudder_browser_user_tabs` | `rudder browser user-tabs` | List user-visible tabs currently open in Rudder's built-in Browser without taking control of them. | no | required | required | required |
|
|
87
88
|
| `rudder_browser_open` | `rudder browser open <url>` | Open a run-owned tab in the Rudder Browser. | yes | required | required | required |
|
|
88
89
|
| `rudder_browser_navigate` | `rudder browser navigate <tab-id> <url>` | Navigate a run-owned Rudder Browser tab. | yes | required | required | required |
|
|
90
|
+
| `rudder_browser_back` | `rudder browser back <tab-id>` | Navigate a run-owned Rudder Browser tab back in history. | yes | required | required | required |
|
|
91
|
+
| `rudder_browser_forward` | `rudder browser forward <tab-id>` | Navigate a run-owned Rudder Browser tab forward in history. | yes | required | required | required |
|
|
92
|
+
| `rudder_browser_reload` | `rudder browser reload <tab-id>` | Reload a run-owned Rudder Browser tab. | yes | required | required | required |
|
|
93
|
+
| `rudder_browser_viewport` | `rudder browser viewport --action <get|set|reset> [--width <px> --height <px>]` | Inspect, set, or reset the responsive viewport for the current Rudder Browser run. | yes | required | required | required |
|
|
94
|
+
| `rudder_browser_visibility` | `rudder browser visibility [--visible <true|false>]` | Inspect or change whether the current run's selected Rudder Browser tab is visible. | yes | required | required | required |
|
|
95
|
+
| `rudder_browser_snapshot` | `rudder browser snapshot <tab-id> [--input <json>]` | Capture a bounded DOM and accessibility-oriented snapshot, including frame structure and ephemeral node ids. | no | required | required | required |
|
|
96
|
+
| `rudder_browser_locator` | `rudder browser locator <tab-id> --input <json>` | Perform read-only bounded Browser locator text, attribute, state, count, or wait operations. | no | required | required | required |
|
|
97
|
+
| `rudder_browser_cua` | `rudder browser cua <tab-id> --input <json>` | Perform trusted coordinate mouse, scroll, drag, keyboard, and text input in a run-owned Browser tab. | yes | required | required | required |
|
|
98
|
+
| `rudder_browser_dom_cua` | `rudder browser dom-cua <tab-id> --input <json>` | Inspect a bounded read-only DOM snapshot with ephemeral node ids. | no | required | required | required |
|
|
99
|
+
| `rudder_browser_dialog` | `rudder browser dialog <tab-id> --input <json>` | Inspect, accept, or dismiss the active JavaScript dialog in a run-owned Browser tab. | yes | required | required | required |
|
|
100
|
+
| `rudder_browser_clipboard` | `rudder browser clipboard --input <json>` | Read or write the isolated virtual clipboard for the current Browser run without touching the OS clipboard. | yes | required | required | required |
|
|
101
|
+
| `rudder_browser_logs` | `rudder browser logs <tab-id> [--input <json>]` | Read bounded console and runtime logs captured for a run-owned Browser tab. | yes | required | required | required |
|
|
102
|
+
| `rudder_browser_download` | `rudder browser download <tab-id> --input <json>` | Download explicit locator media without dispatching page input into a bounded run-owned artifact. | yes | required | required | required |
|
|
103
|
+
| `rudder_browser_assets` | `rudder browser assets <tab-id> --input <json>` | List page assets or bundle an explicit bounded selection into a run-owned temporary artifact. | yes | required | required | required |
|
|
104
|
+
| `rudder_browser_content` | `rudder browser content <tab-id> --input <json>` | Export current page content or an eligible Google Workspace document into a bounded run-owned artifact. | yes | required | required | required |
|
|
105
|
+
| `rudder_browser_wait` | `rudder browser wait <tab-id> --input <json>` | Wait for bounded URL, text, disappearance, or time conditions in a run-owned Browser tab. | no | required | required | required |
|
|
89
106
|
| `rudder_browser_read` | `rudder browser read <tab-id>` | Read a structured snapshot from a run-owned Rudder Browser tab. | no | required | required | required |
|
|
90
107
|
| `rudder_browser_click` | `rudder browser click <tab-id> <ref>` | Click an element reference returned by Rudder Browser read. | yes | required | required | required |
|
|
91
108
|
| `rudder_browser_type` | `rudder browser type <tab-id> <ref> --text <text>` | Type into an element reference in a run-owned Rudder Browser tab. | yes | required | required | required |
|
|
92
|
-
| `rudder_browser_screenshot` | `rudder browser screenshot <tab-id
|
|
109
|
+
| `rudder_browser_screenshot` | `rudder browser screenshot <tab-id> [--input <json>]` | Capture a screenshot of a run-owned Rudder Browser tab. | no | required | required | required |
|
|
93
110
|
| `rudder_browser_close` | `rudder browser close <tab-id>` | Close a run-owned Rudder Browser tab. | yes | required | required | required |
|
|
94
111
|
| `rudder_automation_list` | `rudder automation list --org-id <id>` | List automations for an organization with compact local filters. | no | required | no | no |
|
|
95
112
|
| `rudder_automation_get` | `rudder automation get <automation-id>` | Read one automation detail including triggers and recent runs. | no | no | no | no |
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Notable changes to the `skill-creator` skill.
|
|
4
|
+
|
|
5
|
+
## 2026-07-23
|
|
6
|
+
|
|
7
|
+
- Made Rudder compatibility the default inside Rudder and limited host-specific
|
|
8
|
+
guides to explicitly requested provider-native or cross-host work.
|
|
9
|
+
|
|
10
|
+
## 2026-07-22
|
|
11
|
+
|
|
12
|
+
- Restored the complete self-contained skill creator package in Rudder.
|
|
13
|
+
- Added Rudder-specific ownership, installation, enablement, permission, and
|
|
14
|
+
evaluation-workspace guidance while preserving the upstream workflow.
|
|
15
|
+
|
|
16
|
+
## 2026-06-25
|
|
17
|
+
|
|
18
|
+
- Added this changelog so future skill-maintenance work has a durable change history.
|
|
19
|
+
|
|
20
|
+
## 2026-06-24
|
|
21
|
+
|
|
22
|
+
- Split host compatibility guidance from a single `references/compatibility.md` file into host-specific guides under `references/compatibility/`.
|
|
23
|
+
- Added `references/compatibility/claudecode.md` for Claude Code behavior, real trigger measurement, and baseline mechanics.
|
|
24
|
+
- Added `references/compatibility/codex.md` for Codex/OpenAI behavior, judged trigger proxy expectations, and `agents/openai.yaml` metadata guidance.
|
|
25
|
+
- Added `references/compatibility/other.md` for generic shell agents, chat-only hosts, and headless worker adaptations.
|
|
26
|
+
- Updated `SKILL.md` to direct agents to read exactly one host-specific compatibility guide unless evaluating or packaging across multiple hosts.
|