misoai-web 1.6.1 → 1.6.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/es/agent.js +4 -1
- package/dist/es/agent.js.map +1 -1
- package/dist/es/bridge-mode-browser.js +3 -3
- package/dist/es/bridge-mode.js +6 -3
- package/dist/es/bridge-mode.js.map +1 -1
- package/dist/es/chrome-extension.js +5 -2
- package/dist/es/chrome-extension.js.map +1 -1
- package/dist/es/index.js +320 -18
- package/dist/es/index.js.map +1 -1
- package/dist/es/midscene-playground.js +4 -1
- package/dist/es/midscene-playground.js.map +1 -1
- package/dist/es/playground.js +4 -1
- package/dist/es/playground.js.map +1 -1
- package/dist/es/playwright.js +320 -18
- package/dist/es/playwright.js.map +1 -1
- package/dist/es/puppeteer-agent-launcher.js +320 -18
- package/dist/es/puppeteer-agent-launcher.js.map +1 -1
- package/dist/es/puppeteer.js +320 -18
- package/dist/es/puppeteer.js.map +1 -1
- package/dist/lib/agent.js +4 -1
- package/dist/lib/agent.js.map +1 -1
- package/dist/lib/bridge-mode-browser.js +3 -3
- package/dist/lib/bridge-mode.js +6 -3
- package/dist/lib/bridge-mode.js.map +1 -1
- package/dist/lib/chrome-extension.js +5 -2
- package/dist/lib/chrome-extension.js.map +1 -1
- package/dist/lib/index.js +320 -18
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/midscene-playground.js +4 -1
- package/dist/lib/midscene-playground.js.map +1 -1
- package/dist/lib/playground.js +4 -1
- package/dist/lib/playground.js.map +1 -1
- package/dist/lib/playwright.js +320 -18
- package/dist/lib/playwright.js.map +1 -1
- package/dist/lib/puppeteer-agent-launcher.js +320 -18
- package/dist/lib/puppeteer-agent-launcher.js.map +1 -1
- package/dist/lib/puppeteer.js +320 -18
- package/dist/lib/puppeteer.js.map +1 -1
- package/dist/types/agent.d.ts +1 -1
- package/dist/types/bridge-mode-browser.d.ts +2 -2
- package/dist/types/bridge-mode.d.ts +2 -2
- package/dist/types/{browser-9b472ffb.d.ts → browser-f205f69d.d.ts} +1 -1
- package/dist/types/chrome-extension.d.ts +2 -2
- package/dist/types/index.d.ts +1 -1
- package/dist/types/midscene-server.d.ts +1 -1
- package/dist/types/{page-ed0ecb44.d.ts → page-c5452809.d.ts} +45 -0
- package/dist/types/playground.d.ts +2 -2
- package/dist/types/playwright.d.ts +1 -1
- package/dist/types/puppeteer-agent-launcher.d.ts +1 -1
- package/dist/types/puppeteer.d.ts +2 -2
- package/dist/types/utils.d.ts +1 -1
- package/dist/types/yaml.d.ts +1 -1
- package/package.json +2 -2
package/dist/lib/agent.js
CHANGED
@@ -1266,6 +1266,7 @@ var PageTaskExecutor = class {
|
|
1266
1266
|
actions: [],
|
1267
1267
|
more_actions_needed_by_instruction: false,
|
1268
1268
|
log: "",
|
1269
|
+
summary: "Loaded YAML workflow configuration",
|
1269
1270
|
yamlString
|
1270
1271
|
},
|
1271
1272
|
cache: {
|
@@ -1367,6 +1368,7 @@ var PageTaskExecutor = class {
|
|
1367
1368
|
actions: finalActions,
|
1368
1369
|
more_actions_needed_by_instruction,
|
1369
1370
|
log: log2,
|
1371
|
+
summary: planResult.summary || "Generated action plan from user instruction",
|
1370
1372
|
yamlFlow: planResult.yamlFlow
|
1371
1373
|
},
|
1372
1374
|
cache: {
|
@@ -1422,6 +1424,7 @@ var PageTaskExecutor = class {
|
|
1422
1424
|
actionType: actions[0].type,
|
1423
1425
|
more_actions_needed_by_instruction: true,
|
1424
1426
|
log: "",
|
1427
|
+
summary: action_summary || "Generated VLM action plan",
|
1425
1428
|
yamlFlow: planResult.yamlFlow
|
1426
1429
|
},
|
1427
1430
|
cache: {
|
@@ -2016,7 +2019,7 @@ var import_utils9 = require("misoai-shared/utils");
|
|
2016
2019
|
var import_semver = __toESM(require("semver"));
|
2017
2020
|
|
2018
2021
|
// package.json
|
2019
|
-
var version = "1.6.
|
2022
|
+
var version = "1.6.2";
|
2020
2023
|
|
2021
2024
|
// src/common/task-cache.ts
|
2022
2025
|
var debug3 = (0, import_logger3.getDebug)("cache");
|