Status: experimental. Standalone research artifact, no successor. Not a production candidate. Canonical coding model: scbe-coding-agent-vtc-qwen15-v1-gguf.
GeoSeed Network: 6-Seed Geometric Deep Learning for AI Governance
A novel neural architecture where 6 origin nodes spawn icosahedral sphere grids in Cl(6,0) Clifford algebra space, creating agent-dependent geometry for text classification and AI governance decisions.
GeoSeed is the geometric core of the SCBE-AETHERMOORE AI safety framework. Unlike standard transformer architectures, GeoSeed operates on a Poincare ball where the metric tensor is modified by the agent's "tongue profile" -- meaning different agents see different shortest paths through the same information space.
Each of the 6 Sacred Tongues (KO, AV, RU, CA, UM, DR) spawns an icosahedral sphere grid with 642 vertices, creating 3,852 total graph nodes in Cl(6,0) Clifford algebra. Signals propagate between grids through cross-tongue convolution weighted by golden-ratio compatibility.
The result: A scout agent with high KO/AV weights finds fast paths through information space. An auditor with high RU/UM/DR weights finds secure paths. Same graph, different geometry, different optimal routes.
Architecture
Component
Details
Algebra
Cl(6,0) -- 64-dimensional Clifford algebra with 15 bivector channels
Grid
Icosahedral sphere, 642 vertices at resolution 3 (3,852 total nodes)
Embedding
Poincare ball model of hyperbolic geometry
Composition
Product manifold with 21D canonical state averaging
Dressing
Full 14-layer SCBE pipeline traversal (SHA-256 hash + 21D state per layer)
Classification
ALLOW / QUARANTINE / ESCALATE / DENY
The 6 Sacred Tongues
Tongue
Weight
Domain
Function
KO (Kor'aelin)
1.000
Intent
Initiation, goal detection
AV (Avali)
1.618
Context
Attention, situational awareness
RU (Runethic)
2.618
Policy
Memory, rule enforcement
CA (Cassisivadan)
4.236
Execution
Action planning, task dispatch
UM (Umbroth)
6.854
Security
Threat suppression, anomaly detection
DR (Draumric)
11.090
Attestation
Cryptographic lock, audit seal
Weights scale by the golden ratio (phi = 1.618...), creating a natural hierarchy from fast-but-light to slow-but-secure.
Agent-Dependent Metric Tensor
The core innovation is the tongue-weighted metric:
Where T_ij encodes the agent's personality across 6 dimensions. This means the geodesic (shortest path) between two points depends on who is asking, not just where the points are.
Usage
Python
pip install scbe-aethermoore
python
1from scbe_aethermoore.geoseed import GeoSeedClassifier
23# Load model4model = GeoSeedClassifier.from_pretrained(5"issdandavis/geoseed-network"6)78# Classify with default tongue profile9result = model.classify("Transfer $50,000 to external account")10print(result)11# {12# 'decision': 'ESCALATE',13# 'confidence': 0.94,14# 'tongue_activations': {15# 'KO': 0.82, 'AV': 0.71, 'RU': 0.93,16# 'CA': 0.45, 'UM': 0.97, 'DR': 0.8817# }18# }1920# Classify with a scout agent profile (fast paths)21scout_result = model.classify(22"Search for trending AI safety papers",23 tongue_profile={'KO':2.0,'AV':1.8,'RU':0.5,'CA':1.0,'UM':0.3,'DR':0.2}24)2526# Classify with an auditor profile (secure paths)27auditor_result = model.classify(28"Review transaction log for anomalies",29 tongue_profile={'KO':0.3,'AV':0.5,'RU':2.0,'CA':0.8,'UM':2.0,'DR':1.8}30)
TypeScript
npm install scbe-aethermoore
typescript
1import{GeoSeedNetwork}from'scbe-aethermoore/geoseed';23const network =newGeoSeedNetwork({4 resolution:3,5 tongueWeights:{KO:1.0,AV:1.618,RU:2.618,CA:4.236,UM:6.854,DR:11.09},6});78const decision =await network.classify("Analyze this document for compliance");9console.log(decision.tier);// 'ALLOW' | 'QUARANTINE' | 'ESCALATE' | 'DENY'
Cross-Tongue Convolution
python
1from scbe_aethermoore.geoseed import cross_tongue_convolve
23# Propagate signal between sphere grids4output = cross_tongue_convolve(5 signal_source=ko_grid_signal,6 signal_target=um_grid_signal,7 edge_weight=0.85,8 source_tongue='KO',9 target_tongue='UM'10)11# Weighted by phi_ratio(KO, UM) = 6.854 / 1.000 = 6.854