Project Quantum Shield · Structural map

Component Map

One row per moving part: what it claims, what mechanism it proposes, what it is technically made of, and what it is for.

Start with the project briefing for the argument this map organizes.

Root Notebook

Primary theme
Speciation and cultural divergence
Evolutionary mechanism
Genetic isolation and speciation via cultural convergence
Technical focus
Information theory — evolutionary divergence against biological convergence
Functional purpose
Describes how cultural divides in the arts, sciences, and consciousness create isolated gene pools that lead toward new species across roughly twelve thousand years of recorded history.
Source
1, 2

Notebook 1 — Quantum Bio-Energetics

Primary theme
Speciation and subsurface mutation
Evolutionary mechanism
Proton tunneling — spontaneous tautomeric shifts producing point mutations
Technical focus
Quantum bio-energetics, PennyLane in Python, quantum state probabilities
Functional purpose
Identifies and models the subsurface quantum events that accumulate to drive biological divergence and the production of new species.
Source
1, 3

Speciation at the Borders

Primary theme
Infrastructure of evolution
Evolutionary mechanism
Strengthening of genetic differences through isolation
Technical focus
Genetic diversity and population isolation
Functional purpose
Explains the process by which early speciation appears first at the boundaries between culturally isolated groups.
Source
2

Divergence 2 — Information Theory & Cognitive Noise

Primary theme
Information theory
Evolutionary mechanism
Entropy filtering
Technical focus
Allergic response under modern synthetic noise
Functional purpose
Explores how allergy acts as an entropy filter in response to cognitive and molecular noise rather than as simple malfunction.
Source
1

Divergence 3 — Citizen Science Infrastructure

Primary theme
Infrastructure
Evolutionary mechanism
Outsider paradigm synthesis
Technical focus
AI prompt architecture
Functional purpose
Provides the technical instruments a citizen scientist needs to synthesize new paradigms without collapsing into agreement.
Source
1

Notebook 1 — Automated Workspace Generator

Primary theme
Infrastructure
Evolutionary mechanism
Not stated in source
Technical focus
Python script — build_workspace.py
Functional purpose
Automates the physical creation of the segmented citizen-science directory layout on a local desktop file system.
Source
4

The workspace generator

The map is only useful if the filing system exists on disk. This script builds the segmented layout locally, writes a short README into each section stating the standard of evidence for that section, and can be re-run safely as the project grows.

build_workspace.py
#!/usr/bin/env python3
"""build_workspace.py — Project Quantum Shield
Creates the segmented citizen-science directory layout on a local desktop.
Idempotent: re-running adds missing folders and leaves existing work alone.
"""
from pathlib import Path
ROOT = Path.home() / "Desktop" / "Project_Quantum_Shield"
LAYOUT = {
"00_ROOT_NOTEBOOK": ["essay", "conceptual_map", "sources"],
"01_QUANTUM_BIO_ENERGETICS": ["pennylane", "figures", "runs"],
"02_INFORMATION_THEORY": ["entropy_models", "allergy_literature", "figures"],
"03_CITIZEN_SCIENCE_INFRA": ["prompts", "protocols", "witness_log"],
"04_SPECIATION_AT_THE_BORDERS": ["population_data", "notes"],
"99_ARCHIVE": ["superseded", "raw_downloads"],
}
README = """This directory is a working record, not a publication.
Every claim filed here carries: date, source, method, and the observation
that would count against it. Nothing moves out of ARCHIVE without a witness.
"""
def build() -> None:
for section, subs in LAYOUT.items():
for sub in subs:
(ROOT / section / sub).mkdir(parents=True, exist_ok=True)
readme = ROOT / section / "README.md"
if not readme.exists():
readme.write_text(f"# {section.replace('_', ' ').title()}\n\n{README}")
print(f"workspace ready: {ROOT}")
if __name__ == "__main__":
build()