openfox 1.2.0 → 1.2.2
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/{auto-compaction-7RNWXTRQ.js → auto-compaction-Q36IMXD4.js} +3 -3
- package/dist/{chat-handler-ZBY3GCFF.js → chat-handler-BTU2FLJY.js} +5 -5
- package/dist/{chunk-CUXZUI2X.js → chunk-36AJGM6G.js} +3 -3
- package/dist/{chunk-2CK3CWOE.js → chunk-47TNOR2U.js} +239 -60
- package/dist/{chunk-CDITGSG3.js → chunk-BNK5N227.js} +3 -3
- package/dist/{chunk-GMWOLNCU.js → chunk-IBA3NQAD.js} +2 -2
- package/dist/{chunk-3AMXYXIA.js → chunk-NGSSEMII.js} +4 -4
- package/dist/{chunk-AOHPSZIW.js → chunk-NIQ4X7Y7.js} +2 -2
- package/dist/{chunk-KQRQXKH2.js → chunk-QYRLQ3NK.js} +12 -12
- package/dist/{chunk-5YQAXUKO.js → chunk-R4HADRYO.js} +9 -1
- package/dist/{chunk-A6NVV74R.js → chunk-YSPC6TQJ.js} +9 -3
- package/dist/cli/dev.js +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/{config-VP3V5VGN.js → config-ONC2MTDE.js} +5 -5
- package/dist/{init-T35BNPF2.js → init-TLQQLRGQ.js} +89 -13
- package/dist/{orchestrator-NH3BO64D.js → orchestrator-TFJHY67A.js} +4 -4
- package/dist/package.json +1 -1
- package/dist/{paths-MM76AWYB.js → paths-ZRI56O63.js} +6 -2
- package/dist/{processor-W55O5T6T.js → processor-KJBVOF4W.js} +2 -2
- package/dist/{provider-CHKLHKG5.js → provider-FAO4R2GH.js} +7 -7
- package/dist/{serve-XGOABBXJ.js → serve-MRW7EKGE.js} +10 -10
- package/dist/server/index.js +7 -7
- package/dist/skill-defaults/{playwright-cli.skill.md → browser.skill.md} +5 -5
- package/dist/{tools-EGSJDCYX.js → tools-4D6R2BA3.js} +3 -3
- package/dist/{vision-fallback-MUKHLGFR.js → vision-fallback-MGSC5SWE.js} +2 -2
- package/dist/web/assets/{index-BY3Xdvmg.js → index-rZhr4yUO.js} +52 -52
- package/dist/web/index.html +1 -1
- package/dist/web/sw.js +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
id:
|
|
3
|
-
name:
|
|
2
|
+
id: browser
|
|
3
|
+
name: Browser
|
|
4
4
|
description: Interactive browser control via playwright-cli commands (open, snapshot, click, fill, screenshot, etc.)
|
|
5
5
|
version: 1.0.0
|
|
6
6
|
---
|
|
@@ -19,10 +19,10 @@ The typical workflow is: open a page -> snapshot to get element refs -> interact
|
|
|
19
19
|
npx playwright-cli open https://example.com
|
|
20
20
|
# Take a snapshot to see the page and get element refs
|
|
21
21
|
npx playwright-cli snapshot
|
|
22
|
-
# Click an element by ref
|
|
23
|
-
npx playwright-cli click
|
|
22
|
+
# Click an element by ref string from snapshot
|
|
23
|
+
npx playwright-cli click e42
|
|
24
24
|
# Fill a form field by ref
|
|
25
|
-
npx playwright-cli fill
|
|
25
|
+
npx playwright-cli fill e15 "hello world"
|
|
26
26
|
# Take a screenshot
|
|
27
27
|
npx playwright-cli screenshot
|
|
28
28
|
```
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
requestPathAccess,
|
|
12
12
|
stepDoneTool,
|
|
13
13
|
validateToolAction
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-36AJGM6G.js";
|
|
15
15
|
import "./chunk-NW7PIZH3.js";
|
|
16
16
|
import "./chunk-WQ4W5H6A.js";
|
|
17
17
|
import "./chunk-S4QKTRGJ.js";
|
|
@@ -26,7 +26,7 @@ import "./chunk-3EHGGBWE.js";
|
|
|
26
26
|
import "./chunk-TPT6HP4H.js";
|
|
27
27
|
import "./chunk-TVQOONDR.js";
|
|
28
28
|
import "./chunk-XFXOSPYH.js";
|
|
29
|
-
import "./chunk-
|
|
29
|
+
import "./chunk-R4HADRYO.js";
|
|
30
30
|
import "./chunk-PNBH3RAX.js";
|
|
31
31
|
export {
|
|
32
32
|
AskUserInterrupt,
|
|
@@ -45,4 +45,4 @@ export {
|
|
|
45
45
|
stepDoneTool,
|
|
46
46
|
validateToolAction
|
|
47
47
|
};
|
|
48
|
-
//# sourceMappingURL=tools-
|
|
48
|
+
//# sourceMappingURL=tools-4D6R2BA3.js.map
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
getVisionFallbackConfig,
|
|
8
8
|
isVisionFallbackEnabled,
|
|
9
9
|
setVisionFallbackConfig
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-IBA3NQAD.js";
|
|
11
11
|
import "./chunk-PNBH3RAX.js";
|
|
12
12
|
export {
|
|
13
13
|
clearDescriptionCache,
|
|
@@ -19,4 +19,4 @@ export {
|
|
|
19
19
|
isVisionFallbackEnabled,
|
|
20
20
|
setVisionFallbackConfig
|
|
21
21
|
};
|
|
22
|
-
//# sourceMappingURL=vision-fallback-
|
|
22
|
+
//# sourceMappingURL=vision-fallback-MGSC5SWE.js.map
|