Sessions

Run a session, stream its events, and handle the errors it can throw.

A session is one agent run, in its own sandbox, on its own git branch. kortix.session(projectId, sessionId) returns the handle for everything a session does: start it, send prompts, stream events, and read status. This page covers the handle, the readiness handshake, streaming, and the typed errors an SDK call can throw.

const s = kortix.session(projectId, sessionId);

s is the handle for everything a session does. The session ID, the sandbox ID, and the branch name are the same value. See Sessions for the concept.

Session lifecycle

MethodWrapsWhat it does
s.get(opts?)GET /projects/:pid/sessions/:sidReads session details
s.update(input)PATCH …/sessions/:sidRenames the session or updates metadata
s.start(waitMs?)POST …/sessions/:sid/startProvisions and boots the runtime
s.restart()POST …/sessions/:sid/restartRestarts the runtime; keeps the same sandbox
s.stop()POST …/sessions/:sid/stopStops the runtime; the session stays
s.delete()DELETE …/sessions/:sidDeletes the session
s.setSharing(intent)PUT …/sharingSets sharing and visibility
s.commit(input?)Commits the agent's work

s.delete() deletes the session and its runtime. This cannot be undone. To pause a session without losing it, call s.stop() instead.

Three more read methods round out the handle:

  • s.previews() — candidate preview ports the runtime exposes.
  • s.publicShares.list() / .create(input) / .revoke(shareId) — public share links.
  • s.audit(limit?) — the session's audit trail of agent actions.
  • s.transcript(options?) — a compact server-side transcript (text and tool calls, no tool inputs or outputs). This works with a project-scoped session token.

Readiness is a handshake

Before you send a prompt, call ensureReady(). It provisions the sandbox if needed, waits for the runtime to boot, and returns the resolved runtime.

const { opencodeSessionId, runtimeUrl, sandboxId } = await s.ensureReady();

On a cold boot, ensureReady() can throw RUNTIME_UNAVAILABLE. See Retry on a cold boot for what that means and how to retry.

s.send() and s.abort() call ensureReady() for you.

Send a prompt

s.setModel({ providerID, modelID }); // sticky for later send() calls
s.setAgent('build'); // sticky for later send() calls

await s.send('Refactor the auth module');
await s.send('One-off task', { model, agent }); // overrides for this call only
await s.abort(); // stop the current run

send() resolves the runtime, then prompts it. abort() stops the current run without deleting the session.

Runtime status and previews

MethodReturnsUse
s.health(init?){ status, ok, health, body }Check whether the runtime is alive
s.previewUrl(port, path?)stringGet a proxy URL for a port the agent exposed
s.proxyUrl(url?)string | undefinedRewrite a localhost URL the agent printed
const { ok, health } = await s.health();
const url = s.previewUrl(3000, '/docs');

s.health() never throws. Call it any time, even before the session has a runtime. s.previewUrl() and s.proxyUrl() need a resolved runtime — call s.ensureReady() first, or they throw SessionNotReadyError. See Session readiness errors.

Streaming

Use s.stream() to receive live events in a script or server. In a React app, use useSession instead — it manages the whole session lifecycle for you.

A session's events come from the OpenCode runtime inside its sandbox. The Kortix API proxies them to you. There is no separate WebSocket endpoint. The transport is fetch with a streaming response body, read through ReadableStream and TextDecoderStream. The SDK handles reconnection, backoff, and a heartbeat check inside the event-stream layer. A dropped connection resumes on its own.

Stream a session:

  1. Call ensureReady() first. The runtime does not exist until the sandbox starts.
  2. Open the stream before you send a message, so you do not miss early events.
  3. Send the message.
  4. Close the stream when you see session.idle.
const session = kortix.session(projectId, sessionId);
const { opencodeSessionId } = await session.ensureReady();

const stream = await session.stream({
  onEvent: (event) => {
    if (event.type === 'session.idle' && event.properties.sessionID === opencodeSessionId) {
      onTurnDone();
      stream.close();
    }
  },
});

await session.send('Refactor the auth module');

