Documentation Index
Fetch the complete documentation index at: https://developers.autoplay.ai/llms.txt
Use this file to discover all available pages before exploring further.
Available now.
What you get
Every action a user takes in your product — page views, clicks, form inputs — is captured and delivered to your agent as a structured, LLM-ready payload. This is not raw browser telemetry. Before events reach your agent, Autoplay’s pipeline processes them:- Extraction — raw DOM events are extracted and normalised into typed actions
- Labelling — each action is given a human-readable description with inferred intent
- Grouping — actions are collected into a session with an inferred goal
- Summarisation (optional) — the connector can run an LLM pass to produce a compact prose summary of the full session
ActionsPayload that your agent can read and reason over directly.
user_id can be optional in some companies depending on what their session
replay provider captures. Your pipeline should still work with session-scoped
activity even when user identity is absent.What your copilot can do at this stage
Your agent can see exactly what the user is doing right now — which page they’re on, what they just clicked, and what their inferred intent is. It can respond contextually to any action without waiting for the user to describe the situation in chat.Limitation
Every session still looks like a first session. Your agent has no memory of what this user has done before, which workflows they’ve already completed, or where they typically get stuck — and without a workflow ontology it cannot compare live behaviour to an ideal journey.Code
Optional identity enhancement: UserSessionIndex
Live events arrive keyed by session_id first. The compulsory requirement is to
keep session-scoped activity stable and then map it to the correct
conversation_id once chat begins.
If your deployment captures reliable user_id, wire
UserSessionIndex to map one user to recent
session_id refs so cross-session retrieval can be user-keyed too.
If user_id is not captured, keep operating on the session-scoped base path;
you can add user scoping later without changing the core session mapping model.
Next: Step 2 — Add actions to LLM context










