NR
NROS · KERNEL V2
build · federation
// next.realm.ops // tag NROS_KERNEL_V2_FEDERATION

The federation layer for sovereign operator realms.

NROS is not a product. It's the coordination spine that connects independently deployable operator-facing apps — realms — into one ecosystem with shared identity, shared progression, and a unified event fabric.

// status V2 federation API live · operator activation comes online once Supabase wires through

// the five-layer model

G // 01 · cognition

GENUBRA

Memory, orchestration, operator graph. Strategic intelligence — not a chatbot.

N // 02 · spine

NROS

Federation · identity · synchronization. The coordination layer itself.

O // 03 · forge

OBLISK

Workflow / deployment / manifestation engine. Decomposes objectives into executable structure.

L // 04 · ledger

LEGVCY

Operator training & progression. XP · ranks · achievements. Append-only history.

R // 05 · sovereign

REALMS

Independently deployable operator worlds. Stack-agnostic. Optionally self-hosted.

// what the federation provides

Universal operator identity — one callsign across every realm
Shared XP & rank — XP awarded by any realm aggregates universally
Transmissions feed — federated event stream operators see in their dashboard
Realm registry — discovery + multi-realm membership graph
API key issuance — sha256-hashed bearer tokens, scope-tagged
Cross-realm telemetry — usage signals visible to GENUBRA cognition

// realm integration · @nros/sdk

Any realm — web, native, bot, CLI, daemon — speaks the federation in three lines:

// inside any realm — Next.js, Worker, Discord bot, anything that can fetch()
import { NrosClient } from "@nros/sdk";

const nros = new NrosClient({
  baseUrl: "https://nextrealmos.pages.dev",
  apiKey:  process.env.NROS_API_KEY!,        // shown ONCE at realm registration
});

await nros.xp.award({ callsign: "SENTINEL.04", delta: 200, reason: "Closed delivery #2188" });
await nros.transmissions.push({ kind: "MISSION_COMPLETED", title: "Run #2188 closed" });
// schema

17

tables · 4 views

// federation api

5

edge endpoints

// sdk

@nros/sdk

zero-dep · edge-safe

// state

V2

federation pivot live