Iblai api agent session
Talk to a deployed ibl.ai agent directly over REST/SSE (or WebSocket) and manage its chat sessions — POST a prompt to the agent chat endpoint, attach arbitrary metadata (surfaced later as client_context), and list/read sessions and per-task history exports. The direct-transport counterpart to iblai-api-agent-chat's MCP wiring; use when you want raw streamed chat + session records rather than an MCP server.From its SKILL.md
npx -y skills add iblai/api --skill iblai-api-agent-sessionAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
4 things to look at
- reads credentialsReads from 3 credential sources: `IBLAI_API_KEY` and 2 more.
- 15 stars15 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 3 commands, including `curl -N -X POST "https://asgi.data.iblai.app/api/agent/chat/?platform_key=$IBLAI_ORG&session_id=$SESSION" -H "Authorization: Api-Token $IBLAI_API_KEY" -H "Content-Type: application/json" -H "Accept: t` and 2 more.
- fetches URLsInstructs the agent to fetch 4 URLs, including https://asgi.data.iblai.app/api/agent/chat/?platform_key={org}&session_id={session_id} and 3 more.
SKILL.md
6.8 KB, ~1.8k tokens by cl100k_base, as published. Nobody here has run it
iblai-api-agent-session
Drive a deployed agent's chat transport directly and read its sessions.
Where /iblai-api-agent-chat wires a hosted MCP server for conversation, this
skill is the raw REST/SSE (and WebSocket) surface: POST a prompt, stream the
reply, attach metadata that resurfaces as client_context, and list/inspect
the resulting session records. Get IBLAI_ORG/IBLAI_USERNAME/IBLAI_API_KEY
from /iblai-api-login.
Auth & conventions
- Header:
Authorization: Api-Token $IBLAI_API_KEYon every request. - Path vars:
{org}=$IBLAI_ORG,{user}=$IBLAI_USERNAME. - Two hosts — chat is streaming/ASGI:
- Chat turn (SSE / WebSocket) →
https://asgi.data.iblai.app - Session reads/writes →
https://api.iblai.app/dm/api/ai-mentor/orgs/{org}/users/{user}/v1… i.e.…/orgs/{org}/users/{user}/sessions/…
- Chat turn (SSE / WebSocket) →
- Not connected yet? Run
/iblai-api-loginfirst.
Concepts
metadata → client_context passthrough. Every chat turn (WS or SSE) may carry a
metadata object of arbitrary key/values (BaseConsumerPayload.metadata). The runner
folds it into the prompt the agent sees, so the agent can tailor its reply, and the
consumer persists it on the session as Session.metadata["client_context"]. It is
session-level: each turn's metadata overwrites the session's client_context, so
it sticks across turns until you send new keys. Use it to tell one deployed agent
where/why a message arrives (product, plan tier, page, region) without editing its
prompt. It then echoes back on every read below. The sibling field page_content is
also appended to the prompt, but — unlike metadata — is stripped before the message is
saved.
Reads
- GET
…/dm/api/ai-mentor/orgs/{org}/users/{user}/sessions/— list the user's chat sessions. - GET
…/orgs/{org}/users/{user}/sessions/{session_id}/— the session's paginated chat messages (MessageView); the response also carriesclient_context, read from the session'smetadata["client_context"]. - GET
…/orgs/{org}/users/{user}/sessions/{session_id}/tasks/{task_id}/— the chat-history export (DownloadableChatHistory); every item carries aclient_contextfield. Add?to_csv=truefor a CSV whose columns are exactlytype,content,timestamp,client_context. Kicking off (POST) and polling that export task is owned by/iblai-api-agent-history. - Analytics echo: the same value comes back at
summary.client_contextfrom GET…/dm/api/analytics/messages/details/?platform_key={org}&session_id={session_id}— documented under/iblai-api-analytics.
Writes
- POST
https://asgi.data.iblai.app/api/agent/chat/?platform_key={org}&session_id={session_id}— send a chat turn; response is Server-Sent Events. Body (BaseConsumerPayload):{ "session_id": "…", "prompt": "Hello", "flow": { "name": "<agent unique_id>", "tenant": "<org key>" }, "page_content": "optional text appended to the prompt, stripped before saving", "metadata": { "any": "client context keys" } }session_id(a UUID4) andfloware required;flow.nameselects the agent (itsunique_id, or a slug/name) andflow.tenantis the org key.promptandpage_contentdefault to empty,metadatato null.metadatais passthrough — stored on the session asclient_context(see Concepts) and echoed in the reads above. The same payload works over WebSocket atwss://asgi.data.iblai.app/ws/chat/. - POST
…/dm/api/ai-mentor/orgs/{org}/users/{user}/sessions/— create/retrieve a session (ChatSessionView; the body'smentorfield picks the agent). Or let the first chat turn create one by passing a newsession_id.
Example
# Stream a chat turn with attached client context (SSE). MENTOR = the agent's unique_id.
curl -N -X POST \
"https://asgi.data.iblai.app/api/agent/chat/?platform_key=$IBLAI_ORG&session_id=$SESSION" \
-H "Authorization: Api-Token $IBLAI_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: text/event-stream" \
-d '{"session_id":"'"$SESSION"'","prompt":"Summarize my notes","flow":{"name":"'"$MENTOR"'","tenant":"'"$IBLAI_ORG"'"},"metadata":{"source":"docs","tab":"notes"}}'
# Read the session's messages back (client_context is the metadata you sent)
curl "https://api.iblai.app/dm/api/ai-mentor/orgs/$IBLAI_ORG/users/$IBLAI_USERNAME/sessions/$SESSION/" \
-H "Authorization: Api-Token $IBLAI_API_KEY"
# Download the history export as CSV (client_context is a column)
curl "https://api.iblai.app/dm/api/ai-mentor/orgs/$IBLAI_ORG/users/$IBLAI_USERNAME/sessions/$SESSION/tasks/$TASK/?to_csv=true" \
-H "Authorization: Api-Token $IBLAI_API_KEY"
Notes
- Streaming runs on ASGI — the chat turn (
/api/agent/chat/,/ws/chat/) is onasgi.data.iblai.app; session reads are ordinary REST on theapi.iblai.app/dmgateway.session_idandfloware required on every turn, andflow.namemust resolve to a deployed agent (itsunique_id, slug, or name). - For OpenAI-format inference against a provider/model (no agent RAG/memory), use
/iblai-api-inference; to chat via an MCP server instead of raw SSE, use/iblai-api-agent-chat; the history-export task (kick off + poll) is/iblai-api-agent-history; thesummary.client_contextanalytics read is/iblai-api-analytics.
Schema
metadata / client_context — an arbitrary JSON object (dict[str, Any] | null,
BaseConsumerPayload.metadata). No fixed keys; use whatever your app needs, e.g.
product, planTier, userRole, region. Sent as metadata on a chat turn, it is
persisted at Session.metadata["client_context"] and read back as client_context in
the session-messages response, the history export (a client_context field per item, or
CSV column via ?to_csv=true), and analytics summary.client_context.
Reference material
references/metadata-passthrough.md— themetadatapass-through companion: the<CONTEXT METADATA>prompt-injection format, per-transport wire notes (SSE/WebSocket + the embedded-iframepostMessagechannel), session caching (send-once, replace-not-merge, ~2h TTL), the one-agent-many-contexts pattern, and the storage/pipeline map (sessionclient_contextvs. the per-message snapshot).
What ships with it: 1 file
4.8 KB alongside SKILL.md
references/
- metadata-passthrough.md4.8 KB