Rool Svelte
v0.10.1
Svelte 5 bindings for Rool Spaces. Adds reactive state to the SDK using $state runes.
Building a new Rool extension? Start with
@rool-dev/extension— it includes a reactive channel and handles hosting for you. This package is for integrating Rool into an existing Svelte application that manages its own auth, routing, and build setup.
Requires Svelte 5. For core concepts (objects, references, AI placeholders, undo/redo), see the SDK documentation.
Installation
npm install @rool-dev/svelteQuick Start
<script> import { createRool } from '@rool-dev/svelte';
const rool = createRool(); rool.init();
let channel = $state(null);</script>
{#if !rool.authenticated} <button onclick={() => rool.login('My App')}>Login</button>{:else} <h1>My Spaces</h1> {#each rool.spaces ?? [] as spaceInfo} <button onclick={async () => { const space = await rool.openSpace(spaceInfo.id); channel = await space.openChannel('main'); }}> {spaceInfo.name} </button> {/each}
{#if channel} <p>Interactions: {channel.interactions.length}</p> {/if}{/if}What It Provides
The Svelte wrapper adds reactive state on top of the SDK:
| Reactive Property | Description |
|---|---|
rool.authenticated | Auth state (null = checking, true/false = known) |
rool.spaces | List of available spaces |
rool.spacesLoading | Whether spaces are loading |
rool.spacesError | Error from loading spaces |
rool.connectionState | SSE connection state |
rool.userStorage | User storage (cross-device preferences) |
channel.interactions | Channel interactions (auto-updates) |
channel.objectLocations | All object locations in the space (auto-updates on create/delete/move) |
channel.collections | Collection names from the schema (auto-updates) |
channel.conversations | Conversations in this channel (auto-updates on create/delete/rename) |
thread.interactions | Interactions for a specific conversation (auto-updates) |
watch.objects | Objects matching a filter (auto-updates) |
watch.loading | Whether watch is loading |
Everything else passes through to the SDK directly. See the SDK documentation for full API details.
API
Lifecycle
const rool = createRool();
rool.init(); // Process auth callbacks (call on app startup)rool.login('My App'); // Redirect to login pagerool.signup('My App'); // Redirect to signup pagerool.verify(token); // Sign in from an email verification link (used by the official Rool app)rool.logout(); // Clear auth state and close all open spacesrool.destroy(); // Clean up all resourcesClient State
<script> // All properties are reactive $state // rool.authenticated → boolean | null // rool.spaces → RoolSpaceInfo[] | undefined // rool.spacesLoading → boolean // rool.spacesError → Error | null // rool.connectionState → 'connected' | 'disconnected' | 'reconnecting' // rool.userStorage → Record<string, unknown></script>
{#if rool.spacesLoading} <p>Loading spaces...</p>{:else if rool.spacesError} <p>Error: {rool.spacesError.message}</p>{:else} {#each rool.spaces ?? [] as space} <div>{space.name}</div> {/each}{/if}User Storage
Reactive cross-device storage for user preferences. Synced from server on init(), then kept up-to-date via SSE.
<script> const rool = createRool(); rool.init();</script>
<!-- Reactive binding to storage values -->{#if rool.userStorage.onboarding_complete} <Dashboard />{:else} <Onboarding onstep={(step) => rool.setUserStorage('onboarding_step', step)} />{/if}
<!-- Theme toggle --><button onclick={() => rool.setUserStorage('theme', rool.userStorage.theme === 'dark' ? 'light' : 'dark')}> Toggle theme</button>Spaces & Channels
Every space has its own SSE subscription. Open a space, then open channels on it. Call space.close() when done — this closes all open channels and stops the subscription.
// Open a space — reactive, with SSEconst space = await rool.openSpace('space-id');
// Open channels on the spaceconst channel = await space.openChannel('my-channel');const other = await space.openChannel('research'); // Independent channel, same space
// Space adminawait space.rename('New Name');await space.addUser(userId, 'editor');
// Create a new spaceconst fresh = await rool.createSpace('My New Space');const ch = await fresh.openChannel('main');
// Import from a zip archiveconst imported = await rool.importArchive('Imported', archiveBlob);
// Delete a space permanentlyawait rool.deleteSpace('space-id');
// Clean up — closes all open channels AND stops the subscriptionspace.close();ReactiveChannel
space.openChannel() returns a ReactiveChannel — the SDK’s RoolChannel with reactive interactions and objectLocations:
<script> let space = $state(null); let channel = $state(null);
async function open(spaceId) { space = await rool.openSpace(spaceId); channel = await space.openChannel('main'); }</script>
{#if channel} <!-- Reactive: updates as AI makes tool calls --> {#each channel.interactions as interaction} <div> <strong>{interaction.operation}</strong>: {interaction.output} </div> {/each}
<!-- All SDK methods work directly --> <button onclick={() => channel.prompt('Hello')}>Send</button>{/if}Reactive Object
Track a single object by location with auto-updates:
<script> let channel = $state(null); let item = $state(null);
let space = $state(null);
async function open(spaceId, location) { space = await rool.openSpace(spaceId); channel = await space.openChannel('main'); item = channel.object(location); // e.g. '/space/article/welcome.json' }</script>
{#if item} {#if item.loading} <p>Loading...</p> {:else if item.data} <div>{item.data.body.title}</div> {:else} <p>Object not found</p> {/if}{/if}// Reactive stateitem.data // $state<RoolObject | undefined>item.loading // $state<boolean>
// Methodsitem.refresh() // Manual re-fetchitem.close() // Stop listening for updatesLifecycle: Reactive objects are tied to their channel. Closing the channel stops all updates — existing reactive objects will retain their last data but no longer refresh. Calling channel.object() after close() throws.
Reactive Watches
Create auto-updating watches of objects filtered by field values:
<script> let channel = $state(null); let articles = $state(null);
let space = $state(null);
async function open(spaceId) { space = await rool.openSpace(spaceId); channel = await space.openChannel('main'); // Create a reactive watch of all objects in the 'article' collection articles = channel.watch({ collection: 'article' }); }</script>
{#if articles} {#if articles.loading} <p>Loading...</p> {:else} {#each articles.objects as article} <div>{article.body.title}</div> {/each} {/if}{/if}Watches automatically re-fetch when objects matching the filter are created, updated, or deleted. Since the SDK caches objects locally, re-fetches are typically instant (no network round-trip).
Lifecycle: Watches are tied to their channel. Closing the channel stops all updates — existing watches will retain their last data but no longer refresh. Calling channel.watch() after close() throws.
// Watch options (same as findObjects, but no AI prompt)const articles = channel.watch({ collection: 'article', where: { status: 'published' }, order: 'desc', // by modifiedAt (default) limit: 20,});
// Reactive statearticles.objects // $state<RoolObject[]>articles.loading // $state<boolean>
// Methodsarticles.refresh() // Manual re-fetcharticles.close() // Stop listening for updatesReactive Channel List
space.channels is a reactive ChannelInfo[] that auto-updates as channels are created, renamed, or deleted.
<script> let space = $state(null);
async function open(spaceId) { space = await rool.openSpace(spaceId); }</script>
{#if space} {#each space.channels as ch} <button onclick={() => space.openChannel(ch.id)}>{ch.name ?? ch.id}</button> {/each}{/if}Reactive Conversation Handle
For apps with multiple independent interaction threads (e.g., chat with threads), use channel.conversation() to get a handle with reactive interactions:
<script> let channel = $state(null); let thread = $state(null);
let space = $state(null);
async function openThread(spaceId, threadId) { space = await rool.openSpace(spaceId); channel = await space.openChannel('main'); thread = channel.conversation(threadId); }</script>
{#if thread} {#each thread.interactions as interaction} <div>{interaction.output}</div> {/each}
<button onclick={() => thread.prompt('Hello')}>Send</button>{/if}// Reactive statethread.interactions // $state<Interaction[]> — auto-updates via SSE
// All conversation-scoped methodsawait thread.prompt('Hello')await thread.createObject('note', { text: 'Note' })await thread.setSystemInstruction('Respond in haiku')await thread.rename('Research Thread')thread.getInteractions() // Manual readthread.getSystemInstruction()
// Cleanupthread.close() // Stop listening for updatesConversations are auto-created on first interaction. All conversations share one SSE connection per channel.
Channel Management
// Rename a channel on the space handleawait space.renameChannel('channel-id', 'New Name');
// Delete a channelawait space.deleteChannel('channel-id');
// Rename from within an open channelawait channel.rename('New Name');Using the SDK
All RoolChannel methods and properties are available on ReactiveChannel:
// Propertieschannel.idchannel.namechannel.rolechannel.channelId
// Object operations — addressed by location (`/space/<collection>/<basename>.json`)await channel.getObject(location)await channel.createObject('note', { text: 'Hello' })await channel.createObject('note', { text: 'Hello' }, { basename: 'welcome' })await channel.updateObject(location, { data: { text: 'Updated' } })await channel.moveObject(from, to)await channel.deleteObjects([location])await channel.findObjects({ collection: 'note' })
// AIawait channel.prompt('Summarize everything')
// Schemachannel.getSchema()await channel.createCollection('article', [ { name: 'title', type: { kind: 'string' } }, { name: 'status', type: { kind: 'enum', values: ['draft', 'published'] } },])await channel.alterCollection('article', [...updatedProps])await channel.dropCollection('article')
// Undo/Redoawait channel.checkpoint('Before edit')await channel.undo()await channel.redo()
// Interaction history & conversationsawait channel.setSystemInstruction('You are helpful')channel.getInteractions()channel.getConversations()await channel.deleteConversation('old-thread')await channel.renameConversation('Research')
// Conversation handles (reactive interactions for specific conversations)const thread = channel.conversation('thread-42');await thread.prompt('Hello'); // Uses thread-42's interaction history// thread.interactions is reactive $state — auto-updates via SSEthread.close(); // Stop listening when done
// Channel adminawait channel.rename('New Name')See the SDK documentation for complete API details.
Utilities
import { generateBasename, loc, parseLocation, normalizeLocation } from '@rool-dev/svelte';
// 6-character alphanumeric basenameconst basename = generateBasename();
// Build / parse location stringsconst location = loc('article', basename); // '/space/article/<basename>.json'const parts = parseLocation(location); // { collection, basename }const canonical = normalizeLocation('article/welcome'); // '/space/article/welcome.json'Exported Types
// Package typesimport type { Rool, ReactiveChannel, ReactiveConversationHandle, ReactiveObject, ReactiveWatch, WatchOptions, ReactiveChannelList } from '@rool-dev/svelte';
// Re-exported from @rool-dev/sdkimport type { RoolClient, RoolClientConfig, RoolChannel, RoolSpace, RoolSpaceInfo, RoolObject, RoolObjectStat, RoolUserRole, ConnectionState, ChannelInfo, Conversation, ConversationInfo, CurrentUser, Interaction, FindObjectsOptions, PromptOptions, CreateObjectOptions, UpdateObjectOptions, MoveObjectOptions, FieldType, FieldDef, CollectionDef, SpaceSchema, SpaceMember, UserResult, PublishedExtensionInfo, PublishExtensionOptions, ExtensionManifest, FindExtensionsOptions,
} from '@rool-dev/svelte';Examples
- soft-sql — SQL-style natural language queries with live tool call progress
- flashcards — Spaced repetition with AI-generated cards
License
MIT - see LICENSE for details.