Layers12
LanguagePython
Font UsedSyne
🧠

OMEGA.

A 12-layer cognitive architecture that models, benchmarks, and rewrites itself.

Each layer is an evolutionary pressureβ€”stacked like sediment, each load-bearing for the next.

Nothing static. Observing itself, proposing hypotheses, and evolving inside sandboxed boundaries.

Architecture by: Tejaswanth Surisetty Β· github.com/Tejaswanth2406 Theoretical Foundations: Holland, Friston, Baars, Clark, Langton
↓ ⌘

Twelve layers,
one ascent.

01
Cognitive Genome
Evolvable component DNA β€” the base encoding every other layer mutates from.
/genome
02
Artificial Cell System
Modular cognitive cells that compose into larger reasoning units.
/cells
03
Neural Knowledge Fabric
A dynamic knowledge graph that reshapes itself as understanding grows.
/graph
04
Multi-Scale Memory
A 7-tier memory hierarchy spanning working to long-horizon recall.
/memory
05
Meta-Cognition
A machine self-model β€” the organism's account of its own state.
/metacognition
06
Continuous Scientific Method
Hypothesis-driven outputs β€” every claim is tested before it's trusted.
/scientific_method
07
Evolution Engine
Multi-level evolution across the genome, cells, and higher structures.
/evolution
08
Cognitive Immune System
Mutation safety gating β€” nothing evolves without passing quarantine.
/immune
09
Fast Ontological Recognition
Pre-retrieval classification that routes a query before it's expensive.
/ontology
10
Energy-Based Cognition
Budget-constrained reasoning β€” thought has a metabolic cost here.
/cognition
11
Cognitive Ecosystem
Competing agent populations, selected the way traits are selected.
/ecosystem
12
Recursive Self-Improvement
The full self-redesign loop β€” the summit layer, closing back on Layer 1.
/self_design

What counts
as intelligence, here.

the organism's working definition
Intelligence= KnowledgeΓ— AdaptabilityΓ— EfficiencyΓ— Self-Improvement

Three modes,
one organism.

install
# dependencies
pip install -r requirements.txt
talk to it
python -m organism.main --mode interactive
let it evolve
python -m organism.main --mode evolve --generations 100
benchmark it
python -m organism.main --mode benchmark

Standing on a few
tall shoulders.

John Holland
Evolutionary Computation
Karl Friston
Active Inference & the Free Energy Principle
Bernard Baars
Global Workspace Theory
Andy Clark
Predictive Processing
Christopher Langton
Artificial Life

Where each layer
actually lives.

artificial-organism/
β”œβ”€β”€ genome/          # Layer 1: Cognitive DNA
β”œβ”€β”€ cells/           # Layer 2: Artificial Cells
β”œβ”€β”€ graph/           # Layer 3: Neural Knowledge Fabric
β”œβ”€β”€ memory/          # Layer 4: Multi-Scale Memory
β”œβ”€β”€ metacognition/   # Layer 5: Self-Model
β”œβ”€β”€ scientific_method/ # Layer 6: Hypothesis Engine
β”œβ”€β”€ evolution/       # Layer 7: Evolution Engine
β”œβ”€β”€ immune/          # Layer 8: Immune System
β”œβ”€β”€ ontology/        # Layer 9: Ontological Recognizer
β”œβ”€β”€ cognition/       # Layer 10: Energy-Based Cognition
β”œβ”€β”€ ecosystem/       # Layer 11: Agent Ecosystem
β”œβ”€β”€ self_design/     # Layer 12: Recursive Self-Improvement
β”œβ”€β”€ rag/               # Enhanced RAG system
β”œβ”€β”€ benchmarking/       # Fitness benchmarking
β”œβ”€β”€ simulation/         # Sandboxed mutation testing
β”œβ”€β”€ self_repair/        # Self-repair mechanisms
β”œβ”€β”€ observability/       # Logging, tracing, dashboards
└── deployment/          # Production deployment

Ascend it.

Clone the repo, run it in interactive mode, and watch a system reason about its own reasoning.

Clone the repository β†’ Read the source