Cross-Platform Support

Constitutional Intelligence Across All Major Platforms

Platform Status Matrix

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

Deployment Models

Local / On-Premise

  • Full system deployed on customer infrastructure
  • Complete data sovereignty
  • Air-gapped operation supported
  • macOS, Linux, Docker supported
  • Minimum: 8-core CPU, 16GB RAM, 100GB SSD

VPS / Cloud

  • Managed deployment on cloud providers (AWS, Azure, GCP)
  • Auto-scaling based on load
  • High availability (99.9% SLA)
  • Regional data residency compliance
  • Terraform/CloudFormation templates provided

Hybrid

  • Sensitive operations on-premise (LYRA, CONSTELLATION)
  • Compute-heavy operations cloud (TRINITY, NEXUS)
  • VPN/Direct Connect for secure communication
  • Constitutional validation at both layers
  • Compliance with data locality regulations

Mobile (iOS/Android)

  • Native SDK for mobile apps
  • Remote NEXUS orchestration via secure API
  • Offline-first with eventual sync
  • Biometric authentication integration
  • Limited agent capabilities (API-backed)

Integration Guides

REST API
Python SDK
TypeScript SDK
Swift SDK

REST API Example (Universal)

# 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"

Python SDK Example

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}")

Security Posture Per Platform

Encryption

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.

Access Control

Multi-factor authentication required. Role-based access control (RBAC). Constitutional authorization (AC-1/AC-2). Zero Trust architecture via Cloudflare ZeroTrust.

Audit Trails

EDG audit trail preserved across all platforms. SHA256 verification available. Immutable storage (7-year retention). WORM-compatible for compliance.

Network Security

VPN required for hybrid deployments. mTLS for service-to-service. Rate limiting + DDoS protection. IP whitelisting for enterprise deployments.

Compliance

GDPR compliant (data sovereignty). HIPAA eligible (BAA available). SOC 2 Type II certified (Q3 2026). ISO 27001 compliant.

Constitutional Guarantees

T-level rule enforcement across platforms. HITL gates preserved. No autonomous operation. Cryptographic provenance always available.

Performance Benchmarks

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.