调查可把截图、DOM、网络日志和崩溃转储带入分析上下文及本地工作目录
原文依据:4 处Skill 要求以截图为主要证据,并可读取完整跟踪;运行资产还包括 DOM、HAR 网络条目、视频和浏览器崩溃转储。MCP 会把解压后的运行结果放进 `.momentic-mcp` 工作目录。
测试页面若显示访问令牌、个人资料、客户数据或内部请求内容,这些信息可能被纳入模型上下文并留存在本地运行资产中,扩大敏感数据的可见范围。
调查会请求步骤截图,并可请求可能很大的完整 trace;MCP 还会把解压后的运行结果存入本地 `.momentic-mcp`。这些材料可能包含页面内容、DOM 或测试期间出现的敏感信息,从而扩大本地留存和模型处理范围。HAR、视频及崩溃包在文档中列为可能资产,但文本未要求默认读取它们。用户可要求限定所取步骤、默认禁用完整 trace,并说明本地结果的保留和清理策略。
`momentic_get_step_result` — Returns the result of a specific step, with other information such as full step trace and before/after screenshots. Use `parentStepIdChain` for steps nested inside other steps. Only request `includeTrace=true` when you need it, because it can be very large.查看另外 3 个位置
├── metadata.json attempt outcome and step results. ├── console.json optional browser console output. └── assets/ ├── <snapshotId>.jpeg before/after screenshot for each step (see attempt metadata.json for snapshot ID). ├── <snapshotId>.html before/after DOM snapshot for each step (see attempt metadata.json for snapshot ID). ├── har-pages.log HAR pages (ndjson). ├── har-entries.log HAR network entries (ndjson). ├── resource-usage.ndjson CPU/memory samples taken during the attempt. ├── <videoName> video recording (when video recording is enabled). └── browser-crash.zip browser crash dump (only present on crash).```When getting run results via the momentic MCP, tools such as `momentic_get_run` will return links to the MCP working directory (default `.momentic-mcp`). This directory will contain unzipped run result folders, following the structure above, named `run-result-<runId>`.- Screenshots are the default truth source for page state. Use trace fields and DOM/HTML to explain why the screenshot changed or did not change.- Verify every causal claim. Do not say an overlay, side peek, modal, or menu was present unless the relevant before/after screenshot, URL, or DOM proves it.