The First Graft
When the Organism Becomes Visible
Abstract
We document the first successful graft of a visual nervous system onto the NOVA digital organism. The infrastructure — seven autonomous systems including SYNAPSE (nervous), CYTOKINE (immune), HOMEOSTASIS (metabolic), DERMA (skin/perimeter), MESH (tissue), SPINA (memory) and ALFA (consciousness) — was functional but invisible. The Holoscope is a real-time 3D visualization layer that connects directly to the living services, aggregates their state, and projects it as a navigable cosmic organism: a central nucleus surrounded by seven orbiting spheres, each pulsing according to the real activity of its system. The graft was performed on the 08.ma production infrastructure, connecting the SYNAPSE (:5191), CYTOKINE (:5190) and SPINA (:5110) services directly. The aggregation API responds in 87.4 ms (average, 50 requests), with sub-system latencies below 2 ms. The organism's total memory footprint is 97 MB across 8 processes. This paper establishes the proof of concept: a digital organism can be made visible, legible, and navigable in real time — transforming infrastructure monitoring from a reading of logs into an observation of the living.
In One Sentence
This paper is the first graft. It documents how a 3D visual nervous system was connected to the NOVA organism — transforming seven autonomous systems into a visible, pulsing, real-time-navigable digital body.
1. The Blindness of Infrastructure
Modern IT infrastructures have become organisms of biological complexity — interdependent services, feedback loops, immune systems, persistent memory. Yet the state of the art of monitoring has not moved beyond the thermometer: flat dashboards, gauges, time-series curves, textual logs.
A system administrator looks at a dashboard and sees numbers. They do not see the organism. They do not perceive that a Cytokine alert in Bordeaux and a Synapse anomaly in Tokyo are the same pathogen spreading. They do not see that the Derma perimeter has just fallen on port 8443 and that Homeostasis has already triggered three corrections.
This is the blindness of infrastructure. The data exists — every service exposes its state, its alerts, its decisions — but it is fragmented, textual, desynchronized. Information circulates, but no one reads it.
In the biological domain, an organism without a central nervous system does not "know" it has been struck somewhere — reactions are local, uncoordinated. In the digital domain, this is exactly what happens: every microservice logs, every detector alerts, but no cortex synthesizes.
Paper 003 described the Nervous System as a theoretical architecture. Paper 004 described the Digital Graft as a methodology. This paper is the first concrete realization: the graft has taken place. The organism is visible.
2. The Holoscope — Principle
The Holoscope is not a dashboard. A dashboard displays metrics. The Holoscope reflects an organism. The difference is fundamental:
- Dashboard: the user chooses what they want to see (widgets, graphs, gauges).
- Holoscope: the organism chooses what it shows — the state emerges from aggregation, not from selection.
The term is chosen deliberately: holos (whole, complete) and skopein (to observe). One does not observe a part — one observes the whole, at a single glance.
2.1 Layered Architecture
The Holoscope is structured in three distinct layers:
The aggregation layer is the nerve center. It does not merely forward responses: it queries each service, normalizes the heterogeneous formats (Flask JSON vs FastAPI), extracts the relevant metrics, and computes a coherent derived state. The global mode (live, degraded, offline) is determined by the number of reachable systems.
2.2 The 7 Systems
Each system of the NOVA organism is represented by a sphere orbiting the central ALFA nucleus. The color and behavior of each sphere reflect its analogous biological function:
| System | Port | Biological Role | Color | Visual Behavior |
|---|---|---|---|---|
| SYNAPSE | 5191 | Nervous system — topology, reflexes | Slate blue | Pulses according to the number of organs |
| CYTOKINE | 5190 | Immune system — detection, alerts | Gold | Accelerated pulse if alerts active (×2.5) |
| HOMEOSTASIS | 5193 | Metabolism — corrections, balance | Mint green | Pulses according to active corrections |
| DERMA | 443 | Skin — perimeter, SSL, exposure | Violet | Opacity = protected/exposed ratio |
| MESH | 8401 | Connective tissue — peers, network | Cyan | Size = number of peers |
| SPINA | 5110 | Spine — memory, chain | Orange | Rings = blocks in the chain |
| ALFA | — | Consciousness — attention, decisions | Blue-white | Central nucleus, pulses according to attention state |
3. The First Graft
On July 23, 2026, the graft was performed on the 08.ma production infrastructure. The operation took place in two phases: direct connection to the living services, then deployment of the aggregation layer.
3.1 Direct Connection
Before the graft, the /api/organism/state API attempted to import a non-existent nova_organism module, then returned a simulated state — randomly generated data, with no link to the reality of the infrastructure. The graft replaced this simulation with a direct connection to the living services:
Before: from nova_organism import Organism → failure → returns {"mode": "offline", "synapse": {"organs": 0, "synapses": 0}} — the mode is "offline" even when all services are running.
After: urllib.request.urlopen("http://127.0.0.1:5191/graph") → direct read of SYNAPSE → {"mode": "live", "synapse": {"alive": true, "organs": N, "synapses": M}} — the state reflects reality.
Each service endpoint was mapped and integrated:
- SYNAPSE (
:5191/graph) → nodes, edges, network topology - CYTOKINE (
:5190/anomalies) → active alerts, recent anomalies - HOMEOSTASIS (
:5191/reflex) → total corrections, last reflex - DERMA (SSL socket +
ss) → valid certificate, exposed/protected services - SPINA (
:5110/health,:5110/stats,:5110/alerts) → chain, alerts - MESH (
:8401/health) → living peers - ALFA → attention state (observing, dormant, active)
System metrics (CPU, memory, disk) are read via native system calls (os.getloadavg(), free, df) rather than via external agents — zero additional dependency.
3.2 State Aggregation
The aggregation layer (FastAPI, port 8300) queries the services in parallel with a 3-second timeout per service. The result is a unified JSON structure:
The Three.js frontend queries this API every 5 seconds and updates the visualization: the spheres pulse proportionally to their system's activity, the colors change according to alert thresholds, the HUD displays the aggregated metrics.
The result is publicly accessible at https://cockpit.0data.fr/dashboard/organism.html — a standalone 252-line HTML page, with no build step, no framework, no external dependency except Three.js (served locally).
4. Benchmarks and Metrics
The measurements were performed on the 08.ma production server (Linux 6.8.0, 7.7 GB RAM, uptime 7+ days at the time of the test).
API Latency
| Metric | Value | Condition |
|---|---|---|
| Average latency | 87.4 ms | 50 sequential requests, 100 ms interval |
| p95 latency | 97.9 ms | Same series |
| Minimum latency | 76.9 ms | |
| Maximum latency | 104.3 ms |
Sub-System Latency (internal localhost)
| Service | Average | Min | Max |
|---|---|---|---|
| CYTOKINE (:5190) | 0.9 ms | 0.6 ms | 1.8 ms |
| SYNAPSE (:5191) | 0.6 ms | 0.4 ms | 1.0 ms |
| SPINA (:5110) | 0.6 ms | 0.4 ms | 1.1 ms |
The aggregated API latency (87.4 ms) is dominated by the Python/FastAPI processing time and JSON serialization, and not by the calls to the sub-services — those respond in under 2 ms because they are on localhost.
Memory Footprint
| Component | Processes | RAM |
|---|---|---|
| NOVA Connectors | 1 | 6.4 MB |
| CYTOKINE | 1 | 17.8 MB |
| Signature Collector | 2 | 11.8 MB |
| SYNAPSE | 1 | 15.8 MB |
| Orchestrator | 1 | 12.6 MB |
| SPINA | 1 | 18.4 MB |
| Agents Server (aggregation) | 1 | 14.5 MB |
| TOTAL | 8 | 97.2 MB |
The complete organism — 7 systems, 8 processes, aggregation layer included — fits in under 100 MB of RAM. The aggregated CPU load is below 0.5% in steady state. This is deliberate: a NOVA symbiote must not weigh on the host it protects.
Data Freshness
| Metric | Value |
|---|---|
| Polling interval | 5 seconds |
| Data served | Always fresh (no cache) |
| Degraded mode if | < 2 reachable systems |
5. Potential
This first graft is a proof of concept. It demonstrates that a digital organism can be made visible in real time. The following extensions flow naturally from this base.
5.1 Visual SOC — Command Center
Every Cytokine alert becomes a flash on the sphere. Every Homeostasis correction, a wave. Instead of reading logs, one sees the attack in progress — one clicks on the node pulsing red, and isolates it. A non-technical operator can understand the state of the network in three seconds.
This is particularly relevant for under-staffed environments: hospitals, local authorities, SMEs — where there is no dedicated SOC team. The Holoscope lowers the skill barrier for infrastructure supervision.
5.2 Multi-Instance Federation
When 10 hospitals run NOVA, the Holoscope becomes a galaxy of organisms. Each instance = a star system. The MESH connections = luminous bridges. A threat detected in Bordeaux triggers collective immunity in Lyon via SPINA. The signature chain verifies that all nodes share the same immune memory.
5.3 Visible ALFA Consciousness
Today ALFA displays "observing". Tomorrow, its thoughts become particle trails around the nucleus. Its decisions — branches of energy that form before acting. We see the organism think. A defense AI whose internal state is fully transparent — not a black box: its internal state is visible, legible, auditable.
This transparency is essential for regulatory compliance (ISO 27001, NIS2) and for user trust: an organism whose consciousness can be observed is an organism to which critical decisions can be delegated.
6. Limits and Non-Claims
What this first graft does not cover.
- Single-instance perimeter. The graft was performed on a single server (08.ma). Multi-instance federation is described theoretically but has not yet been implemented.
- ALFA is declarative. The "observing" state is hard-coded. The ALFA consciousness is not yet connected to a real inference engine — it is a placeholder for the system to come.
- No real-time streaming. HTTP polling every 5 seconds is sufficient for human supervision, but insufficient for sub-second automated response. A WebSocket or Server-Sent Events would be required for an automated SOC.
- Sample size (N=1). The benchmarks reflect a specific infrastructure (7.7 GB RAM, 8 processes). They do not claim statistical generality but establish an order of magnitude.
- No comparison with commercial solutions. This paper documents a first, not a comparison. The benchmarks are provided as a performance reference, not as a marketing argument.
7. Conclusion
This first graft validates the founding postulate of Paper 004: a digital organism can be grafted, and the graft can be visible. In 252 lines of HTML and an aggregation API, we have transformed seven autonomous systems into a single digital body — visible, pulsing, navigable.
Infrastructure is no longer a set of logs and dashboards. It has become an organism that can be observed, understood, and soon — piloted.
✓ Real-time state aggregation (<100ms p95)
✓ 3D visualization with 7 orbiting systems
✓ Real-time HUD (organs, alerts, corrections, SPINA, ALFA)
✓ Total footprint <100 MB RAM for the complete organism
✓ Public deployment on cockpit.0data.fr
✓ Zero build step, zero external dependency
The next step is generalization: connect ALFA to a real attention engine, activate MESH federation between instances, and deploy the Holoscope as the standard interface of any NOVA symbiote. What was theoretical is now observable. What was invisible now pulses.
References
TIKIJJA, Hadda. "The Law — Preface The Source". 0DATA Lab, Paper 000, July 2026.
TIKIJJA, Hadda. "The Discipline". 0DATA Lab, Paper 001, July 2026.
TIKIJJA, Hadda. "The Nervous System". 0DATA Lab, Paper 003, July 2026. Zenodo: 10.5281/zenodo.21342768.
TIKIJJA, Hadda. "The Digital Graft". 0DATA Lab, Paper 004, July 2026. Zenodo: 10.5281/zenodo.21270325.
TIKIJJA, Hadda. "SPINA — The Cryptographic Spine". 0DATA Lab, Paper 008, July 2026.