flow_replay
Replay captured network calls server-side to verify a synthesized flow actually reproduces, resolving chained dependencies at runtime from live responses. Get a per-call status report.
Instructions
Execute the captured network calls since the last flow_mark (or the whole buffer) for real, server-side (Node fetch, NOT the browser session) -- this verifies a synthesized flow actually reproduces. Chained dependencies (e.g. an auth token) are resolved at RUNTIME from each step's live replay response, not from the original capture, so a genuinely broken reversed flow is caught here. Returns a compact per-call report: '#i METHOD url → status (recorded status) ✓/✗ [deps: ...]'. Safety: only http/https URLs are replayed, each request has a timeout (default 10s), the whole call is capped at 60s / 200 steps, and it never touches the live browser session.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sinceSeq | No | override the window start; default is the session's flow_mark, else 0 | |
| sessionId | No | ||
| timeoutMs | No | per-request timeout in ms (default 10000, capped at the overall 60000ms replay budget) | |
| includeAll | No | include non-XHR/Fetch resource types (default: XHR/Fetch only) |