Skip to main content

Overview

The @standardagents/react package provides React hooks and components for building UIs that connect to AgentBuilder threads. It handles real-time message streaming, custom event listening, and workblock transformation for tool visualization.

Key Features

  • Real-time WebSocket updates for live message streaming
  • Context-based architecture with ThreadProvider
  • Workblock transformation for UI-friendly tool displays
  • Custom event system for backend-to-frontend communication
  • File uploads and attachments for sending images to the LLM
  • TypeScript support with full type definitions
  • Works with any React framework (Next.js, Remix, Vite, etc.)

Installation

npm
pnpm
yarn

Quick Start

Core Providers

AgentBuilderProvider

Root provider that configures the API endpoint for all child components.
Props:

ThreadProvider

Establishes a WebSocket connection to a specific thread and provides context for child components.
Props:

Hooks

useThread

Hook to access the full thread context. Must be used within a ThreadProvider.

Method Reference

sendMessage

Send a message to the thread. Automatically includes any pending attachments and clears them after sending.
Signature:
Optimistic UI: When you call sendMessage(), an optimistic message with attachment previews is shown immediately. The real message replaces it when confirmed by the server via WebSocket.

addAttachment

Queue file(s) to be sent with the next message. Files are NOT uploaded immediately - they’re held locally with preview URLs and sent inline (base64) when sendMessage() is called. Use this for images/files that should be sent directly to the LLM.
Signature:
PendingAttachment Type:

removeAttachment

Remove a pending attachment before sending.
Signature:

clearAttachments

Remove all pending attachments.
Signature:

addFiles

Upload files to the thread’s filesystem. Files are uploaded immediately and stored persistently. Use this for documents/files that should be stored on the thread but NOT sent directly to the LLM.
Signature:
ThreadFile Type:

removeFile

Remove a pending file upload (cannot remove already committed files).

File URL Helpers


stopExecution

Stop the current agent execution.

deleteMessage

Delete a message from the thread. The message is optimistically removed from the UI immediately. If the server request fails, the message is restored.
Signature:
Note: Server-side attachment files are automatically cleaned up when a message is deleted.

onEvent / subscribeToEvent

Subscribe to custom events emitted by the agent.

addFiles vs addAttachment

Real-time File Synchronization

The files array from useThread() automatically stays synchronized with the server. When files are added, modified, or deleted on the thread (by the agent, tools, or other clients), the files array updates in real-time via WebSocket.

File Events

The SDK listens for three file-related events:

Custom File Event Handling

You can also subscribe to these events directly for custom handling:

How It Works

  1. Initial load: When ThreadProvider mounts, it fetches the current file list from the server
  2. Live updates: WebSocket events update the files array as changes occur
  3. Optimistic UI: Local uploads via addFiles() appear immediately as “uploading” then transition to “committed”
  4. Deduplication: Server files take priority over local pending files with the same path

useThread Return Value

Full ThreadContextValue: ConnectionStatus:

useThreadId

Returns the current thread ID from context.

Custom Events

Listen for custom events emitted by the backend using onEvent from useThread():
Backend Integration: Events are emitted from the backend using emitThreadEvent():

Workblocks

Workblocks are a UI-friendly transformation of tool calls. When useWorkblocks: true, consecutive assistant messages with tool calls are grouped into workblocks.

WorkMessage Type

Rendering Workblocks

TypeScript Support

The package is written in TypeScript and includes full type definitions.

Message Type

Complete Example

Next Steps

Core Concepts

Learn about agents, prompts, and tools

API Reference

Detailed API documentation

Builder Package

Backend framework documentation

Examples

Browse example implementations