Every run, on a dashboard



An agent that reads the dashboard
The agent reads structured evidence — not raw logs — then diffs runs, explains regressions, and edits environments, data, specs, and flows. Every write shows a diff before it lands.

Evidence, not logs
Cloud keeps the request, response, assertion, and trace as structure — readable enough for people, structured enough for an agent to repair against without quietly weakening the test.
failure object
{
"status": "failed",
"testId": "auth.get-me",
"step": "GET /users/me",
"reason": { "kind": "assertion",
"expected": 200, "actual": 401 },
"events": [
{ "type": "http.request", "url": "/users/me" },
{ "type": "http.response", "status": 401 },
{ "type": "assert.failed",
"path": "status", "expected": 200, "actual": 401 }
]
}One evidence layer, many readers
Trust note