1 / 5

Runtime architecture #

biRT is a complete computing platform written from scratch in C. It runs directly on hardware — no operating system, no kernel, no filesystem, no external libraries. One binary. From power-on to thinking in under a millisecond.

Because the runtime is pure machine code and small enough to fit beside the silicon — not on top of a half-gigabyte of operating-system overhead — the hardware does what it was built for. The OS isn't in the way.

biRT lands on any hardware that doesn't lock the boot chain after BIOS. Production today:

2 / 5

Crypto and key model #

Cryptographic keys are generated on the device and never transmitted off it. Local storage is sealed with passphrase-derived keys. Brute-force lockout is built into the vault.

Modern primitives, implemented in-house. No third-party crypto libraries on the trust path. Hardware acceleration where the silicon supports it; software fallback when it doesn't. Specifics available under NDA — or for partners with the key, in the technical detail page.

This is what we have shipped, in the codebase, today. The conversational privacy layer for AI interactions — the part that mediates between operators and external models — is being designed now. We will describe it here when we can point at running code.

3 / 5

Mesh — NOTW #

Devices find each other and talk securely without cloud infrastructure. Store-and-forward across multiple physical layers. The system keeps working when the network doesn't.

Offline-first stance: the mesh assumes the network may not be there. Nodes carry their own truth and reconcile when they reach each other.

4 / 5

Intelligent Data Set (IDS) #

A novel persistence layer for sovereign, encrypted, indexable knowledge. Knowledge and code share the same representation, which means the system reasons about its own behavior the same way it reasons about anything else.

Honest note

The architecture is shipped. Public benchmarks pending. We will not claim "fastest on Earth" until the numbers are reproducible by anyone who wants to verify them. Partners with the key can read the implementation details in the technical detail page.

5 / 5

Manifest pipeline #

One linear flow from operator's voice to runtime tick:

Conversation NOUS Signed intent Mesh broadcast Applied at next tick

The runtime never sees the conversation; the conversation never has to know about the runtime. Two worlds joined: machine-level code that runs as fast as the silicon allows, and human thought translated into runtime instructions.

Current state of each link in the chain:

See the capability ledger for the full status surface.