Streaming needs fetch with a real ReadableStream body and TextDecoderStream. Browsers, Node 18 and later, Bun, and Cloudflare Workers all support it. React Native and Expo do not: their fetch has no response.body. On React Native, use createHttpSessionSyncController for bounded history and status synchronization. Use a platform-specific event transport for live events.

The controller loads the newest 10 messages first. loadOlder() follows the server cursor. loadHttpSessionHistory() follows every cursor for explicit exports.

Event types

Each event has a type and a properties object that holds its data, for example event.properties.sessionID.

typeWhen it fires
message.updated / message.removedA message changed or was deleted.
message.part.updated / message.part.removedA part (text, tool call, file) grew or was removed.
session.statusThe session's busy state changed.
session.idleThe turn finished.
session.errorThe turn failed. The event carries the error.
question.askedThe agent asked for input.
question.replied / question.rejectedThe answer to a question arrived.

Turn raw messages and parts into renderable output with classifyTurn. See SDK reference.

Retry on a cold boot

ensureReady() polls the session's /start endpoint — each call long-polls up to 30 s — until the runtime reaches a terminal ready/failed/stopped stage or its deadline (readyTimeoutMs, default ~180 s) elapses. On a warm session the first poll resolves ready immediately. On a cold boot it keeps polling while the sandbox reports retriable: true, so a slow start just takes longer rather than throwing. It only throws an ApiError with code: 'RUNTIME_UNAVAILABLE' if the runtime is still not ready when the deadline expires.

ensureReady() is idempotent, so concurrent calls for the same session share one /start request instead of sending several. The retryUntilReady helper below is now optional — ensureReady() already retries internally — but stays useful if you want a longer total budget than the default readyTimeoutMs.

async function retryUntilReady<T>(ensure: () => Promise<T>): Promise<T> {
  const deadline = Date.now() + 300_000;
  for (;;) {
    try {
      return await ensure();
    } catch (error) {
      const provisioning = error instanceof ApiError && error.code === 'RUNTIME_UNAVAILABLE';
      if (!provisioning || Date.now() > deadline) throw error;
      await new Promise((r) => setTimeout(r, 3_000));
    }
  }
}

See Error classes for the full ApiError shape. In React, useSession retries /start for you, so you do not need this pattern.

Files

s.files reads and writes the session's sandbox: list, read, readBlob, status, findFiles, findText, upload, create, copy, remove, mkdir, rename. Every call resolves the runtime first, and always targets this session's own sandbox. See the SDK reference for the full method list.

The raw runtime

s.runtime is the typed OpenCode client, scoped to this session. Use it only for calls that send, abort, and stream do not cover. It requires a resolved runtime — call s.ensureReady() first.

const { opencodeSessionId } = await s.ensureReady();
await s.runtime.session.prompt({
  sessionID: opencodeSessionId,
  parts: [{ type: 'text', text: 'Refactor the auth module' }],
});

The OpenCode sessionID here is not the session ID you pass to kortix.session(projectId, sessionId). The SDK resolves it during ensureReady() and caches it on the handle.

Handling errors

Every call through createKortix rejects with a typed Error subclass, never a plain object. Catch the error, check instanceof, and branch on .status or .code.

import { ApiError, BillingError } from '@kortix/sdk';

try {
  await kortix.project(projectId).sessions.create();
} catch (err) {
  if (err instanceof BillingError) {
    // 402 — out of credits or over a plan limit
  } else if (err instanceof ApiError) {
    // any other failed request — err.status, err.code, err.detail
  } else {
    throw err;
  }
}

Error classes

ClassExtendsWhen it throwsKey fields
ApiErrorErrorDefault for any failed request: bad status, network failure, timeout, or abortstatus, code, detail, response, url, endpoint, timeout
AuthErrorApiErrorgetToken returned null. Kortix never sent the requestcode is always 'NO_SESSION'
BillingErrorErrorHTTP 402. The only billing error classstatus (402), detail.message
RequestTooLargeErrorErrorHTTP 431. Usually too many files in one requestdetail.suggestion
SessionNotReadyErrorErrorA runtime accessor ran before ensureReady()name is 'SessionNotReadyError'

