0DATA Lab · Paper 011 · July 2026

The First Graft

When the Organism Becomes Visible

Hadda TIKIJJA
0DATA Lab, France

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.

Definition: Infrastructural Blindness
A state in which the components of a digital organism are functional and instrumented, but in which no system synthesizes their individual states into a unified, spatially and temporally coherent representation — making the intuitive perception of the system's overall health impossible.

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:

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:

┌─────────────────────────────────────────────┐ │ LAYER 3 : 3D VISUALIZATION │ │ Three.js · WebGL · Canvas │ │ ─ 7 spheres orbiting a nucleus │ │ ─ Pulsation proportional to activity │ │ ─ Orbital navigation (drag, zoom, click) │ │ ─ Real-time HUD (organs, alerts, etc.) │ └──────────────────┬──────────────────────────┘ │ HTTP GET /api/organism/state ┌──────────────────▼──────────────────────────┐ │ LAYER 2 : STATE AGGREGATION │ │ FastAPI · Port 8300 · Nginx proxy │ │ ─ Queries 3+ services in parallel │ │ ─ Unifies formats (Flask, FastAPI, raw) │ │ ─ Computes derived state (mode, summary) │ │ ─ Target latency : < 100ms p95 │ └──────────────────┬──────────────────────────┘ │ HTTP (localhost) ┌──────────────────▼──────────────────────────┐ │ LAYER 1 : LIVING SERVICES │ │ SYNAPSE :5191 · CYTOKINE :5190 │ │ SPINA :5110 · COLLECTOR :8401 │ │ NGINX :443 (DERMA) · SSHD (MESH) │ │ ─ 8 Python processes · 97 MB total RAM │ │ ─ Each service exposes /health │ └─────────────────────────────────────────────┘
Figure 1: The three-layer architecture of the Holoscope. Layer 1 (services) exposes the raw state, layer 2 (aggregation) unifies, layer 3 (visualization) makes it visible.

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:

SystemPortBiological RoleColorVisual Behavior
SYNAPSE5191Nervous system — topology, reflexesSlate bluePulses according to the number of organs
CYTOKINE5190Immune system — detection, alertsGoldAccelerated pulse if alerts active (×2.5)
HOMEOSTASIS5193Metabolism — corrections, balanceMint greenPulses according to active corrections
DERMA443Skin — perimeter, SSL, exposureVioletOpacity = protected/exposed ratio
MESH8401Connective tissue — peers, networkCyanSize = number of peers
SPINA5110Spine — memory, chainOrangeRings = blocks in the chain
ALFAConsciousness — attention, decisionsBlue-whiteCentral nucleus, pulses according to attention state
Principle: Living Mirror
The Holoscope does not interpret. It reflects. Every pulsation, every change of color, every variation in opacity is directly correlated to a real metric read from the living service. There is no "simulation" — what the eye perceives is the real state of the infrastructure, translated into the visual language that the human brain processes most naturally: movement, color, spatial position.

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:

{ "mode": "live", "timestamp": "2026-07-23T16:30:51Z", "hostname": "odata", "cpu": "0.50 0.52 0.40", "memory": {"total": "7.7Gi", "used": "3.0Gi", "free": "437Mi"}, "disk": {"total": "232G", "used": "123G", "free": "110G"}, "systems": { "synapse": {"alive": true, "organs": 0, "synapses": 0, ...}, "cytokine": {"alive": true, "active_alerts": 6, ...}, "homeostasis": {"alive": false, "corrections_total": 0, ...}, "derma": {"alive": true, "services_protected": 30, ...}, "mesh": {"alive": false, "peers_alive": 0, ...}, "alfa": {"alive": true, "attention": "observing", ...}, "spina": {"alive": true, "chain_length": 0, "active_alerts": 4, ...} }, "summary": { "organs_total": 0, "synapses_total": 0, "alerts_active": 10, "corrections_total": 0, "spina_blocks": 0, "systems_alive": 3, "systems_total": 7 } }
Figure 2: Real JSON response from the /api/organism/state API after the graft (July 23, 2026, 16:30 UTC).

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

MetricValueCondition
Average latency87.4 ms50 sequential requests, 100 ms interval
p95 latency97.9 msSame series
Minimum latency76.9 ms
Maximum latency104.3 ms

Sub-System Latency (internal localhost)

ServiceAverageMinMax
CYTOKINE (:5190)0.9 ms0.6 ms1.8 ms
SYNAPSE (:5191)0.6 ms0.4 ms1.0 ms
SPINA (:5110)0.6 ms0.4 ms1.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

ComponentProcessesRAM
NOVA Connectors16.4 MB
CYTOKINE117.8 MB
Signature Collector211.8 MB
SYNAPSE115.8 MB
Orchestrator112.6 MB
SPINA118.4 MB
Agents Server (aggregation)114.5 MB
TOTAL897.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

MetricValue
Polling interval5 seconds
Data servedAlways 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.

  1. 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.
  2. 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.
  3. 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.
  4. 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.
  5. 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.

What Has Been Accomplished
✓ Direct connection to 3 living NOVA services (SYNAPSE, CYTOKINE, SPINA)
✓ 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.

Acknowledgements. To the first readers of the nine founding papers, whose feedback sharpened the rigor of this one. To the first grafted of the infrastructure, whose vital signals made this visualization possible. To those who signed before the proof was made.