File size: 2,516 Bytes
afe5a51 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | # SnapKitty Sovereign Harness β iPhone & iPad
The full sovereign stack runs in your browser. No App Store. No download.
## Option 1 β Safari (instant, no install)
1. Open Safari on iPhone or iPad
2. Go to: **https://snapkittywest.github.io/sovereign-harness/**
3. Tap **Share β Add to Home Screen**
4. It installs as a PWA β works offline after first load
The browser UI runs:
- Plasma Gate (7 principles, 8 prohibitions, ERE-5)
- Kneser-Ney language model (sovlm)
- ANU QRNG real quantum entropy
- WORM SHA-256 chain (local storage)
- WebLLM β runs Phi-3 Mini in your browser via WebGPU
## Option 2 β Swift Playgrounds (iPad)
Open Swift Playgrounds on iPad and create a new playground with this code:
```swift
import SwiftUI
import WebKit
struct SovereignHarness: View {
var body: some View {
SovereignWebView()
.ignoresSafeArea()
}
}
struct SovereignWebView: UIViewRepresentable {
let url = URL(string: "https://snapkittywest.github.io/sovereign-harness/")!
func makeUIView(context: Context) -> WKWebView {
let config = WKWebViewConfiguration()
config.allowsInlineMediaPlayback = true
config.mediaTypesRequiringUserActionForPlayback = []
let wv = WKWebView(frame: .zero, configuration: config)
wv.load(URLRequest(url: url))
return wv
}
func updateUIView(_ uiView: WKWebView, context: Context) {}
}
// Run it
import PlaygroundSupport
PlaygroundPage.current.setLiveView(SovereignHarness())
```
This opens the full sovereign harness UI inside Swift Playgrounds β same plasma gate, same WORM chain, same WebLLM.
## Option 3 β Shortcuts (iPhone automation)
1. Open the **Shortcuts** app
2. Create a new shortcut
3. Add action: **Open URLs**
4. URL: `https://snapkittywest.github.io/sovereign-harness/`
5. Add to home screen as "Sovereign"
## What runs in the browser (no server needed)
| Component | Browser version |
|-----------|----------------|
| Plasma Gate | plasma_gate.mjs β 7 principles, 8 prohibitions, ERE-5 |
| Language model | sovlm.mjs β Kneser-Ney n-gram, zero GPU |
| WebLLM | @mlc-ai/web-llm β Phi-3 Mini via WebGPU |
| Quantum entropy | quantum.mjs β ANU QRNG + CSPRNG fallback |
| WORM chain | worm.mjs β SHA-256 sealed, localStorage |
| pocketlearn | pocketlearn.mjs β ILP co-occurrence in browser |
| git-command-center | gitdos.js β full git DOS terminal |
**Ξ© = TRUST β§ CODE**
|