ApiError.name is 'ApiError' by default. Two cases override it:

  • name: 'AbortError', code: 'ABORTED' — the request was cancelled, for example by navigation. This is not a failure. Ignore it.
  • code: 'TIMEOUT' — the request's own timeout elapsed. url, endpoint, and timeout show what timed out.

For any other failure, status holds the HTTP status code. code comes from the backend's error_code, or falls back to the status as a string. message is an enumerable own property on ApiError, so it survives JSON.stringify and object spread.

Kortix retries some requests before your code sees an error. If a GET or HEAD request returns 502, 503, or 504, Kortix retries it up to 2 times, with a 250ms then 500ms delay. A transient transport failure on a GET or HEAD — a network error, not a status code — is retried the same way. A retry that succeeds never reaches onError. Kortix never retries POST, PUT, PATCH, or DELETE requests, or a 500 response.

Kortix throws AuthError on the client, before it sends a request, when getToken() returns null. AuthError extends ApiError, so err instanceof ApiError still matches. Check err instanceof AuthError, or err.code === 'NO_SESSION', to treat "not signed in" as a separate case from a backend failure.

Kortix throws BillingError for every HTTP 402 response: out of credits, over a plan limit, or another billing gate. detail.message holds the reason from the backend.

Kortix throws RequestTooLargeError for HTTP 431. This usually means the request carried too many files. detail.suggestion holds a ready-to-show hint for the user.

Session readiness errors

Two errors mean the session's sandbox is not ready yet. Handle each one differently.

SessionNotReadyError throws synchronously when you call a runtime accessor — session.previewUrl(), session.proxyUrl(), or session.runtime — before this session handle has resolved its sandbox. A session handle only resolves its own sandbox; it never falls back to another session's sandbox.

import { SessionNotReadyError } from '@kortix/sdk';

const s = kortix.session(projectId, sessionId);
try {
  const url = s.previewUrl(3000); // throws: not resolved yet
} catch (err) {
  if (err instanceof SessionNotReadyError) {
    await s.ensureReady();
  }
}

Call await session.ensureReady() first, or call send(), which readies the session internally. session.health() is the one accessor that never throws this error, so you can poll it before the session boots.

RUNTIME_UNAVAILABLE is the second error — it means ensureReady() itself timed out waiting for a cold boot. See Retry on a cold boot for the full pattern. In React, useSession retries this for you and exposes it through the phase value instead of throwing.

Helpers

HelperSignatureWhat it does
parseBillingError(error)(error) => ErrorWraps a 402 response into a BillingError. Returns other errors unchanged
isBillingError(error)(error) => booleanReturns error instanceof BillingError
formatBillingErrorForUI(error)(error) => BillingErrorUI | nullReturns null for non-billing errors. Otherwise returns { alertTitle, alertSubtitle } for an upgrade modal
import { formatBillingErrorForUI } from '@kortix/sdk';

try {
  await kortix.session(projectId, sessionId).start();
} catch (err) {
  const ui = formatBillingErrorForUI(err);
  if (ui) showUpgradeModal(ui.alertTitle, ui.alertSubtitle);
}

In @kortix/sdk/react

@kortix/sdk/react re-exports BillingError, RequestTooLargeError, parseBillingError, isBillingError, and formatBillingErrorForUI. It does not re-export ApiError or AuthError — import those from @kortix/sdk.

useSession classifies every send, answerQuestion, answerPermission, and rejectQuestion failure into one sendError object, so you do not need to write instanceof checks by hand:

interface KortixSendError {
  kind: 'billing' | 'runtime-not-ready' | 'runtime-error';
  message: string;
  billing?: BillingError; // set when kind is 'billing'
  cause: unknown;
}
const s = useSession(projectId, sessionId);

if (s.sendError?.kind === 'billing') {
  const ui = formatBillingErrorForUI(s.sendError.billing);
}

See React hooks for the rest of useSession.

Sessions – Kortix Docs