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
@@ -1257,6 +1257,7 @@ var PageTaskExecutor = class {
|
|
1257
1257
|
actions: [],
|
1258
1258
|
more_actions_needed_by_instruction: false,
|
1259
1259
|
log: "",
|
1260
|
+
summary: "Loaded YAML workflow configuration",
|
1260
1261
|
yamlString
|
1261
1262
|
},
|
1262
1263
|
cache: {
|
@@ -1358,6 +1359,7 @@ var PageTaskExecutor = class {
|
|
1358
1359
|
actions: finalActions,
|
1359
1360
|
more_actions_needed_by_instruction,
|
1360
1361
|
log: log2,
|
1362
|
+
summary: planResult.summary || "Generated action plan from user instruction",
|
1361
1363
|
yamlFlow: planResult.yamlFlow
|
1362
1364
|
},
|
1363
1365
|
cache: {
|
@@ -1413,6 +1415,7 @@ var PageTaskExecutor = class {
|
|
1413
1415
|
actionType: actions[0].type,
|
1414
1416
|
more_actions_needed_by_instruction: true,
|
1415
1417
|
log: "",
|
1418
|
+
summary: action_summary || "Generated VLM action plan",
|
1416
1419
|
yamlFlow: planResult.yamlFlow
|
1417
1420
|
},
|
1418
1421
|
cache: {
|
@@ -2007,7 +2010,7 @@ var import_utils9 = require("misoai-shared/utils");
|
|
2007
2010
|
var import_semver = __toESM(require("semver"));
|
2008
2011
|
|
2009
2012
|
// package.json
|
2010
|
-
var version = "1.6.
|
2013
|
+
var version = "1.6.2";
|
2011
2014
|
|
2012
2015
|
// src/common/task-cache.ts
|
2013
2016
|
var debug3 = (0, import_logger3.getDebug)("cache");
|