| Icon | Layer | Neurobiological Scale | Conflict / Dialectic | Cosmological Axis |
|---|
Grammar can be taught. Prosody must be earned.
This HTML dashboard connects to your YAML data through the following workflow:
signal-noise-toolkit/ βββ generate_dashboard.py βββ neurocosmic_layers.yml βββ templates/ β βββ index_template.html βββ output/ β βββ index.html β βββ data.json β βββ README.md
import yaml
import json
import os
from jinja2 import Environment, FileSystemLoader
# Load YAML data
with open("neurocosmic_layers.yml", "r") as f:
data = yaml.safe_load(f)
layers = data["layers"]
# Setup Jinja2 template
env = Environment(loader=FileSystemLoader("templates"))
template = env.get_template("index_template.html")
# Generate outputs
os.makedirs("output", exist_ok=True)
# HTML
with open("output/index.html", "w") as f:
f.write(template.render(layers=layers))
# JSON
with open("output/data.json", "w") as f:
json.dump(layers, f, indent=2)
# Markdown
with open("output/README.md", "w") as f:
f.write("# Neurocosmic Layer Framework\n\n")
f.write("| Icon | Layer | Neurobiology | Dialectic | Axis |\n")
f.write("|------|-------|--------------|-----------|------|\n")
for layer in layers:
f.write(f"| {layer['icon']} | {layer['name']} | {layer['neurobiology']} | {layer['dialectic']} | {layer['axis']} |\n")
print("β
Dashboard generated to /output/")
Entropy vs Signal at the synaptic level - Information emerges from chaos, the primal cosmogenesis.
Scarcity vs Reciprocity - Captures the cellular tension of life: competition vs cooperation, encoded in axonal architectures.
Amygdala vs PFC - The classic fear vs reason, limbic vs executive tensionβthe Faustian battlefield.
Hippocampus vs Thalamus - Shapes the boundaries of perception and integrationβhow the system determines relevance.
Insular vs DMN - Reflects the pivot from egocentric to allocentric cognitionβkey to sustainability and collective coherence.