| description | The React + Vite frontend (`app/src/`) - architecture, state, services, providers, routing, components, hooks. |
|---|---|
| icon | browsers |
The OpenHuman desktop UI: a Vite + React 19 tree under app/src/ (pnpm workspace openhuman-app). It uses Redux Toolkit with persistence for session state, talks to the in-process Rust core over JSON-RPC (coreRpcClient → local HTTP, with the Tauri relay_http_rpc command as a fallback relay) and socket.io (socketService), and reaches the cloud backend via REST (apiClient). Heavy logic lives in the core, not here.
This is one consolidated reference. Use the table of contents above (or your reader's outline) to jump between sections.
| Section | Covers |
|---|---|
| Architecture | Provider chain, build, layout, conventions |
| State Management | Redux Toolkit slices, selectors, persistence |
| Services Layer | apiClient, socketService, coreRpcClient |
| Providers | ThemeProvider, CoreState, Socket, ChatRuntime providers |
| Pages & Routing | HashRouter, route guards, main routes |
| Components | UI / settings component patterns |
| Hooks & Utilities | Shared hooks, helpers, config |
| Metric | Value |
|---|---|
TypeScript / TSX files under app/src/ |
~1700 (find app/src -name '*.ts' -o -name '*.tsx' | wc -l to refresh) |
| Test runner | Vitest (app/test/vitest.config.ts) |
app/src/
├── App.tsx # Provider chain + HashRouter shell (desktop + mobile shells)
├── AppRoutes.tsx # Desktop route table (AppRoutesIOS.tsx for mobile)
├── main.tsx # Entry (polyfills, Sentry, store, styles)
├── store/ # Redux slices, selectors, userScopedStorage persistence
├── providers/ # ThemeProvider, CoreStateProvider, SocketProvider, ChatRuntimeProvider
├── services/ # apiClient, socketService, coreRpcClient, transport/, api/* (~50 modules)
├── lib/ # AI prompt loaders, i18n, MCP helpers, platform, tunnel crypto
├── pages/ # Route-level screens (incl. onboarding/, ios/, dev/)
├── features/ # Feature verticals (human/, conversations/, meet/, voice/)
├── components/ # Shared UI (incl. settings/, layout/shell/, accounts/)
├── agentworld/ # tiny.place Agent World surface (/agent-world/*)
├── hooks/ # App hooks
├── utils/ # Config, Tauri command wrappers, routing utilities
└── assets/ # Icons and static assets
OpenHuman’s desktop UI is a React 19 app (app/src/) that:
- Uses Redux Toolkit with persistence for session-related state
- Connects to the backend with REST (
apiClient) and to the local core with Socket.io (socketService→ core socket endpoint) - Calls the Rust core (embedded in the Tauri host as a tokio task) over HTTP via
coreRpcClient(JSON-RPC methods implemented in repo rootsrc/openhuman/); non-loopback plain-http runtimes are relayed through the Taurirelay_http_rpccommand - Leaves AI prompts to the core: bundled
src/openhuman/agent/prompts(repo root) ship as Tauri resources and are read core-side, not by the frontend - Uses a minimal MCP-style helper layer under
lib/mcp/(transport, validation)
| File | Purpose |
|---|---|
app/src/main.tsx |
React root, polyfills, Sentry boundary, store, global styles |
app/src/App.tsx |
Provider chain (see below) + desktop/mobile shells, Settings modal overlay |
app/src/AppRoutes.tsx |
HashRouter routes, ProtectedRoute / PublicRoute / DefaultRedirect guards |
Generated from app/src/App.tsx by scripts/generate-architecture-docs.mjs. Do not edit by hand — run pnpm docs:generate to refresh.
| # | Component | Role |
|---|---|---|
| 1 | Sentry.ErrorBoundary |
Crash boundary; renders ErrorFallbackScreen |
| 2 | Provider |
Redux store; enables useAppSelector / dispatch app-wide |
| 3 | PersistGate |
Holds UI until persisted Redux slices rehydrate |
| 4 | ThemeProvider |
Theme tokens and dark-mode handling |
| 5 | I18nProvider |
Localization context consumed via useT |
| 6 | BootCheckGate |
Blocks render until the core boot snapshot resolves |
| 7 | CoreStateProvider |
Core app snapshot: auth, session, onboarding state |
| 8 | SocketProvider |
Core socket.io events; desktop only (mobile uses the TunnelTransport relay) |
| 9 | ChatRuntimeProvider |
Chat runtime events, tool timeline, and approvals |
| 10 | Router |
HashRouter navigation for all routes |
| 11 | CommandProvider |
Command palette context |
| 12 | ServiceBlockingGate |
Blocks the shell until required services are configured |
Why this order
- Redux
Provideris outermost souseAppSelector/ dispatch work everywhere. PersistGaterehydrates persisted slices before children assume stable auth/session.BootCheckGate/CoreStateProviderresolve the core boot snapshot (auth, onboarding) before feature providers mount.SocketProvider(desktop only) andChatRuntimeProviderdepend on that core state for realtime events and approvals.Routersupplies navigation to all routes.
App.tsx
├─ Redux store + persistor
├─ ThemeProvider / I18nProvider - theme tokens, useT() localization
├─ BootCheckGate - waits for the core boot snapshot
├─ CoreStateProvider - auth/session/onboarding snapshot (fetchCoreAppSnapshot RPC)
├─ SocketProvider - socket.io connection to the local core (desktop only)
├─ ChatRuntimeProvider - chat streaming, tool timeline, approvals → Redux
└─ AppShell (desktop or mobile)
├─ AppRoutes - PublicRoute / ProtectedRoute / DefaultRedirect
├─ SettingsModal - overlay mounted when the URL is /settings/*
└─ WebviewHost - active connected-app CEF webview overlay
services/
├─ apiClient → REST to a URL resolved at runtime via `services/backendUrl#getBackendUrl`
├─ backendUrl → Calls `openhuman.config_resolve_api_url`; falls back to VITE_BACKEND_URL only outside Tauri
├─ socketService → Socket.io to the local core (base URL derived from the RPC URL); MCP-style envelopes
├─ coreRpcClient → JSON-RPC over HTTP to the local openhuman core; `relay_http_rpc` fallback for non-loopback http
└─ transport/ → ConnectionProfile transports for iOS/remote (LanHttp, Tunnel, CloudHttp)
The desktop app does not bake the core RPC URL or the API host into the bundle as a hard requirement. At runtime the app resolves them in this order (highest first):
- Welcome-screen RPC URL field, saved via
utils/configPersistenceand restored on next launch. End users configure a self-hosted core address here, not by hand-editingconfig.tomlor.envfiles. - Tauri
core_rpc_urlcommand, the port the embedded core is listening on for this process. VITE_OPENHUMAN_CORE_RPC_URL, build-time fallback for development.- The hardcoded
http://127.0.0.1:7788/rpcdefault.
Once the RPC handshake succeeds, services/backendUrl calls openhuman.config_resolve_api_url to pull api_url (and other safe client fields) from the loaded core Config. VITE_BACKEND_URL is only used as a web fallback when the app runs outside Tauri.
Components that need the backend URL should call useBackendUrl() (or getBackendUrl() from non-React code), they must not import the static BACKEND_URL constant from utils/config, which represents the build-time value only.
- Rust architecture: Architecture
- Tauri shell: Tauri Shell
The application uses Redux Toolkit with Redux-Persist. There is no single root persist config: each slice that persists wraps its own reducer with persistReducer in store/index.ts, whitelisting exactly the fields that should survive a restart.
userScopedStorage(store/userScopedStorage.ts) — the default storage for persisted slices. Blobs are keyed${userId}:persist:<key>so state never leaks across users on logout/login (#900).- Plain
localStorage— used only for pre-login, device-wide slices (coreMode,locale,theme) that must survive user switches.
Authoritative list = the reducer map in store/index.ts. One-line purposes:
| Slice | Purpose | Persisted? |
|---|---|---|
accounts |
Connected web-app (CEF webview) accounts + rail ordering | accounts, order, lastActiveAccountId (not the active id) |
agentProfiles |
Agent profile data | no |
announcement |
Harness-init announcement banner, seen ids | shownIds |
backendMeet |
Backend-driven Google Meet call state (join/leave, transcript, replies) | no |
channelConnections |
Messaging channel connections (WhatsApp, Slack, …) | connections + migration/default-channel fields |
chatRuntime |
Streaming buffers, tool timelines, inference status, artifacts | only artifactsByThread (ready snapshots) |
companion |
Companion overlay state | no |
connectivity |
navigator.onLine + backend/core health status | no |
coreMode |
Pre-login core mode selection (embedded / self-hosted / cloud) | mode (plain localStorage) |
layout |
Two-pane layout geometry (sidebar visibility, dragged widths) | panels |
locale |
UI language | current (plain localStorage) |
mascot |
Mascot appearance / voice selection | color, voiceId, customMascotGifUrl, selectedMascotId |
notifications |
Notification items + preferences | items, preferences |
persona |
Cosmetic persona display name + description (SOUL.md lives in the core) | displayName, description |
providerSurfaces |
Provider webview surface state | no |
ptt |
Push-to-talk hotkey + session prefs (isHeld deliberately excluded) |
shortcut, speakReplies, showOverlay |
socket |
Per-user socket connection status / socket ids | no (reconnects on boot) |
theme |
Theme mode, font size, message view mode, custom themes | plain localStorage |
thread |
Chat thread list + per-thread message caches | only selectedThreadId |
userErrors |
User-actionable runtime errors (#3931) | no (in-memory only) |
Ephemeral chat state (streaming buffers, tool timelines) must not survive a restart — the UI would try to resume a turn whose live driver is gone. The one exception, agent-generated artifacts, goes through the artifactsReadyOnlyTransform in store/index.ts (pure logic in store/artifactsPersistFilter.ts).
File: store/hooks.ts
// Use these instead of plain useDispatch/useSelector
export const useAppDispatch: () => AppDispatch = useDispatch;
export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector;- Always use typed hooks —
useAppDispatchanduseAppSelector. - Use selectors for derived state — see
store/socketSelectors.ts,store/connectivitySelectors.ts,store/userErrorsSelectors.ts. - Whitelist persistence per slice — never persist transient/loading state; add a per-slice
persistReducerinstore/index.ts. - Prefer Redux over ad-hoc
localStorage— plain localStorage is reserved for the pre-login slices noted above. - In dev / E2E builds the store is exposed as
window.__OPENHUMAN_STORE__so WDIO specs can assert backing state; production bundles do not expose it.
The application uses singleton services for external communication. This prevents connection leaks and provides consistent API access.
app/src/services/
├─ apiClient (HTTP REST)
│ └─ backend URL resolved at runtime (services/backendUrl)
├─ socketService (Socket.io)
│ └─ connects to the local core's socket endpoint (base derived from the RPC URL)
├─ coreRpcClient.ts
│ ├─ direct webview fetch → local openhuman core (JSON-RPC over HTTP)
│ └─ invoke('relay_http_rpc', …) fallback for non-loopback plain-http runtimes
├─ coreCommandClient.ts - typed wrappers over core RPC methods
├─ transport/ - ConnectionProfile transports (LanHttp, Tunnel, CloudHttp) for iOS/remote
└─ services/api/* - domain API modules (~50 files, see below)
Fetch-based HTTP REST client for backend communication with typed request/response handling and error handling. The backend URL is resolved at runtime (services/backendUrl), not baked in.
import apiClient from "../services/apiClient";
const user = await apiClient.get<User>("/users/me");
const result = await apiClient.post<LoginResponse>("/auth/login", {
email,
password,
});~50 domain-scoped modules, one per feature surface, each wrapping either backend REST endpoints or core RPC methods. Representative examples:
authApi/userApi— auth + user profilethreadApi,threadGoalApi,threadUsageApi— chat threadsagentProfilesApi,agentTeamApi,agentWorkApi,subagentApi— agentsskillsApi,skillRegistryApi,flowsApi,workflowRunsApi,todosApi— skills & automationchannelConnectionsApi,mcpClientsApi,mcpSetupApi,tunnelsApi— connectionsmemoryTimelineApi,memoryFreshnessApi,graphCentralityApi,namespaceOverviewApi— memory/graphbillingApi,creditsApi,referralApi,rewardsApi,inviteApi— commercevoiceSettingsApi,voiceInstallApi,aiSettingsApi,modelCouncilApi— AI/voice config
For the full list, ls app/src/services/api/. New feature surfaces get their own module here rather than growing apiClient.
Socket.io client singleton connected to the local core's socket endpoint (base URL derived from the resolved RPC URL via coreSocket.ts; authenticated with the core RPC token). It ingests realtime core events — chat/meet/channel/companion updates — and dispatches them into Redux (socketSlice, backendMeetSlice, channelConnectionsSlice, companionSlice, connectivitySlice). It also hosts the MCP-style transport (SocketIOMCPTransportImpl from lib/mcp).
Keep socketService and the core socket behavior aligned (the "dual socket sync" rule in AGENTS.md). Connection lifecycle is owned by providers/SocketProvider.tsx; on mobile the provider is not mounted at all — events arrive through the TunnelTransport relay instead.
The Rust core runs in-process inside the Tauri host (no sidecar). The UI calls JSON-RPC methods on it over local HTTP:
import { callCoreRpc } from "../services/coreRpcClient";
const result = await callCoreRpc<MyType>({
method: "openhuman.some_method",
params: {
/* … */
},
timeoutMs: 60_000, // optional per-call override (default 30s)
suppressAuthExpiredEvent: false, // narrow reads can opt out of global sign-out on 401
});How a call flows:
- URL + token resolution — the RPC URL follows the precedence in Runtime config precedence; the per-launch bearer token comes from the Tauri
core_rpc_tokencommand (or the stored token for self-hosted cores). - Direct fetch — the webview
fetch()es the JSON-RPC envelope straight to the core (loopback http or any https URL). - Shell relay fallback — plain
http://to a non-loopback host is active mixed content and Chromium blocks it (#3865).rpcUrlNeedsShellRelay()detects this and routes the call throughinvoke('relay_http_rpc', { url, token, body }), implemented inapp/src-tauri/src/core_rpc.rs, which returns{ status, body }re-wrapped as aResponse. - Transport override — iOS/remote connection profiles install a
CoreTransport(setActiveCoreTransport) so the samecallCoreRpcsurface rides LAN/tunnel/cloud transports.
Errors are classified into a stable CoreRpcError.kind (auth_expired, transport, timeout, rate_limited, …) — callers branch on kind, never on message regexes. An auth_expired classification broadcasts core-rpc-auth-expired, which CoreStateProvider turns into a session clear.
- Use singletons — never create multiple service instances.
- Keep Tauri IPC and RPC calls in services — do not scatter
invoke()or raw fetches through components. - Clean up on unmount — disconnect in
useEffectcleanup. - Handle errors via
CoreRpcError.kind— retry only transient failures.
React context providers (app/src/providers/) manage service lifecycle and expose core-owned state. The full nesting (including gates that live in components/) is the generated provider chain above. There is no UserProvider, AIProvider, or SkillProvider — auth/user state lives in CoreStateProvider, AI configuration lives in the Rust core, and skills execute in the core (the frontend QuickJS skills engine was removed).
Applies theme tokens and dark-mode handling from the persisted theme slice (mode, font size, custom themes).
The authoritative auth/session/onboarding context. Fetches the core app snapshot (fetchCoreAppSnapshot() RPC), exposes it via useCoreState() ({ snapshot, isBootstrapping, refresh }), and clears the session on the global core-rpc-auth-expired event. It follows a turn-boundary refetch contract: after every agent reply completes (chat_done in ChatRuntimeProvider) it refetches the user state (debounced 750ms) and merges it into the snapshot via patchSnapshot — see providers/README.md.
Owns the socket.io connection to the local core: connects once core state is ready, updates the socket slice, and tears down on unmount. Desktop only — App.tsx skips it on mobile, where events arrive through the TunnelTransport relay.
Subscribes to chat runtime socket events (message streaming, tool calls, subagent lifecycle, approval requests) and reduces them into the chatRuntime slice — per-thread tool timelines, streaming buffers, artifacts, and approval state consumed by the chat surface and the mascot.
BootCheckGate(components/BootCheckGate/) — blocks render until the core boot snapshot resolves.CommandProvider(components/commands/) — command palette context.ServiceBlockingGate(components/daemon/) — blocks the shell until required services are configured.
| Use Context For | Use Redux For |
|---|---|
| Service instances (socket, client) | Serializable state (status, data) |
| Methods (emit, on, off) | Persisted state (sessions, tokens) |
| Derived values | Complex state logic |
Example: SocketProvider owns the socket instance; Redux stores connection status in socketSlice.
The mascot appears on two surfaces, deliberately. /human
(app/src/features/human/HumanPage.tsx) is the dedicated full-bleed stage with a
right-rail chat. /chat carries the same mascot docked on its composer, where it
expands into a voice stage in place. Both read one set of mascot preferences from
mascotSlice — colour, voice, speak-replies, dismissal — so the two can never
disagree about the same setting.
app/src/features/human/chatMascot/ owns the chat-side surface:
| Module | Role |
|---|---|
ChatMascotContext.tsx |
Shared dock/stage refs and the send binding. Every value is stable — see the re-render note below. |
ChatMascotDock.tsx |
The small mascot standing on the composer's input box. An anchor + hit area; it draws nothing. |
ChatMascotStage.tsx |
The scaled-up voice surface: MicComposer, input-device selector, speak-replies switch, collapse button. |
ChatMascotOverlay.tsx |
The single Rive instance, moved between dock and stage with a transform. |
geometry.ts |
Pure dock ⇄ stage transform maths (inscribedSquare, lerpBox, boxTransform). |
Clicking the dock expands the mascot into a right-hand stage column while the
transcript and the text composer stay live in the left column, so voice and text
are the same conversation. pages/Accounts.tsx animates the column width;
ChatMascotOverlay re-measures both anchors per frame so the mascot stays glued
to a destination that is still moving. Expanded/collapsed and the speak-replies
preference are persisted in mascotSlice.
Two invariants worth keeping. The mascot re-renders at ~60fps during TTS lipsync, so (a) it is rendered as a leaf with nothing beneath it, and (b) the mascot context value is deliberately non-reactive — reactive state lives in Redux or in the send-binding external store instead. A reactive context value would reconcile the whole chat tree every frame, which is the stall #5357 had to fix. And the overlay only mounts while the agent account is selected: HTML paints behind the native CEF provider webviews, so a fixed overlay left alive under WhatsApp/Slack would be an invisible canvas still burning frames.
The mascot face comes from useHumanMascot, which subscribes to chat lifecycle
events for thinking, speaking, acknowledgement, and error states, plus a
listening pose driven by MicComposer's onRecordingChange.
Sub-agent delegation is visualized by SubMascotLayer. It does not introduce a
new socket protocol. Instead, it reads the selected or active thread's
chatRuntime.toolTimelineByThread entries that ChatRuntimeProvider already
builds from subagent_spawned, subagent_completed, subagent_failed,
subagent_iteration_start, subagent_tool_call, and subagent_tool_result.
Lifecycle mapping:
| Runtime timeline state | Sub-mascot state |
|---|---|
running |
Small colored mascot in a thinking face with a short activity bubble |
success |
Same mascot resolves to a happy face and completion bubble |
error |
Same mascot resolves to a concerned face and failure bubble |
Activity bubble text is intentionally compact: current child tool call, child iteration, the delegation prompt excerpt, or final status. The thread timeline remains the authoritative detailed view; sub-mascots are only the glanceable orchestration layer around the main mascot.
The application uses HashRouter with protected and public route guards. Desktop routes live in app/src/AppRoutes.tsx; on mobile (iOS/Android) AppRoutesIOS.tsx renders a reduced Human/Chat/Settings set instead.
Current desktop routes (read AppRoutes.tsx for the authoritative table — the file is heavily commented with the rationale for each redirect):
/ → Welcome (PublicRoute; redirects to /home if logged in)
/auth → WebCallbackPage (auth callback)
/callback/:kind[/:status] → WebCallbackPage (generic OAuth/provider callbacks)
/onboarding/* → Onboarding stepper (ProtectedRoute)
/human → HumanPage (dedicated mascot stage)
/brain → Brain (memory knowledge-graph)
/flows → FlowsPage · /flows/draft → draft canvas · /flows/:id → FlowCanvasPage
/orchestration → OrchestrationPage (TinyPlace multi-agent coordination)
/workflows/run → WorkflowsRun (single-purpose Skill runner)
/connections → Skills page (connections hub)
/chat/:threadId? → Accounts (unified chat: agent + connected web apps)
/invites → Invites
/feedback → Feedback
/notifications → Notifications
/rewards → Rewards
/ptt-overlay → PttOverlayPage (push-to-talk overlay window)
/dev/agent-insights → dev-only preview
/agent-world/* → AgentWorld (tiny.place A2A social network)
* → DefaultRedirect
Back-compat redirects (all Navigate replace, query params preserved):
/home → /chat /skills → /connections
/activity → /settings/notifications /channels → /connections?tab=messaging
/intelligence→ /settings/notifications /routines → /settings/automations
/workflows → /settings/automations /webhooks → /settings/integrations#webhooks
/brain/tinyplace-orchestration → /orchestration
There is no /login route — authentication flows through the Welcome page, the /auth callback, and deep links. Desktop Settings is not an inline route: when the URL is /settings/*, AppShellDesktop keeps rendering the background location and mounts SettingsModal on top (see Settings). Note that /agents does not exist; the agent-social surface is /agent-world/*.
All three guards read useCoreState() (not Redux auth state) and render RouteLoadingScreen while bootstrapping:
ProtectedRoute(components/ProtectedRoute.tsx) —({ children, requireAuth = true, redirectTo }); without a session token, navigates toredirectTo || '/'. Onboarding gating is not done here — an effect inAppShellDesktop(App.tsx) forces non-onboarding routes back to/onboardingwhileonboarding_completedis false, and bounces off it once complete.PublicRoute(components/PublicRoute.tsx) — redirects signed-in users to/home(which forwards to/chat).DefaultRedirect(components/DefaultRedirect.tsx) — signed out →/; signed in but onboarding incomplete →/onboarding; otherwise →/chat. Waits forsnapshot.currentUserto avoid the post-login race.
A routed stepper (Onboarding.tsx mounts nested routes inside OnboardingLayout):
/onboarding/welcome → WelcomePage
/onboarding/runtime-choice → RuntimeChoicePage
├── cloud → /chat
└── custom → /onboarding/custom/inference → voice → oauth → search
→ embeddings → (activity) → vault → /chat
Each custom step offers Default (let OpenHuman manage it) vs Configure (inline controls, or a deep-link callout to Settings for domains not yet embedded). Pages live in pages/onboarding/pages/; the legacy Composio/skills/context-gathering steps (pages/onboarding/steps/) are retired from the default flow but remain on disk. Completion is tracked by the core's onboarding_completed flag, enforced by the AppShell onboarding gate. After onboarding, AppWalkthrough (Joyride) runs the post-onboarding tour.
Settings is a full /settings/* URL surface, presented on desktop as a modal overlay and on iOS as a full page. The old SettingsPanelLayout / useSettingsAnimation / ProfilePanel modal system is gone.
components/settings/settingsRouteRegistry.ts— single declarative source of truth for every settings destination (id/route slug, i18n keys, section, sidebarnavGroup,devOnly, search keywords). Navigation menus, breadcrumbs, and settings search all derive from it.components/settings/settingsRouteElements.tsx— maps registry entries to panel<Route>elements.components/settings/modal/—SettingsModal(mounted byAppShellDesktopwhenever the path is a settings path;settingsOverlay.tscomputes{ settingsOpen, baseLocation }so the page behind stays rendered),SettingsModalFrame(backdrop / Esc / focus / close),SettingsModalLayout(routed two-column layout).components/settings/layout/— two-pane chrome:SettingsLayout,SettingsSidebar(grouped bySettingsNavGroup: general, assistant, data, connections, knowledge & memory, agents & autonomy, models & inference, automation & integrations, diagnostics & logs),SettingsSubNav,SettingsIndexRedirect.components/settings/panels/— ~50 leaf panels (AccountPanel,AppearancePanel,AIPanel,AgentsPanel,AgentAccessPanel,AutonomyPanel,BillingPanel,CronJobsPanel,IntegrationsPanel,McpServerPanel,NotificationsTabbedPanel,PrivacyPanel,DeveloperOptionsPanel, …). Adding a panel = add the component + a registry entry; nav, breadcrumbs, and search pick it up automatically.components/settings/search/— settings search bar + registry-derived index.
The app uses HashRouter for desktop compatibility:
// App.tsx
import { HashRouter } from "react-router-dom";
// URLs look like: app://localhost/#/home
// Instead of: app://localhost/homeWhy HashRouter:
- Tauri deep links work with hash-based URLs
- No server configuration needed
- Works with file:// protocol
- Prevents 404 on direct URL access
Deep links are handled before routing:
// main.tsx
import("./utils/desktopDeepLinkListener").then((m) => {
m.setupDesktopDeepLinkListener().catch(console.error);
});The listener intercepts openhuman:// URLs (e.g. auth handoff), exchanges tokens through the Rust side (bypassing CORS), stores the session, and navigates to the right route. See utils/desktopDeepLinkListener.ts.
Shared UI lives in app/src/components/; feature-specific UI lives in app/src/features/<vertical>/. Highlights:
components/
├── ProtectedRoute / PublicRoute / DefaultRedirect # Route guards
├── layout/shell/ # RootShellLayout, AppSidebar, SidebarSlot (two-pane app chrome)
├── settings/ # Settings registry, modal, layout, panels, search (see above)
├── accounts/ # WebviewHost + connected-app (CEF webview) surfaces
├── BootCheckGate/, daemon/ # Boot + service gates in the provider chain
├── commands/ # CommandProvider (command palette)
├── Announcement/, upsell/, userErrors/, walkthrough/ # Shell-level overlays
├── keyring/, mcp-setup/, InitProgressScreen/ # Consent + init overlays
└── intelligence/ # Memory/vault surfaces (ObsidianVaultSection, VaultHealthChecklist, WorkflowsTab, …)
Conventions:
- Modal via portal — shell modals (Settings, link modal) render above routed content; the Settings modal uses the backgroundLocation pattern rather than unmounting the page underneath.
- Controlled modals — parents own
isOpenstate and passonClose. - i18n everywhere — all user-facing text goes through
useT()(lib/i18n/I18nContext); CI enforces locale parity. - No dynamic imports in production
app/srccode — staticimport/import typeonly.
~40 app-level hooks. Representative examples:
useUser— thin wrapper overuseCoreState(); returns{ user: snapshot.currentUser, isLoading, error, refetch }. There is no standalone user store.useBackendUrl— runtime backend URL resolution (see Runtime config precedence).useThreadQueries— chat thread fetching.useDaemonHealth/useDaemonLifecycle— core service health.useDictationHotkey/usePttHotkey— global hotkey managers.useDeveloperMode,useMediaQuery,useEscapeKey,useStickToBottom— UI utilities.- Feature hooks:
useFlowRunProgress,useWorkflowBuilderChat,useConsciousItems,useSubconscious,useIntelligenceStats,useCostDashboard, ….
Feature-local hooks live next to their feature under features/*/.
Centralized build-time environment variable access — never read import.meta.env directly elsewhere. These constants only carry the value baked into the bundle; for the runtime URL the app actually talks to, see services/backendUrl and hooks/useBackendUrl.
// Build-time fallback only (used outside Tauri).
export const BACKEND_URL = /* VITE_BACKEND_URL || default */;
// Core RPC build-time fallback.
export const CORE_RPC_URL = /* VITE_OPENHUMAN_CORE_RPC_URL || 'http://127.0.0.1:7788/rpc' */;
// Dev flags, e.g.
export const DEV_FORCE_ONBOARDING = /* dev-only VITE_DEV_FORCE_ONBOARDING */;Do not import
BACKEND_URLdirectly to make API calls. Resolve the URL at runtime so the core'sapi_url(viaopenhuman.config_resolve_api_url) takes effect:// React components import { useBackendUrl } from "../hooks/useBackendUrl"; const backendUrl = useBackendUrl(); // Non-React code import { getBackendUrl } from "../services/backendUrl"; const backendUrl = await getBackendUrl();
Handles incoming openhuman:// deep links via the Tauri deep-link plugin: parses the URL, performs the Rust-side token exchange (bypasses CORS), stores the session, and navigates. Set up lazily from main.tsx so the Tauri IPC bridge is ready first.
Cross-platform URL opening — tries the Tauri opener plugin, falls back to window.open. Always use this instead of raw window.open so links open in the system browser.
Typed wrappers around invoke(...), including the bridge-gap-aware isTauri() guard (checks __TAURI_INTERNALS__.invoke is actually wired, not merely that the app runs under Tauri). Use it — never check window.__TAURI__ directly.
Node.js globals (Buffer, process, util) polyfilled for the browser. Several browser-side modules use Node APIs — e.g. voice/PTT audio encoding (features/voice/pttAudio.ts, wavEncoder.ts), mascot Rive asset caching (features/human/Mascot/), the Meet mascot frame producer, and tool-timeline formatting.
Two layers provide them:
vite-plugin-node-polyfillsinapp/vite.config.ts(buffer,process,util,os,crypto,stream, plusBuffer/process/globalglobals).polyfills.ts, imported first inmain.tsx, which synchronously assignsBuffer/process/utilontoglobalThis/window/global/selfbefore any dependent module executes.
useEffect(() => {
on("event", handler);
return () => off("event", handler);
}, [on, off, handler]);Always include dependencies and always clean up subscriptions.
Wrap Tauri/utility calls in try-catch with a fallback:
try {
await openUrl(url);
} catch (error) {
console.error("Failed to open URL:", error);
}Use TypeScript generics for API and RPC calls:
const user = await apiClient.get<User>("/users/me");
const result = await callCoreRpc<Snapshot>({
method: "openhuman.app_state_snapshot",
});