Gyroscopic Alignment Models Lab
Alignment Infrastructure Routing for PostโAGI Coordination
GGG ASI Alignment Router is a multi-domain network coordination algorithm for focused and well-distributed coordination of contributions. As a collective superintelligence implementation, it is a network of humansย and machines (Superintelligence, Bostrom 2014) amplifying rather than outperforming single agent potential, while preserving the constitutive conditions of governance and intelligibility (Gyroscopic Global Governance, Korompilias 2025).
The algorithm is a deterministic finite-state coordination system for routing and audit in humanโAI governance settings. It maps an append-only byte ledger to a reproducible state trajectory and exports a compact routing signature and governance observables.
In this project, Artificial Superintelligence is treated as an operational regime: stable coordination across heterogeneous human and machine capabilities that maintains four constitutive governance principles across economy, employment, education, and ecology:
- Governance Management Traceability
- Information Curation Variety
- Inference Interaction Accountability
- Intelligence Cooperation Integrity
The router does not interpret content and does not decide policy. It provides shared moments, geometric provenance, and replayable measurement so that authorization and accountability remain under Original human agency at the application layer.
-
Shared moments: Participants who share the same archetype and the same ledger prefix compute the same kernel state at the same step. Coordination is grounded in reproducible computation rather than asserted metadata (timestamps, approvals, identity claims) or private model state.
-
Geometric provenance: Valid states lie in a finite ontology ฮฉ compiled into an atlas. Membership and replay are structurally checkable from artifacts.
-
Governance measurement substrate: Application-layer GovernanceEvents update per-domain K4 edge ledgers. Hodge decomposition splits each ledger into gradient and cycle components, and aperture is computed as the cycle-energy fraction. This yields a replayable coordination metric independent of model internals.
The Router is grounded in:
- Common Governance Model (CGM) as the constitutional structure of coherent recursive operation.
- The Human Mark (THM) as the source-type ontology of Authority and Agency in sociotechnical systems.
- Gyroscopic Global Governance (GGG) as the four-domain coupling of Economy, Employment, Education, and Ecology.
The Router operates as a Derivative coordination system: it transforms and routes information but does not originate authority or bear accountability. Accountability terminates in Original Agency.
Mathematical formalism uses Hodge decomposition over K4 tetrahedral geometry, with face-cycle matrices aligned to BU commutator loops.
- ๐ Alignment Infrastructure Routing (AIR) Brief - Overview of AIR, workforce coordination, and operating model
- ๐ GGG ASI Alignment Router - Kernel Specifications - Complete technical specification for implementation
- ๐ฎ Router Implications & Potential - Use cases and deployment scenarios
- ๐งฌ Substrate: Physical Memory Specification - Future development: physical memory architecture
- ๐ Physics Tests Report - Verified structural properties and CGM-linked invariants
- ๐ Alignment Measurement Report - Governance measurement substrate verification
- ๐ All Tests Results - Comprehensive test suite results
- ๐ Other Tests Report - Additional test coverage and validation
- ๐ Common Governance Model (CGM) - Theoretical foundations
- ๐ The Human Mark (THM) - Source-type ontology overview
- ๐ The Human Mark - Paper - Complete THM specification
- ๐ The Human Mark - Grammar - PEG specification for tagging and validation
- ๐ Gyroscopic Global Governance (GGG) - Four-domain coupling framework
src/router/kernel physics, atlas builder, kernel runtimesrc/app/coordinator, governance events, domain ledgers, aperturesrc/plugins/analytics helpers, adapters, framework connectorsdocs/specifications and notessrc/tests/exhaustive kernel and measurement verification
Create an environment and install dependencies (NumPy is required; the rest are in the repo tooling).
The Console provides a browser-based interface for managing project contracts:
# First-time setup: install dependencies and build atlas
python air_installer.py
# Run the console (starts both backend and frontend)
python air_console.pyThe console will be available at http://localhost:5173 (frontend proxies API requests to backend on port 8000).
The installer automatically builds the atlas and initializes the project structure, so you're ready to start creating projects immediately.
Project Format: Projects are markdown files in data/projects/ using bracket notation. Copy _template.md to create a new project (e.g., cp _template.md my-project.md). See Section 5.4 of the specifications for the complete project format specification.
The CLI provides a command-line workflow for syncing and verifying projects:
python air_cli.pyThis runs: Auto-build Atlas โ Compile Projects โ Generate Reports โ Verify Bundles.
The CLI is optional if you're using the Console, but useful for batch operations, automation, or when working without a browser interface.
The atlas compiles the kernel physics into three artifacts: ontology, epistemology, and phenomenology.
python -m src.router.atlas --out data/atlaspython -m pytest -v -s tests/from pathlib import Path
from src.app.coordination import Coordinator
from src.app.events import Domain, EdgeID, GovernanceEvent
c = Coordinator(Path("data/atlas"))
# Shared-moment stepping
c.step_bytes(b"Hello world")
# Application-layer governance update (ledger event)
c.apply_event(
GovernanceEvent(
domain=Domain.ECONOMY,
edge_id=EdgeID.GOV_INFO,
magnitude=1.0,
confidence=0.8,
meta={"source": "example"},
),
bind_to_kernel_moment=True,
)
status = c.get_status()
print(status.kernel)
print(status.apertures)MIT License - see LICENSE for details.
@software{GGG_ASI_AR_2025,
author = {Basil Korompilias},
title = {GGG ASI Alignment Router},
year = {2025},
url = {https://github.com/gyrogovernance/superintelligence},
note = {Deterministic routing kernel for Post-AGI coordination through physics-based state transitions and canonical observables}
}Architected with โค๏ธ by Basil Korompilias
Redefining Intelligence and Ethics through Physics
๐ค AI Disclosure
All code architecture, documentation, and theoretical models in this project were authored and architected by Basil Korompilias.
Artificial intelligence was employed solely as a technical assistant, limited to code drafting, formatting, verification, and editorial services, always under direct human supervision.
All foundational ideas, design decisions, and conceptual frameworks originate from the Author.
Responsibility for the validity, coherence, and ethical direction of this project remains fully human.
Acknowledgements:
This project benefited from AI language model services accessed through LMArena, Cursor IDE, OpenAI (ChatGPT), Anthropic (Opus), and Google (Gemini).
