scout_crawl
Visit every undiscovered route in one call, record page states, and get a per-route health summary (status, elements, violations, dead-ends, auth-redirects) to identify problem areas before deep testing.
Instructions
Engine-side route sweep in ONE call: visits each path (default: all known routes not yet visited), records states into coverage memory, and returns a per-route health summary (HTTP status, element count, oracle violations, dead-ends, auth-redirects). Navigation-only — safe in read-only mode. Use this FIRST for broad coverage; explore interactively only where it flags problems or where journeys matter.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| paths | No | Paths to visit, e.g. ['/orders','/settings']. Omit to crawl all unvisited known routes. | |
| session | No | Target this session directly instead of the active one — pass it explicitly when dispatching to MULTIPLE sessions in one turn (e.g. two scout_click calls with different `session`), which then run CONCURRENTLY rather than queueing. Omit for single-session sequential use. |