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/es/playground.js
CHANGED
@@ -1253,6 +1253,7 @@ var PageTaskExecutor = class {
|
|
1253
1253
|
actions: [],
|
1254
1254
|
more_actions_needed_by_instruction: false,
|
1255
1255
|
log: "",
|
1256
|
+
summary: "Loaded YAML workflow configuration",
|
1256
1257
|
yamlString
|
1257
1258
|
},
|
1258
1259
|
cache: {
|
@@ -1354,6 +1355,7 @@ var PageTaskExecutor = class {
|
|
1354
1355
|
actions: finalActions,
|
1355
1356
|
more_actions_needed_by_instruction,
|
1356
1357
|
log: log2,
|
1358
|
+
summary: planResult.summary || "Generated action plan from user instruction",
|
1357
1359
|
yamlFlow: planResult.yamlFlow
|
1358
1360
|
},
|
1359
1361
|
cache: {
|
@@ -1409,6 +1411,7 @@ var PageTaskExecutor = class {
|
|
1409
1411
|
actionType: actions[0].type,
|
1410
1412
|
more_actions_needed_by_instruction: true,
|
1411
1413
|
log: "",
|
1414
|
+
summary: action_summary || "Generated VLM action plan",
|
1412
1415
|
yamlFlow: planResult.yamlFlow
|
1413
1416
|
},
|
1414
1417
|
cache: {
|
@@ -2003,7 +2006,7 @@ import { ifInBrowser as ifInBrowser2 } from "misoai-shared/utils";
|
|
2003
2006
|
import semver from "semver";
|
2004
2007
|
|
2005
2008
|
// package.json
|
2006
|
-
var version = "1.6.
|
2009
|
+
var version = "1.6.2";
|
2007
2010
|
|
2008
2011
|
// src/common/task-cache.ts
|
2009
2012
|
var debug3 = getDebug3("cache");
|