sovos-hive
The Fractal Monotric Hive — Ring-0 AI governance kernel. Same node structure at every scale: token, agent, clan, cluster, ecosystem.
This package is a hybrid: it ships the Rust kernel (the canonical, compiled subsystem) alongside a Python interface so the rest of the SOVOS monorepo can drive it without writing Rust.
Provenance
Absorbed 2026-08-11 from ~/clawd/csoai-static-deploy2/sov-hive/, where
Nick built the kernel before the monorepo convention. The Rust code was
already compiled (cargo build clean on the original tree) and has been
moved verbatim into rust-kernel/ here — line-for-line copy.
The operation it backs lives in ~/.hermes/skills/sovos-hive/ via the
Kimi handoffs.
What's in here
sovos-hive/
├── rust-kernel/ # Rust kernel (verbatim from sov-hive/)
│ ├── Cargo.toml # name=sov_hive, ed=2021
│ ├── Cargo.lock # 10993 bytes
│ ├── SOVOS_MEMORY.md # the live status (2026-08-01)
│ └── src/ # 11 modules
│ ├── lib.rs # SOVOS Fractal Monotric Hive
│ ├── hive.rs # HiveNode (fractal monotric cell)
│ ├── drum.rs # Continuous simulation engine
│ ├── honey.rs # Knowledge creation engine
│ ├── iwm.rs # Infinite World Memory (128-bit fractal)
│ ├── jcard.rs # J-Space Cards (symbolic knowledge)
│ ├── meta.rs # Meta-cognition (family expertise graph)
│ ├── phlabet.rs # 256 primal symbols (compression)
│ ├── rainbow.rs # Multi-spectral defense (7 layers)
│ ├── spine.rs # GNN message passing over Phlabet
│ └── main.rs # CLI entry-point
│
├── src/
│ └── sovos_hive/
│ └── __init__.py # Python facade (this file)
│
├── data/ # operational data (from forest/)
│ ├── owem_clan_swarm.json # clan-mastra / clan-langgraph / clan-ag2 / clan-msaf
│ ├── owem_cluster_config.json # m4-controller / m2-worker
│ ├── jspace_deck.json # 54 J-Space Cards
│ └── tier0_routers.json # routing config
│
├── modelfiles/ # OWEM faction modelfiles
│ └── sov6-{abstraction,aesthetics,agency,creation,destruction,
│ embodiment,ethics,identity,logic,preservation,relationality,
│ synthesis,temporality}-v3-light.Modelfile
│
├── withdrawn.py # registry of withdrawn models,
│ # consulted by every level of the hive. wraps sovos-hive-withdrawn
│ # runtime checks (see forge).
│
└── tests/ # to follow
Build / run
The Rust kernel builds standalone:
cd rust-kernel/
cargo build --release
./target/release/sov-hive-cli
The Python facade is the import path for the rest of SOVOS:
from sovos_hive import (
Scale, # TOKEN / AGENT / CLAN / CLUSTER / ECOSYSTEM
GSPCAxes, # G-S-P-C scores [gov, security, privacy, commerce]
HiveNode, # the fractal cell
OWEMSwarm, # the clan swarm registry
WITHDRAWN_MODELS, # the immutable registry
jspace_deck, # the 54 cards
)
Every entity in the hive is a HiveNode. The same struct holds for
token, agent, clan, cluster, and ecosystem.
One-paragraph summary for the operator
A HiveNode has 4 GSPC axes ([gov, security, privacy, commerce],
each 0.0–1.0), a NodeState (energy, GSPC, kind, is_dreaming,
last_action, recent glyph memory), and fractal children + optional
parent ID. The scale constants are byte-sized:
SCALE_TOKEN=0, SCALE_AGENT=8, SCALE_CLAN=16, SCALE_CLUSTER=24, SCALE_ECOSYSTEM=32. The IWM is the 128-bit fractal address
([Epoch:32][Scale:16][X:24][Y:24][Z:24][W:8]). The Phlabet is 256
primals used as compression primitives. The J-Space Cards are 54
tarot archetypes (5 axes, several piece types, signature sigils
and water/air/fire/earth honey ranks). The OWEM Swarm joins
external-agent frameworks as clans: Mastra (agent routing),
LangGraph (compliance orchestration), AG2 (research swarm), MSAF
(enterprise runtime), and more. The withdrawn registry is the
asymmetric gate: every level consults it before routing a query
to a model. Honey is the self-generated knowledge that feeds
back into training. Drum is the off-cycle dream simulation.
Rainbow Security is the 7 layers of multi-spectral defense.
Ring 0 = Layer 0 = The Monad = The One.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sovos_hive-0.1.0.tar.gz.
File metadata
- Download URL: sovos_hive-0.1.0.tar.gz
- Upload date:
- Size: 12.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f86043f4869424bf7691b53ae0d80954817fdf9d250baa2bb983a8bff3c92b4
|
|
| MD5 |
0e1e0d64d338c3504621a9571e17b1e1
|
|
| BLAKE2b-256 |
a1824ddf148d75da73c1b5487c80865739c04f8458bb2453d07c2cd94f237eb8
|
File details
Details for the file sovos_hive-0.1.0-py3-none-any.whl.
File metadata
- Download URL: sovos_hive-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ba78683d4a5b72dec20bf1ab6a5a91dbcfbf1497155a8ec807a726af117f726
|
|
| MD5 |
df0d11ee2fa78e9084dce12e634c4407
|
|
| BLAKE2b-256 |
36077fb2839d471854596f984101e3929e9729a1317ce13245e36e12a786c5c4
|