Squide Framework
Squide is a React modular application shell. Use only documented APIs.
Core Concepts
- Runtime: The
FireflyRuntime instance is the backbone of a Squide application. Never instantiate directly — use initializeFirefly(), which wires up plugins, logging, and the module lifecycle.
- Modular Registration: Modules register routes, navigation items, and MSW handlers via a registration function, assembled by the host at bootstrapping.
- Public vs Protected Routes: Routes default to
protected (rendered under ProtectedRoutes). Use registerPublicRoute() for public routes. Protected routes fetch both public and protected global data.
- Deferred Registrations: Navigation items dependent on remote data or feature flags use two-phase registration — return a function from the registration to defer items to a second phase.
Key Patterns
Host Application Setup
// host/src/index.tsx
import { createRoot } from "react-dom/client";
import { FireflyProvider, initializeFirefly } from "@squide/firefly";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { App } from "./App.tsx";
import { registerHost } from "./register.tsx";
const runtime = initializeFirefly({
localModules: [registerHost]
});
const queryClient = new QueryClient();
const root = createRoot(document.getElementById("root")!);
root.render(
<FireflyProvider runtime={runtime}>
<QueryClientProvider client={queryClient}>
<App />
</QueryClientProvider>
</FireflyProvider>
);
// host/src/App.tsx
import { AppRouter, useIsBootstrapping } from "@squide/firefly";
import { createBrowserRouter, Outlet } from "react-router";
import { RouterProvider } from "react-router/dom";
function BootstrappingRoute() {
if (useIsBootstrapping()) {
return <div>Loading...</div>;
}
return <Outlet />;
}
export function App() {
return (
<AppRouter>
{({ rootRoute, registeredRoutes, routerProps, routerProviderProps }) => (
<RouterProvider
router={createBrowserRouter([{
element: rootRoute,
children: [{
element: <BootstrappingRoute />,
children: registeredRoutes
}]
}], routerProps)}
{...routerProviderProps}
/>
)}
</AppRouter>
);
}
// host/src/register.tsx
import { PublicRoutes, ProtectedRoutes, type ModuleRegisterFunction, type FireflyRuntime } from "@squide/firefly";
import { RootLayout } from "./RootLayout.tsx";
export const registerHost: ModuleRegisterFunction<FireflyRuntime> = runtime => {
runtime.registerRoute({
element: <RootLayout />,
children: [PublicRoutes, ProtectedRoutes]
}, { hoist: true });
// HomePage and NotFoundPage are local page components
runtime.registerRoute({ index: true, element: <HomePage /> });
runtime.registerPublicRoute({ path: "*", element: <NotFoundPage /> });
};
Navigation Rendering
Important: RenderItemFunction signature is (item, key, index, level) => ReactNode and RenderSectionFunction is (elements, key, index, level) => ReactNode. These signatures are fixed and do not accept custom context parameters, but there could be fewer arguments. Use closures to access external values.
Important: spread additionalProps whole, never key by key. A value the renderer must read instead of forward belongs in $context, surfaced as context. Never destructure a key out of additionalProps to keep it off the element — that is what $context is for. This $context is per-item data for the layout: it is not the module registration context and not React context. It was named $meta in @squide/firefly 18.2.0-19.0.0 (@squide/react-router 9.1.0-10.0.0).
import { Link, Outlet } from "react-router";
import {
useNavigationItems, useRenderedNavigationItems, isNavigationLink,
type RenderItemFunction, type RenderSectionFunction
} from "@squide/firefly";
// Signature: (item, key, index, level) => ReactNode
const renderItem: RenderItemFunction = (item, key, index, level) => {
if (!isNavigationLink(item)) return null;
const { label, linkProps, additionalProps } = item;
return (
<li key={key}>
<Link {...linkProps} {...additionalProps}>{label}</Link>
</li>
);
};
// Signature: (elements, key, index, level) => ReactNode
const renderSection: RenderSectionFunction = (elements, key, index, level) => (
<ul key={key}>{elements}</ul>
);
export function RootLayout() {
const navigationItems = useNavigationItems();
const navigationElements = useRenderedNavigationItems(navigationItems, renderItem, renderSection);
return (
<>
<nav>{navigationElements}</nav>
<Outlet />
</>
);
}
Global Data Fetching
// Protected data
import { useProtectedDataQueries, useIsBootstrapping, AppRouter } from "@squide/firefly";
// ApiError and isApiError are app-specific; define them to match your API's error shape
function BootstrappingRoute() {
const [session] = useProtectedDataQueries([{
queryKey: ["/api/session"],
queryFn: async () => {
const response = await fetch("/api/session");
if (!response.ok) throw new ApiError(response.status);
return response.json();
}
}], error => isApiError(error) && error.status === 401);
if (useIsBootstrapping()) return <div>Loading...</div>;
return (
<SessionContext.Provider value={session}>
<Outlet />
</SessionContext.Provider>
);
}
// In App component, set waitForProtectedData
<AppRouter waitForProtectedData>...</AppRouter>
// Public data
const [data] = usePublicDataQueries([{ queryKey: [...], queryFn: ... }]);
<AppRouter waitForPublicData>...</AppRouter>
Deferred Navigation Items
export const register: ModuleRegisterFunction<FireflyRuntime, unknown, DeferredRegistrationData> = runtime => {
// Always register routes
runtime.registerRoute({ path: "/feature", element: <FeaturePage /> });
// Return function for deferred navigation items
return (deferredRuntime, { userData }) => {
if (userData.isAdmin && deferredRuntime.getFeatureFlag("enable-feature")) {
deferredRuntime.registerNavigationItem({
$id: "feature",
$label: "Feature",
to: "/feature"
});
}
};
};
// Execute deferred registrations in BootstrappingRoute.
// Wrap in useMemo — without it, a new object reference each render re-triggers all deferred registrations.
const data = useMemo(() => ({ userData }), [userData]);
useDeferredRegistrations(data);
Important: a deferred registration function runs again on every update (feature flag change or new data). Squide discards everything the previous run registered before replaying, so each run must register the full set of items it wants rendered — never the difference since the last run. Squide only discards what it owns: a plugin exposing its own registry to modules must clear it via the optional Plugin.onDeferredRegistrationScopeStarted hook, and a registry that isn't owned by a plugin via runtime.registerDeferredRegistrationScopeStartedListener — the same hook, same options, same guarantees (see references/runtime-api.md).
See also: For error boundaries, authentication, testing patterns, and advanced navigation (multi-level, modular tabs, dynamic segments, active state), see references/patterns.md. For MSW setup, LaunchDarkly, Honeycomb, i18next, and Storybook integrations, see references/integrations.md. For plugin authoring and the full runtime API, see references/runtime-api.md.
Reference Guide
For detailed API documentation beyond the patterns above, consult the reference files:
references/getting-started.md — What Squide is and the problems it solves, modular design principles, scaffolding a host application and a local module from scratch (packages, files, Rsbuild config, template)
references/runtime-api.md — initializeFirefly options, route registration options (hoist, parentPath, parentId), route properties, navigation item properties, navigation registration options (menuId, sectionId), deferred registration scope started listeners, and request handler registration
references/hooks-api.md — All Squide hooks: data fetching (usePublicDataQueries, useProtectedDataQueries), navigation (including the render props types and canRender()), event bus, environment variables, feature flags, logging, routing, and i18next hooks
references/components.md — AppRouter props (including strictMode and registration validation), FireflyProvider, helper functions (isNavigationLink, resolveRouteSegments, mergeDeferredRegistrations)
references/patterns.md — Local module setup, deferred registration update runs and pending sections, error boundaries, authentication, modular tabs, MSW request handlers, testing (including createDeferredRegistrationsRunner), and other common patterns
references/integrations.md — LaunchDarkly (plugin, utilities, testing clients), Honeycomb, i18next, and Storybook integration details
Common Pitfalls
Skill maintainers: Before updating this skill, read ODR-0008. The body must stay under ~250 lines; new API content goes in the appropriate references/ file.
When working with Squide APIs, watch for these common mistakes:
useRenderedNavigationItems function signatures: Must always be (item, key, index, level) and (elements, key, index, level). These do NOT accept custom context parameters. If external values are needed (route params, location, etc.), use closures or React hooks - never suggest adding parameters to these functions.
Active state styling: Use React Router's NavLink and its isActive argument provided to the className/style render functions (for example, className={({ isActive }) => ... }). Do not suggest passing location/pathname as a context parameter.
Dynamic route segments: Use the resolveRouteSegments helper with closures to capture values like userId. Example pattern: create a higher-order function that returns a RenderItemFunction.
Deferred registration runtime parameter: The deferred registration callback receives deferredRuntime as its first argument — this is NOT the same runtime from the outer registration function. Always use deferredRuntime inside the deferred callback for registerNavigationItem, getFeatureFlag, etc.
1---2name: workleap-squide3description: Squide (@squide/firefly) — Workleap's React modular application shell. Use when: (1) Working with FireflyRuntime, initializeFirefly, AppRouter, or FireflyProvider (2) Creating or modifying Squide host applications or modules (3) Registering routes, navigation items, or MSW request handlers (4) Squide integrations with TanStack Query, i18next, LaunchDarkly, Honeycomb, MSW, or Storybook (5) Deferred registrations or conditional navigation items (6) Global data fetching: usePublicDataQueries, useProtectedDataQueries (7) Squide hooks for event bus, environment variables, feature flags, logging, or bootstrapping state (8) Error boundaries or modular architecture in Squide applications4---56# Squide Framework78Squide is a React modular application shell. Use only documented APIs.910## Core Concepts1112- **Runtime**: The `FireflyRuntime` instance is the backbone of a Squide application. Never instantiate directly — use `initializeFirefly()`, which wires up plugins, logging, and the module lifecycle.13- **Modular Registration**: Modules register routes, navigation items, and MSW handlers via a registration function, assembled by the host at bootstrapping.14- **Public vs Protected Routes**: Routes default to `protected` (rendered under `ProtectedRoutes`). Use `registerPublicRoute()` for public routes. Protected routes fetch both public and protected global data.15- **Deferred Registrations**: Navigation items dependent on remote data or feature flags use two-phase registration — return a function from the registration to defer items to a second phase.1617## Key Patterns1819### Host Application Setup2021```tsx22// host/src/index.tsx23import { createRoot } from "react-dom/client";24import { FireflyProvider, initializeFirefly } from "@squide/firefly";25import { QueryClient, QueryClientProvider } from "@tanstack/react-query";26import { App } from "./App.tsx";27import { registerHost } from "./register.tsx";2829const runtime = initializeFirefly({30 localModules: [registerHost]31});3233const queryClient = new QueryClient();34const root = createRoot(document.getElementById("root")!);3536root.render(37 <FireflyProvider runtime={runtime}>38 <QueryClientProvider client={queryClient}>39 <App />40 </QueryClientProvider>41 </FireflyProvider>42);43```4445```tsx46// host/src/App.tsx47import { AppRouter, useIsBootstrapping } from "@squide/firefly";48import { createBrowserRouter, Outlet } from "react-router";49import { RouterProvider } from "react-router/dom";5051function BootstrappingRoute() {52 if (useIsBootstrapping()) {53 return <div>Loading...</div>;54 }55 return <Outlet />;56}5758export function App() {59 return (60 <AppRouter>61 {({ rootRoute, registeredRoutes, routerProps, routerProviderProps }) => (62 <RouterProvider63 router={createBrowserRouter([{64 element: rootRoute,65 children: [{66 element: <BootstrappingRoute />,67 children: registeredRoutes68 }]69 }], routerProps)}70 {...routerProviderProps}71 />72 )}73 </AppRouter>74 );75}76```7778```tsx79// host/src/register.tsx80import { PublicRoutes, ProtectedRoutes, type ModuleRegisterFunction, type FireflyRuntime } from "@squide/firefly";81import { RootLayout } from "./RootLayout.tsx";8283export const registerHost: ModuleRegisterFunction<FireflyRuntime> = runtime => {84 runtime.registerRoute({85 element: <RootLayout />,86 children: [PublicRoutes, ProtectedRoutes]87 }, { hoist: true });8889 // HomePage and NotFoundPage are local page components90 runtime.registerRoute({ index: true, element: <HomePage /> });91 runtime.registerPublicRoute({ path: "*", element: <NotFoundPage /> });92};93```9495### Navigation Rendering9697**Important:** `RenderItemFunction` signature is `(item, key, index, level) => ReactNode` and `RenderSectionFunction` is `(elements, key, index, level) => ReactNode`. These signatures are fixed and do not accept custom context parameters, but there could be fewer arguments. Use closures to access external values.9899**Important:** spread `additionalProps` whole, never key by key. A value the renderer must read instead of forward belongs in `$context`, surfaced as `context`. Never destructure a key out of `additionalProps` to keep it off the element — that is what `$context` is for. This `$context` is per-item data for the layout: it is not the module registration context and not React context. It was named `$meta` in `@squide/firefly` 18.2.0-19.0.0 (`@squide/react-router` 9.1.0-10.0.0).100101```tsx102import { Link, Outlet } from "react-router";103import {104 useNavigationItems, useRenderedNavigationItems, isNavigationLink,105 type RenderItemFunction, type RenderSectionFunction106} from "@squide/firefly";107108// Signature: (item, key, index, level) => ReactNode109const renderItem: RenderItemFunction = (item, key, index, level) => {110 if (!isNavigationLink(item)) return null;111 const { label, linkProps, additionalProps } = item;112 return (113 <li key={key}>114 <Link {...linkProps} {...additionalProps}>{label}</Link>115 </li>116 );117};118119// Signature: (elements, key, index, level) => ReactNode120const renderSection: RenderSectionFunction = (elements, key, index, level) => (121 <ul key={key}>{elements}</ul>122);123124export function RootLayout() {125 const navigationItems = useNavigationItems();126 const navigationElements = useRenderedNavigationItems(navigationItems, renderItem, renderSection);127 return (128 <>129 <nav>{navigationElements}</nav>130 <Outlet />131 </>132 );133}134```135136### Global Data Fetching137138```tsx139// Protected data140import { useProtectedDataQueries, useIsBootstrapping, AppRouter } from "@squide/firefly";141142// ApiError and isApiError are app-specific; define them to match your API's error shape143function BootstrappingRoute() {144 const [session] = useProtectedDataQueries([{145 queryKey: ["/api/session"],146 queryFn: async () => {147 const response = await fetch("/api/session");148 if (!response.ok) throw new ApiError(response.status);149 return response.json();150 }151 }], error => isApiError(error) && error.status === 401);152153 if (useIsBootstrapping()) return <div>Loading...</div>;154155 return (156 <SessionContext.Provider value={session}>157 <Outlet />158 </SessionContext.Provider>159 );160}161162// In App component, set waitForProtectedData163<AppRouter waitForProtectedData>...</AppRouter>164```165166```tsx167// Public data168const [data] = usePublicDataQueries([{ queryKey: [...], queryFn: ... }]);169<AppRouter waitForPublicData>...</AppRouter>170```171172### Deferred Navigation Items173174```tsx175export const register: ModuleRegisterFunction<FireflyRuntime, unknown, DeferredRegistrationData> = runtime => {176 // Always register routes177 runtime.registerRoute({ path: "/feature", element: <FeaturePage /> });178179 // Return function for deferred navigation items180 return (deferredRuntime, { userData }) => {181 if (userData.isAdmin && deferredRuntime.getFeatureFlag("enable-feature")) {182 deferredRuntime.registerNavigationItem({183 $id: "feature",184 $label: "Feature",185 to: "/feature"186 });187 }188 };189};190```191192```tsx193// Execute deferred registrations in BootstrappingRoute.194// Wrap in useMemo — without it, a new object reference each render re-triggers all deferred registrations.195const data = useMemo(() => ({ userData }), [userData]);196useDeferredRegistrations(data);197```198199**Important:** a deferred registration function runs again on every update (feature flag change or new data). Squide discards everything the previous run registered before replaying, so each run must register the **full set** of items it wants rendered — never the difference since the last run. Squide only discards what it owns: a plugin exposing its own registry to modules must clear it via the optional `Plugin.onDeferredRegistrationScopeStarted` hook, and a registry that isn't owned by a plugin via `runtime.registerDeferredRegistrationScopeStartedListener` — the same hook, same options, same guarantees (see `references/runtime-api.md`).200201**See also:** For error boundaries, authentication, testing patterns, and advanced navigation (multi-level, modular tabs, dynamic segments, active state), see `references/patterns.md`. For MSW setup, LaunchDarkly, Honeycomb, i18next, and Storybook integrations, see `references/integrations.md`. For plugin authoring and the full runtime API, see `references/runtime-api.md`.202203## Reference Guide204205For detailed API documentation beyond the patterns above, consult the reference files:206207- **`references/getting-started.md`** — What Squide is and the problems it solves, modular design principles, scaffolding a host application and a local module from scratch (packages, files, Rsbuild config, template)208- **`references/runtime-api.md`** — `initializeFirefly` options, route registration options (`hoist`, `parentPath`, `parentId`), route properties, navigation item properties, navigation registration options (`menuId`, `sectionId`), deferred registration scope started listeners, and request handler registration209- **`references/hooks-api.md`** — All Squide hooks: data fetching (`usePublicDataQueries`, `useProtectedDataQueries`), navigation (including the render props types and `canRender()`), event bus, environment variables, feature flags, logging, routing, and i18next hooks210- **`references/components.md`** — `AppRouter` props (including `strictMode` and registration validation), `FireflyProvider`, helper functions (`isNavigationLink`, `resolveRouteSegments`, `mergeDeferredRegistrations`)211- **`references/patterns.md`** — Local module setup, deferred registration update runs and pending sections, error boundaries, authentication, modular tabs, MSW request handlers, testing (including `createDeferredRegistrationsRunner`), and other common patterns212- **`references/integrations.md`** — LaunchDarkly (plugin, utilities, testing clients), Honeycomb, i18next, and Storybook integration details213214## Common Pitfalls215216> **Skill maintainers:** Before updating this skill, read [ODR-0008](../../agent-docs/odr/0008-skill-body-reference-split.md). The body must stay under ~250 lines; new API content goes in the appropriate `references/` file.217218When working with Squide APIs, watch for these common mistakes:2192201. **`useRenderedNavigationItems` function signatures**: Must always be `(item, key, index, level)` and `(elements, key, index, level)`. These do NOT accept custom context parameters. If external values are needed (route params, location, etc.), use closures or React hooks - never suggest adding parameters to these functions.2212222. **Active state styling**: Use React Router's `NavLink` and its `isActive` argument provided to the `className`/`style` render functions (for example, `className={({ isActive }) => ... }`). Do not suggest passing location/pathname as a context parameter.2232243. **Dynamic route segments**: Use the `resolveRouteSegments` helper with closures to capture values like `userId`. Example pattern: create a higher-order function that returns a `RenderItemFunction`.2252264. **Deferred registration runtime parameter**: The deferred registration callback receives `deferredRuntime` as its first argument — this is NOT the same `runtime` from the outer registration function. Always use `deferredRuntime` inside the deferred callback for `registerNavigationItem`, `getFeatureFlag`, etc.