A collection of components and building blocks enabling Generative User Interfaces.
Available for node.js only. Python coming soon.
neurons.me is a sovereign semantic compute stack. It lets any person or machine own a cryptographic identity, bind it to a namespace, run it as an HTTP daemon, and render it as a user interface — without depending on any central service.
| Layer | Package | Role |
|---|---|---|
| Kernel | this.me |
Schema-free reactive memory. Derives identity from a seed. |
| Identity | cleaker |
Namespace resolver. Projects .me into a surface. |
| Runtime | monad |
HTTP daemon. Exposes a namespace over HTTP. Runs the mesh. |
| Gateway | netget |
Routes incoming requests to the correct monad. |
| Interface | this.gui |
React component library. Renders the semantic surface. |
this.gui is the interface layer of the neurons.me stack. It is a React component library that renders semantic surfaces — it reads from and writes to a live .me kernel via a monad HTTP connection, and presents the result as composable, declarative UI.
Three entry points:
import { GUI } from 'this.gui' // UI primitives and high-level surface
import { useMe, useMeValue } from 'this.gui/react' // .me React bridge
import { mount, startApp } from 'this.gui/runtime' // runtime lifecycle and bootDepends on: this.me (reads/writes kernel paths), cleaker (identity sessions), monad (HTTP surface discovery and namespace resolution).
Consumed by: end users — this.gui is what people see and interact with.
