Overview
Allternit Playground is a session-level debugging surface inside the Allternit platform. It lets you send ad-hoc prompts against a live session, inspect the memory that session has accumulated, toggle which tools the agent can use, and replay the event stream that led to the current state. Use it when you need to reproduce a behavior, verify that a session remembers the right context, or iterate on a system prompt without leaving the platform shell.How to access it
Allternit Playground runs inside the platform shell:Features
Prompt runner
Send system and user messages to a live session and inspect the raw response
Memory search
Query session memory by keyword and see ranked excerpts with section, line, and score
Tool selector
Attach built-in tools such as web search, bash, text editor, computer use, and MCP registry
Event replay
List every event recorded for a session, including type, timestamp, and full payload
Playground tabs
Session ID
Every tab scopes its work to a single Session ID. Enter the ID in the header input before running prompts, searching memory, or loading events. The Events tab fetches automatically once a session ID is present; the other tabs run on demand.Prompt tab
The Prompt tab sends a two-message payload to the session run endpoint:
The raw JSON response is rendered in a scrollable output panel. Use Clear output to reset it.
Memory tab
Enter a query and press Search (or hit Enter) to search the session memory. Results show:Tools tab
The Tools tab lets you toggle which capabilities the playground run can invoke. Available tool IDs:
Only selected tools are passed to the run endpoint. If no tools are selected, the request omits the
tools field.
Events tab
The Events tab loads the full event ledger for the session. Each event displays:type— the event typecreated_at— ISO timestampdata— full event payload as formatted JSON
Endpoints
Request example
Error handling
Allternit Playground surfaces errors as in-app toasts. Common causes:
Toasts auto-dismiss after five seconds and can be closed manually.
Key concepts
- Session-first debugging — every action is scoped to a single session ID, so you can inspect the exact context an agent is working with.
- Ad-hoc runs — send one-off prompts without creating or saving an agent configuration.
- Tool attachment — toggle tools per run to reproduce issues caused by specific capabilities.
- Memory inspection — verify what the session remembers and how relevant memories are ranked.
- Event replay — trace the sequence of events that produced the current session state.