Constitutional Intelligence Across All Major Platforms
ETHRAEON's Constitutional Cognitive Infrastructure is designed for cross-platform deployment with consistent governance across all environments. Constitutional constraints, EDG audit trails, and HITL checkpoints are preserved regardless of deployment target.
| Platform | Status | NEXUS | TRINITY | LYRA | KAIROS | EDG | Notes |
|---|---|---|---|---|---|---|---|
| macOS | Production | ✓ | ✓ | ✓ | ✓ | ✓ | Full support, M1/M2/M3 optimized |
| Linux | Production | ✓ | ✓ | ✓ | ✓ | ✓ | Ubuntu 22.04+, RHEL 9+, Debian 12+ |
| Docker | Production | ✓ | ✓ | ✓ | ✓ | ✓ | Containerized deployment, K8s ready |
| Web (Browser) | Beta | ✓ | ✓ | Partial | ✓ | ✓ | WebAssembly + API gateway, limited memory |
| iOS | Beta | API | API | Remote | API | ✓ | Swift SDK, remote NEXUS orchestration |
| Android | Planned | API | API | Remote | API | ✓ | Kotlin SDK, Q3 2026 target |
| Windows | Planned | Partial | Partial | Partial | Partial | ✓ | WSL2 recommended, native support Q4 2026 |
| Embedded/IoT | Research | — | — | — | — | Partial | Edge AI research, limited governance |
Legend: ✓ = Full support, API = Remote API only, Partial = Limited capabilities, — = Not supported
# Authenticate
curl -X POST https://api.ethraeon.com/auth/token \
-H "Content-Type: application/json" \
-d '{"client_id": "YOUR_CLIENT_ID", "client_secret": "YOUR_SECRET"}'
# Execute agent task
curl -X POST https://api.ethraeon.com/nexus/execute \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"agent": "TELL_ME",
"task": {
"type": "research",
"query": "Latest research on constitutional AI governance"
}
}'
# Query EDG provenance
curl -X GET https://api.ethraeon.com/edg/{edg_hash} \
-H "Authorization: Bearer YOUR_TOKEN"
from ethraeon import ETHRAEONClient
# Initialize client
client = ETHRAEONClient(
client_id="YOUR_CLIENT_ID",
client_secret="YOUR_SECRET",
api_base="https://api.ethraeon.com"
)
# Execute task
result = await client.nexus.execute(
agent="TELL_ME",
task={"type": "research", "query": "Constitutional AI governance"}
)
# Verify EDG
edg_valid = await client.edg.verify(result.edg_hash)
print(f"Result verified: {edg_valid}")
AES-256-GCM at rest (all platforms). TLS 1.3 in transit. Platform-specific key management: macOS Keychain, Linux TPM, iOS Secure Enclave, Android KeyStore.
Multi-factor authentication required. Role-based access control (RBAC). Constitutional authorization (AC-1/AC-2). Zero Trust architecture via Cloudflare ZeroTrust.
EDG audit trail preserved across all platforms. SHA256 verification available. Immutable storage (7-year retention). WORM-compatible for compliance.
VPN required for hybrid deployments. mTLS for service-to-service. Rate limiting + DDoS protection. IP whitelisting for enterprise deployments.
GDPR compliant (data sovereignty). HIPAA eligible (BAA available). SOC 2 Type II certified (Q3 2026). ISO 27001 compliant.
T-level rule enforcement across platforms. HITL gates preserved. No autonomous operation. Cryptographic provenance always available.
| Platform | Agent Invocation (p95) | EDG Emission (p95) | Memory Write (p95) | Throughput (req/sec) |
|---|---|---|---|---|
| macOS (M2 Max) | 45ms | 8ms | 12ms | 2,500 |
| Linux (64-core) | 32ms | 6ms | 9ms | 5,000 |
| Docker (8-core) | 55ms | 10ms | 15ms | 1,800 |
| Web (Browser) | 120ms | 25ms | — | 500 |
| iOS (API-backed) | 200ms | 30ms | — | 200 |
Benchmarks measured on production workloads (Jan 2026). Network latency not included for API-backed platforms.