This document summarizes the current client-facing Musubi contract. The
authoritative runtime behavior still lives in spec/ and the BDR records;
this file describes how the generated TypeScript surface and client packages
fit that contract.
Status
The settled direction is:
- clients open one Musubi connection, then mount declared roots by
{module, id} - one physical
Phoenix.Socketcarries many logical Musubi roots - the server owns the store tree and sends patch envelopes
- the TypeScript client materializes the tree, streams, async values, and store proxies
- generated TypeScript is type-only; it does not emit runtime descriptors, registries, store objects, or proxy implementations
- generated marker internals are symbol-branded type information, never wire data
Runtime keys are deliberately stable. In particular, keep
__musubi_store_id__ as the reserved field on rendered store nodes.
Public Client Shape
Applications create one Phoenix socket, open one Musubi connection, and mount
declared roots through that connection. The generated Musubi.Stores
registry type is bound to the API exactly once — via the R generic on
connect<R>(socket), or via createMusubi<R>() in @musubi/react —
and the module string literal then drives type inference for every
later mountStore call. mountStore returns a { store, unmount }
pair.
const phx = new Phoenix.Socket("/socket", {
params: { token: window.userToken },
})
const connection = await connect<Musubi.Stores>(phx)
const { store: cart, unmount } = await connection.mountStore({
module: "MyApp.Stores.CartPageStore",
id: "cart:page",
params: { cart_id: "cart:page" },
})
cart.title
cart.header.title
cart.lines.map((line) => line.name)
const reply = await cart.dispatchCommand("checkout", {})
await unmount()The backend socket module declares the root-store allowlist and implements only Musubi callbacks. Phoenix socket and channel behaviours are adapter details.
defmodule MyAppWeb.UserSocket do
use Musubi.Socket,
roots: [
MyApp.Stores.CartPageStore,
MyApp.Stores.DashboardStore
]
@impl Musubi.Socket
def handle_connect(%{"token" => token}, socket) do
{:ok, Musubi.Socket.assign(socket, :token, token)}
end
@impl Musubi.Socket
def handle_join(_params, socket), do: {:ok, socket}
endPublic rules:
- callers open one connection and mount roots by module name plus root id
- callers do not pass generated runtime values
- callers do not decode patches, streams, or async wire values manually
- callers may explicitly unmount a mounted root by awaiting the
unmountclosure returned frommountStore - mounts are ref-counted: each
mountStorecaller receives its ownunmounthandle; the underlying root tears down only when the last caller unmounts connection.disconnect()returnsPromise<void>- child stores are exposed as nested proxies
- streams are exposed as materialized arrays
- async values are exposed as normalized
AsyncResult<T> - command failures and timeouts surface as
MusubiCommandError(see below); the publicMusubiConnection<R>interface exposes onlymountStoreanddisconnect— the connection topic is not part of the public surface
interface MountedStore<M, R> {
readonly store: StoreProxy<M, R>
readonly unmount: () => Promise<void>
}Identity
Musubi connection identity is the Phoenix channel topic:
type Connect = {
topic?: string
}The default topic is "musubi:connection". The client sends an empty channel join
payload for the connection. Auth and transport-level data should come from
Phoenix socket params/connect_info; root business params belong to mountStore.
Root mount identity is:
type MountStore = {
module: string
id: string
params?: Record<string, unknown>
}The module string must match a root store module declared by the backend
connection. The id must be explicit and unique within that connection.
Mounted store identity inside a connected tree is:
type StoreId = string[]Rules:
- the root store id is
[] - child store ids are authored by the server
- the client echoes server-provided ids verbatim when dispatching commands
- the client never constructs or parses store ids
Every rendered store node carries:
type StoreNodeRef = {
__musubi_store_id__: StoreId
}Wire Contract
Mounting a declared root sends:
type MountMessage = {
module: string
id: string
params: Record<string, unknown>
}Commands target mounted stores by root_id plus store_id:
type CommandMessage = {
root_id: string
store_id: StoreId
name: string
payload: Record<string, unknown>
}Patch pushes use JSON Patch for ordinary state and stream_ops for stream
materialization:
type JsonPatchOp =
| { op: "add"; path: string; value: unknown }
| { op: "remove"; path: string }
| { op: "replace"; path: string; value: unknown }
type StreamOp =
| { op: "reset"; stream: string; ref: string; store_id: StoreId }
| {
op: "insert"
stream: string
ref: string
store_id: StoreId
item_key: string
at: number
item: unknown
limit: number | null
}
| {
op: "delete"
stream: string
ref: string
store_id: StoreId
item_key: string
}
type PatchEnvelope = {
type: "patch"
base_version: number
version: number
ops: JsonPatchOp[]
stream_ops: StreamOp[]
}
type WireStreamMarker = {
__musubi_stream__: string
}
type ConnectionPatchEnvelope = PatchEnvelope & {
root_id: string
}Envelope rules:
- the initial envelope carries
base_version: 0andversion: 1 - each later envelope must apply to the client's current version
- idle render cycles emit no envelope
- reconnect creates a fresh page runtime and fresh version sequence
- in connection transport, every patch envelope includes
root_id; the client applies it only to the matching mounted root runtime - stream placement paths contain
WireStreamMarkerobjects inops - stream contents move through
stream_ops
See Musubi.Stream for declaration, render placement, and validation
rules.
Async Values
The wire shape mirrors Musubi.AsyncResult serialization:
type WireAsyncError =
| { kind: "error"; value: unknown }
| { kind: "exit"; value: unknown }
type WireAsyncResult<T = unknown> =
| { status: "loading"; result: T | null; reason: null }
| { status: "ok"; result: T; reason: null }
| { status: "failed"; result: T | null; reason: WireAsyncError | unknown }The public client normalizes this to:
type AsyncError =
| { kind: "error"; value: unknown }
| { kind: "exit"; value: unknown }
type AsyncResult<T> =
| { status: "loading"; data: T | null; error: null }
| { status: "ok"; data: T; error: null }
| { status: "failed"; data: T | null; error: AsyncError | unknown }Normalization rules:
resultbecomesdatareasonbecomeserrorAsyncResult.of(T)projects toAsyncResult<T>AsyncResult.of(stream(T))projects toAsyncResult<T[]>; on the wire the asyncresultis the stream marker, and item content still arrives throughstream_ops
Command Errors
dispatchCommand and the React useMusubiCommand dispatcher both
surface failures and timeouts as a single class exported from
@musubi/client:
class MusubiCommandError extends Error {
readonly name: "MusubiCommandError"
readonly kind: "failed" | "timeout"
readonly command: string
readonly storeId: readonly string[]
readonly reply: unknown
readonly code: string | undefined
static is(value: unknown): value is MusubiCommandError
}Rules:
kind: "failed"carries the raw serverreply;kind: "timeout"hasreply: undefinedcodeis extracted from the reply by checking stringcode,error, thenreasonfields (in that order)causeis preserved viaError.causewhen suppliedMusubiCommandError.is(value)is name-based and cross-module safe
Stable List Keys
keyOf(proxy) (exported from @musubi/client, re-exported from
@musubi/react) returns a stable string identity for a store proxy
derived from its store_id path. It is the supported way to key React
lists of child proxies; callers must not synthesize keys from
__musubi_store_id__ directly.
React Surface
@musubi/react exposes createMusubi<R>(), which closes over the
registry once and returns the full hook set bound to R:
interface MusubiFactory<R> {
connect: (socket: SocketLike, options?: ConnectOptions) => Promise<MusubiConnection<R>>
MusubiProvider: FC<MusubiProviderProps<R>>
useMusubiConnection: () => MusubiConnection<R>
useMusubiConnectionStatus: () => MusubiConnectionStatus<R>
useMusubiRoot: <M>(options: UseMusubiRootOptions<M, R>) => MusubiRootMount<M, R>
useMusubiRootSuspense: <M>(options: UseMusubiRootOptions<M, R>) => StoreProxy<M, R>
useMusubiSnapshot: { /* selector + optional equalityFn (defaults to shallowEqual) */ }
useMusubiCommand: <M, K>(proxy: StoreProxy<M, R>, name: K) => MusubiCommandResult<M, K, R>
}
type MusubiConnectionStatus<R> =
| { state: "connecting"; connection: null }
| { state: "ready"; connection: MusubiConnection<R> }
| { state: "error"; connection: null; error: Error }
type MusubiProviderProps<R> =
| { connection: MusubiConnection<R>; socket?: never; children: ReactNode }
| { socket: SocketLike; topic?: string; connection?: never; children: ReactNode }
interface MusubiCommandResult<M, K, R> {
dispatch: (payload: CommandPayload<M, K, R>) => Promise<CommandReply<M, K, R>>
isPending: boolean
error: MusubiCommandError | null
data: CommandReply<M, K, R> | null
reset: () => void
}Rules:
MusubiProvideraccepts eitherconnectionorsocket, never both; withsocket, the provider owns the connect/disconnect lifecycleuseMusubiConnectionStatus()is the only safe hook inside the "connecting" / "error" states;useMusubiConnection()throws unless the status is "ready"useMusubiRootanduseMusubiRootSuspenseshare one ref-counted root-mount cache keyed by{module, id, canonical(params)}; params are stringified with sorted keys so literal-equal params share mountsuseMusubiRootSuspensethrows an in-flight Promise for<Suspense>and a cached Error for the nearest error boundaryuseMusubiSnapshotdefaultsequalityFntoshallowEqualwhen a selector is supplied; pass an explicitequalityFnto overrideuseMusubiCommandsequences concurrentdispatchcalls with a monotonic request token: only the latest call's outcome lands indata/error;reset()clears both
Generated TypeScript
mix compile.musubi_ts emits an ambient .d.ts bundle. It owns the generated
Musubi.Stores interface and the marker types used by @musubi/client.
declare namespace Musubi {
type StoreId = string[]
const Type: unique symbol
interface StoreDef<Module extends string, Shape, Commands> {
readonly [Type]: {
module: Module
shape: Shape
commands: Commands
}
}
type StoreField<Module extends string> = {
readonly [Type]: { kind: "store"; module: Module }
}
type StreamField<Item> = {
readonly [Type]: { kind: "stream"; item: Item }
}
type AsyncField<Value> = {
readonly [Type]: { kind: "async"; value: Value }
}
interface Stores {
"MyApp.Stores.CartPageStore": StoreDef<
"MyApp.Stores.CartPageStore",
{
title: string
header: StoreField<"MyApp.Stores.HeaderStore">
lines: StreamField<MyApp.CartLine>
profile: AsyncField<MyApp.Profile>
},
{
checkout: {
payload: {}
reply: { order_id: string } | { error: string }
}
}
>
}
}Marker rules:
- markers are type-only
- marker properties never appear on the wire
- the runtime never reads marker properties
- symbol branding prevents ordinary user objects from matching Musubi marker types by accident
Client Projection
The client package derives public proxy and snapshot types from a
caller-supplied registry type R. User-facing helpers take the module
key first and require R as the second generic. The registry itself is
bound once for the connection by connect<R>(socket) or
createMusubi<R>(), not threaded through every call. Consumers pass
their generated Musubi.Stores type (or any store-map type) directly —
there is no intermediate Registry symbol.
type StoreModule<R> = Extract<keyof R, string>
type DefOf<M extends StoreModule<R>, R> = R[M & keyof R]
type StoreSnapshot<M extends StoreModule<R>, R> = {
readonly __musubi_store_id__: StoreId
} & {
[K in keyof ShapeOf<M, R>]: SnapshotValue<ShapeOf<M, R>[K], R>
}
interface StoreRuntime<M extends StoreModule<R>, R> {
readonly __musubi_store_id__: StoreId
dispatchCommand<K extends CommandName<M, R>>(
name: K,
payload: CommandPayload<M, K, R>
): Promise<CommandReply<M, K, R>>
subscribe(listener: () => void): () => void
snapshot(): StoreSnapshot<M, R>
}
type StoreProxy<M extends StoreModule<R>, R> =
StoreRuntime<M, R> & {
[K in keyof ShapeOf<M, R>]: ProxyValue<ShapeOf<M, R>[K], R>
}SnapshotValue<T, R> and ProxyValue<T, R> keep T first because T
is a projected wire type, not a module key.
Reserved runtime member names on every store proxy:
__musubi_store_id__dispatchCommandsubscribesnapshot
Runtime Materialization
For each connected root, the TypeScript runtime maintains:
- the latest accepted version
- the patched wire tree
- a
store_id -> nodeindex - a
(store_id, stream_name) -> materialized_listtable - a
store_id -> proxycache
Property resolution on a proxy follows the live wire shape:
- reserved runtime members return runtime implementations
- wire values carrying
__musubi_store_id__return cached nested proxies - wire values carrying
__musubi_stream__return materialized arrays - async values return normalized
AsyncResult<T> - async streams return normalized
AsyncResult<T[]> - plain objects recurse through the same resolution rules
- plain fields return their wire value
Generated marker types only drive TypeScript inference. Runtime behavior is driven by the wire tree, stream tables, and proxy cache.
Separation Of Concerns
Server/codegen owns:
- the declared store shape
- command payload and reply types
- type-only markers for store, stream, and async fields
- the generated
Musubi.Storesregistry
Client runtime owns:
- opening Phoenix Channel connections
- applying patch envelopes
- materializing streams
- normalizing async wire values
- constructing and caching proxies
- dispatching commands with server-provided
store_idvalues