Tail a demonstration (SSE)
Server-Sent Events: replays the session’s buffered event history from the start, then tails live AgentEvents (@browserflow/agent) as the demonstration proceeds. Confirmed terminal event types that close the stream: done, error, and canceled (the route matches on these explicitly); in-flight event types are the agent’s own progress vocabulary — see @browserflow/agent’s AgentEvent union for the full set, not duplicated here. A periodic : ping comment keeps the connection alive during a slow model turn or a parked human-in-the-loop pause.
承認
The dashboard's signed, HttpOnly session cookie (packages/service/src/auth.ts): base64url(payload).base64url(hmac-sha256), absolute 30-day lifetime, SameSite=Lax, Secure on any TLS deployment. Minted by POST /api/auth/signup or POST /api/auth/login (or, outside production, auto-provisioned by GET /api/session). Because it is HttpOnly, it cannot be read or attached by a browser-based API-reference "Try it" panel across origins — exercise these routes with a real logged-in browser session or a cookie-jar HTTP client.
パスパラメータ
The automation id.
レスポンス
An event: <AgentEvent.type> / data: <JSON AgentEvent> stream, closing after done, error, or canceled.
The response is of type string.