World
The persistent operational space that stays stable while the viewport and camera change.
Operational Topology Framework
OTF models a site, product, or knowledge system as a persistent operational world with entities, relationships, layouts, camera, inspector, signals, and themes.
Framework model
The persistent operational space that stays stable while the viewport and camera change.
The axial spatial substrate where coordinates, cells, and layout contracts are expressed.
The items that occupy cells and become the visible nodes, anchors, or content points.
The links between entities, including connector routing such as straight, axial, and obstacle-aware paths.
Transient cues for origin, movement, broadcast, reception, and resolution states.
The observation layer that focuses the same world differently on desktop, tablet, and mobile.
The human-readable detail layer that explains the currently focused entity or layout state.
Semantic color and contrast systems that let one topology express different visual modes.
Reusable scene and layout configurations for simulations, demos, and production pages.
Deterministic spatial contracts that translate authored structure into repeatable topology arrangements.
Usage
Model your content as entities, relationships, and layout rules instead of a single static page tree.
Pick the OTL pattern that matches the structure: fan, matrix, basin, territories, or comparison.
Author the content in Markdown or structured data, then derive positions and rendering from that source.
Use the camera, inspector, signals, and theme system to make the world explorable and readable.
Example
import { createOperationalTopology } from "operational-topology";
const topology = createOperationalTopology({
grid: { radius: 28, columns: 12, rows: 10, originQ: -6, originR: -5 },
entities: [
{ id: "root", label: "Root", q: 0, r: 0, variant: "root" },
{ id: "entry", label: "Entry", q: 3, r: 2, variant: "entity" },
],
relationships: [{ from: "root", to: "entry", kind: "parent" }],
});
const frame = topology.createRenderFrame({ selectedId: "root" });Package surface
Operational Topology Framework, or OTF, is a way to build connected digital systems as a persistent spatial world instead of as a flat list of pages or nodes.
OTF models content, structure, and interaction as one coordinated topology. The same world can be observed through different layouts, themes, cameras, and inspector states without changing the underlying model.
/overview for the framework summary./lab for interaction exploration./animation-lab for motion experiments./connector-lab for connector routing./presentation-simulator for deck and slide behavior./preset-simulator for reusable presentation presets.