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/playground.js
CHANGED
@@ -1271,6 +1271,7 @@ var PageTaskExecutor = class {
|
|
1271
1271
|
actions: [],
|
1272
1272
|
more_actions_needed_by_instruction: false,
|
1273
1273
|
log: "",
|
1274
|
+
summary: "Loaded YAML workflow configuration",
|
1274
1275
|
yamlString
|
1275
1276
|
},
|
1276
1277
|
cache: {
|
@@ -1372,6 +1373,7 @@ var PageTaskExecutor = class {
|
|
1372
1373
|
actions: finalActions,
|
1373
1374
|
more_actions_needed_by_instruction,
|
1374
1375
|
log: log2,
|
1376
|
+
summary: planResult.summary || "Generated action plan from user instruction",
|
1375
1377
|
yamlFlow: planResult.yamlFlow
|
1376
1378
|
},
|
1377
1379
|
cache: {
|
@@ -1427,6 +1429,7 @@ var PageTaskExecutor = class {
|
|
1427
1429
|
actionType: actions[0].type,
|
1428
1430
|
more_actions_needed_by_instruction: true,
|
1429
1431
|
log: "",
|
1432
|
+
summary: action_summary || "Generated VLM action plan",
|
1430
1433
|
yamlFlow: planResult.yamlFlow
|
1431
1434
|
},
|
1432
1435
|
cache: {
|
@@ -2021,7 +2024,7 @@ var import_utils9 = require("misoai-shared/utils");
|
|
2021
2024
|
var import_semver = __toESM(require("semver"));
|
2022
2025
|
|
2023
2026
|
// package.json
|
2024
|
-
var version = "1.6.
|
2027
|
+
var version = "1.6.2";
|
2025
2028
|
|
2026
2029
|
// src/common/task-cache.ts
|
2027
2030
|
var debug3 = (0, import_logger3.getDebug)("cache");
|