Core scientific engine
Public beta research software
v0.3.0b1
Python 3.11–3.14
AGPL-3.0-or-later
Genesis is the replay/audit-first Python engine.
Use CodonTrace Genesis to run controlled digital-evolution experiments while preserving the evidence needed for later review.
Install
pip install codontrace==0.3.0b1
python -c "import codontrace; print(codontrace.__version__)"
Quick start
Minimal engine flow.
from codontrace.genesis import GenesisEngine, GenesisExperimentSpec
spec = GenesisExperimentSpec(seed=42, tick_count=32, population_max=8)
result = GenesisEngine.from_spec(spec).run_ticks()
print(result.digest())
Capability map
What Genesis exposes.
- Deterministic experiment specs and runtime digests.
- Replay bundles, manifests, and evidence artifacts.
- Ablation policies and treatment/control surfaces.
- Capsule signaling, memory instrumentation, roles, and lineage tracking.
- Claim gates and benchmark-oriented evidence workflow.
- Published on PyPI via Trusted Publishing for
codontrace==0.3.0b1.
Repository sources