YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Sovereign Hypervisor SDK
Authors: Jessica L. Westerhoff (SNAPKITTYWEST), Ahmad Ali Parr
Trust: Bel Esprit D'Accord Irrevocable Trust Β· EIN 42-697643
Sovereign ARM64 EL2 Hypervisor Platform + ORTHO-32-T Chip Fabric + Formally Verified AGI Kernel
Public API surface only. Implementation requires a paid license.
β οΈ PAYWALL NOTICE
This repository contains API definitions and documentation only.
No software renders without a license. The implementation β including the Node backend, 6502 VM, NASMβARM64 translator, ORTHO-32-T RTL, and AGI kernel β is in the private repository and is released only to licensed users.
Get a license: licensing@snapkittywest.dev
What Is This
A three-layer sovereign computing platform:
Layer 1 β ORTHO-32-T Chip Fabric
A formally verifiable alternative to Intel AMX.
| Property | Intel AMX | ORTHO-32-T |
|---|---|---|
| Deterministic latency | β Non-deterministic | β 9 cycles/tile (proved) |
| Formal verification | β Closed source | β TLA+ + Lean 4 |
| Vendor lock-in | β Sapphire Rapids+ only | β Any ASIC foundry |
| Patent status | Intel patents | SnapKitty patent pending |
- 32-bit RISC ISA, 5-stage pipeline
- 8 tensor registers (TR0-TR7), 4Γ4 INT8 tiles
- 768-cycle deterministic 4Γ4Γ4 GEMM β provable, not approximate
- Target: TSMC 28nm or SkyWater 130nm ASIC
Layer 2 β Sovereign ARM64 EL2 Hypervisor
Windows control plane β macOS SwiftUI shell β ARM64 EL2 target.
- 6502 VM (64KB memory, real registers, WORM trace chain)
- NASM x86_64 β Apple ARM64 translation bridge
- Dual-runtime AMD64 bare-metal scaffold (UEFI boot, GDT/IDT/paging/TSS)
portal.asmβ lock-free ring buffer (Swift producer / ASM consumer)sovereign_boot_chain.asmβ 4-stage WORM chain of trust- Live at :8788 in compatibility mode (LIVE EL2 TARGET requires connected endpoint)
Layer 3 β Sovereign AGI Kernel
Formally verified AGI trust anchor in Idris 2. Safety axioms are types, not policies.
Active => Trusted β uninhabited type, no constructor exists
WORMChain β no Remove constructor, deletion impossible by type
EntropyBound n β compile-time, n β€ 20
5 axioms. All enforced at compile time. If it compiles, the invariants hold.
API Surface (SDK β Stubs Only)
// sovereign-hypervisor-sdk/src/index.ts
// STUBS ONLY β implementation requires license
export interface HypervisorBridge {
/** Write to 6502 mailbox at $2000 */
mailboxWrite(payload: string, guestId: number, cycleBudget: number): Promise<BridgePacket>
/** Translate NASM x86_64 source to Apple ARM64 */
translateNasm(source: string): Promise<TranslationResult>
/** Get platform status */
status(): Promise<PlatformStatus>
}
export interface ORTHO32T {
/** Execute deterministic GEMM tile (9 cycles) */
gemmTile(a: Int8Array, b: Int8Array): Promise<Int32Array>
/** Get timing contract */
timingContract(): TimingContract // 768 cycles for 4Γ4Γ4, provable
}
export interface AGIKernel {
/** Submit reasoning claim through kernel gate */
verifyClaim(claim: unknown): Promise<VerifiedClaim | Rejected>
}
Full implementation: Contact for license
License Tiers
| Tier | Use | Price |
|---|---|---|
| Research | Read source, no execution | Free |
| Commercial | Full execution + deployment | Contact us |
| OEM/Foundry | ASIC tapeout rights (TSMC/SkyWater) | Enterprise |
Contact: licensing@snapkittywest.dev
Prior Art
- Trust: Bel Esprit D'Accord Irrevocable Trust (EIN 42-697643)
- Zenodo: DOI 10.5281/zenodo.21268911 (78 Lean 4 theorems, 2026-07-08)
- Chain: BEL-ESPRIT-D-ACCORD-TRUST-HOLDINGS/sovereign-hypervisor-arm64 (private)
- WORM: Ed25519 + Blake3 sealed
Β© 2026 Bel Esprit D'Accord Irrevocable Trust Β· SNAPKITTYWEST
Patent pending Β· All rights reserved