curl.

Why you need this
Activity feeds / audit logs
Order state changes, user actions, system events, append them to a stream. Any consumer gets the full history in one request or subscribes for live updates. Naturally ordered, push-based, and replayable from any point in time.Collaborative editing
Online document editors need every user’s changes to reach every other user in real time. Each edit is appended to a stream, other clients subscribe via SSE. On reconnect, clients resume from their last offset, no gaps, no duplicates, no WebSocket server to build.AI agent execution visibility
AI coding assistants let users watch an agent work step by step instead of staring at a spinner. The agent appends each step to a stream, the frontend subscribes viaEventSource. If the agent process crashes, a new one picks up from the stream, progress lives in the stream, not in process memory.

