DEV Community

Cover image for Seeded Universe Recreation Engine: Building a Deterministic Universe Timeline from One Seed
Gary Doman/TizWildin
Gary Doman/TizWildin

Posted on • Originally published at github.com

Seeded Universe Recreation Engine: Building a Deterministic Universe Timeline from One Seed

Seeded Universe Recreation Engine: Building a Deterministic Universe Timeline from One Seed

I’m building Seeded Universe Recreation Engine, a deterministic seed-based universe simulation project.

The core idea is simple but ambitious:

one canonical seed
→ physics
→ stars
→ planets
→ atmospheres
→ oceans
→ geology
→ chemistry
→ life
→ civilisation
→ signal detection
→ ARC receipts
→ branch-comparable timelines
Enter fullscreen mode Exit fullscreen mode

The project is designed around a doctrine where the universe is not manually forced into outcomes. The seed defines the canonical timeline, physics unfolds from that seed, and interventions must be receipted instead of silently rewriting causality.

What the project is

Seeded Universe Recreation Engine is a browser-based deterministic universe simulator with an optional Python/FastAPI ARC backend.

The current system combines three major pieces:

  1. Universe Engine v16
  2. Synth Origin / Proto-Synth Grid Engine
  3. Universe Bridge v1
  4. ARC-Core receipt and ledger backend

Together they create a split-screen master-control environment where the universe simulation and the synth/observer system can communicate without breaking causality.

Universe Engine v16

The Universe Engine is the deterministic simulation layer.

From one seed, the engine unfolds a traceable universe containing:

  • stars
  • planets
  • atmospheres
  • oceans
  • geology
  • chemistry
  • life checks
  • evolution paths
  • civilisations
  • signal signatures
  • intervention branches

The model includes physics concepts such as:

  • Stefan-Boltzmann temperature
  • Jeans escape atmospheres
  • water phase diagram checks
  • Kepler-style orbital structure
  • tidal locking
  • radioactive heating
  • supernova enrichment
  • Kardashev civilisation detection
  • 64-bit genome encoding
  • autocatalytic first-replication events

The point is not to hand-place life or civilisation.

The point is to let a deterministic seed produce a traceable universe state.

Zoom stack

The universe view is organized into zoom levels:

L0 → Cosmos / full universe
L1 → Galaxy cluster
L2 → Stellar system
L3 → Planet surface
L4 → Region cross-section
L5 → Molecule field
L6 → Atom patch
L7 → Synth Center / universe origin eye
Enter fullscreen mode Exit fullscreen mode

The zoom stack matters because the project is not only a visual demo. It is meant to show a universe that can be explored across scale.

From cosmos to atoms, the goal is a continuous seeded timeline.

Synth Origin

The Synth Origin layer comes from the Proto-Synth Grid Engine direction.

In this universe project, the synth sits at the center as the signal instrument.

It acts as:

  • master control eye
  • scanner surface
  • signal router
  • blueprint-driven execution shell
  • communication backbone
  • ARC-gated authority surface

In universe mode, the synth scanner can detect civilisation contacts from the universe state.

The synth’s signal network then becomes the communication backbone for universe events.

Universe Bridge v1

The Universe Bridge connects the universe simulation and the synth system without breaking causality.

The bridge flow is:

Universe state
→ bridge extraction
→ civilisation contacts
→ synth scanner feed
→ synth signal events
→ universe receipt
Enter fullscreen mode Exit fullscreen mode

The bridge logs crossings and keeps the interaction traceable.

That means the synth can observe and signal without silently mutating the canonical universe.

ARC-Core backend

The optional ARC backend provides a receipt and ledger layer.

A typical local backend setup is:

pip install fastapi uvicorn pydantic
python launch.py
Enter fullscreen mode Exit fullscreen mode

The backend direction includes:

  • universe record ledger
  • tamper-evident receipt chain
  • branch simulation
  • REST endpoint surface
  • intervention evidence
  • origin record tracking

The repo’s architecture frames ARC-Core as the system that records truth, receipts, and branch outcomes.

TT-101 Doctrine

The project follows six core TT-101 rules:

1. Seed canonical — the seed is never changed to force outcomes.
2. Causality absolute — no signal travels faster than c_sim.
3. Energy conserved — ΔE_total = 0 always.
4. Intelligence emergent — life cannot be hardcoded, only arise from physics.
5. Interventions receipted — every perturbation is logged in ARC.
6. Branch comparable — a modified universe never replaces the canonical timeline.
Enter fullscreen mode Exit fullscreen mode

This doctrine is the most important part of the project.

It means the simulation is not just about visuals. It is about traceability, causality, receipts, and controlled branching.

Why branch comparison matters

In a normal simulation, changing a value can overwrite the timeline.

In Seeded Universe Recreation Engine, an intervention should create a comparable branch.

That means:

canonical universe remains intact
intervention creates branch
branch stores divergence
branch can be compared
receipts explain what changed
Enter fullscreen mode Exit fullscreen mode

This makes the project more like a deterministic timeline laboratory than a simple sandbox.

Master Control

The top-level launcher is MasterControl.html.

It provides:

  • split view between universe and synth
  • universe-only mode
  • synth-only mode
  • synth-center jump
  • bridge test pulse
  • ARC console access
  • draggable split panels

The point of Master Control is to make the system observable from one surface.

File structure direction

The repo includes major pieces such as:

MasterControl.html
launch.py
universe_bridge.js
sure/universe_observer_v16_vision.html
synth/index.html
ARC_Console/
Enter fullscreen mode Exit fullscreen mode

The architecture connects them like this:

MasterControl.html
├─ Universe Engine v16
├─ Universe Bridge
├─ Synth Origin
└─ ARC-Core
Enter fullscreen mode Exit fullscreen mode

Why this matters

Seeded Universe Recreation Engine is exploring a larger question:

Can a deterministic seed-based world be made traceable from cosmic scale down to chemistry, life, intelligence, signal detection, and intervention receipts?
Enter fullscreen mode Exit fullscreen mode

That makes the project useful as an experimental foundation for:

  • universe simulation
  • deterministic timelines
  • procedural world generation
  • AI observer systems
  • seeded replay
  • emergent-life modeling
  • branch-comparable experiments
  • local-first scientific visualization
  • ARC-style receipt ledgers
  • Synth/observer interfaces

Repo

https://github.com/GareBear99/Seeded-Universe-Recreation-Engine

What I’m looking for

I’m looking for feedback from:

  • simulation developers
  • procedural generation developers
  • game engine developers
  • physics/math people
  • AI researchers
  • local-first software builders
  • JavaScript developers
  • Python/FastAPI developers
  • worldbuilding/tooling developers
  • people interested in deterministic timelines

Useful feedback includes:

  • physics model suggestions
  • seed/replay architecture feedback
  • zoom-stack design ideas
  • branch comparison design feedback
  • ARC receipt format suggestions
  • Universe Bridge feedback
  • Synth Origin integration feedback
  • performance ideas
  • visual clarity improvements
  • docs/onboarding suggestions

Long-term direction

The long-term direction is a deterministic universe recreation engine where the whole world can be traced back to a canonical seed.

Not just procedural noise.

Not just a pretty universe view.

A seed-rooted, branch-comparable, receipt-backed simulation where physics, life, civilisation, observation, and intervention all remain traceable.

Related ARC / Synth Ecosystem Repos

Seeded Universe Recreation Engine is part of a larger local-first ARC/Synth research ecosystem.

Related projects:

Together, these repos form the larger architecture around deterministic simulation, local-first AI memory, governed receipts, language routing, visual replay, and Synth-style runtime interfaces.

Top comments (0)