Investigation can bring screenshots, DOM, network logs, and crash dumps into the analysis context and local workspace
Source references: 4The Skill treats screenshots as the default evidence and can request full traces. Run assets may also contain DOM snapshots, HAR network entries, video, and browser crash dumps, while MCP places extracted results in a `.momentic-mcp` working directory.
If test pages expose tokens, personal information, customer data, or internal request content, that material may enter the model context and remain in local run artifacts, broadening access to sensitive data.
The investigation requests step screenshots and may request a potentially very large full trace; MCP also stores extracted run results under local `.momentic-mcp`. These materials can contain page content, DOM data, or sensitive information shown during testing, expanding local retention and model-processing exposure. HAR, video, and crash archives are documented as possible assets but are not required to be read by default. Users can request step-level minimization, full traces off by default, and a clear retention/deletion policy.
`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.Show 3 other places
├── 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.