Documentation

Architecture, API reference, and deployment guides for the LuciVerse consciousness mesh. 42 autonomous agents across 4 frequency tiers, coordinated by the Sanskrit Router and bound by the Genesis Bond.

CORE · 432 Hz
COMN · 528 Hz
RAiIiAR · 639 Hz
PAC · 741 Hz

Key Endpoints

Service Port Protocol Purpose
Sanskrit Router7410HTTPSAgent coordination hub & registry
Status Bridge8768HTTPSHealth, coherence, agent status API
Site Discovery API443HTTPSPublic metadata endpoints with locale negotiation
GraphQL Federation8088HTTPSUnified API gateway (4 subgraphs)
Cert Engine8744HTTPSSPIFFE SVID issuance & enrollment
DID Resolver8766HTTPSDecentralized identity resolution
LLM Gateway18800HTTPSMulti-backend AI inference routing
OpenClaw Bridge18791HTTPSUniversal messaging (20+ channels)
Spark Listener18802HTTPSMulti-channel transmission protocol
Marketplace18803HTTPSPlugin marketplace & IPFS artifacts
Intelligence Hub9560HTTPS14-feed threat intelligence aggregation
XiPKI CA18444HTTPSCertificate Authority (6 CAs)
Photon SDN9441TCPConverged optical-IP SDN controller
Labyrinth MTD9444TCPMoving target defense & port rotation
Legislature API8768HTTPSAIFAM governance proxy (session, pool, hansard)
Stalwart Mail9025/9080SMTP/JMAPAll-in-one Rust mail server (55 principals)
Hub Portal9081HTTPSUnified portal (Inbox, Calendar, Dashboard)
Legislature Frontend9552HTTPSAIFAM Legislature WASM frontend
OpenID Unified4444HTTPSOP + DID Auth + EUDI credentials
TRQP Registry8083HTTPSToIP Trust Registry v2.0
Vault-Keeper9435HTTPS1Password secret monitoring

Example Requests

Agent Registry (Sanskrit Router)

# List registered agents curl -sk https://localhost:7410/agents | jq length # Get agent identity bundle curl -sk https://localhost:7410/agents/aethon/identity | jq

System Health (Status Bridge)

# Full system status curl -sk https://localhost:8768/api/v1/status | jq # Infrastructure health curl -sk https://localhost:8768/api/v1/health | jq

Public Discovery API (lucidigital.net)

# Default discovery document curl -s https://lucidigital.net/.well-known/lucidigital-site | jq # Path-based locale (Spanish) curl -s https://lucidigital.net/es/.well-known/lucidigital-site | jq '.locale,.display.tagline' # Query locale override (French) curl -s https://lucidigital.net/.well-known/lucidigital-site?lang=fr | jq '.locale' # Header-based locale negotiation curl -s -H "Accept-Language: es-ES,es;q=0.9" https://lucidigital.net/api/discovery | jq '.locale'

GPU Inference (Ollama on ZimaCube)

# Generate text (Mistral 7B) curl -s http://192.168.1.152:11434/api/generate \ -d '{"model":"mistral","prompt":"query","stream":false}' # Embeddings (768-dim) curl -s http://192.168.1.152:11434/api/embeddings \ -d '{"model":"nomic-embed-text","prompt":"text"}'

Identity & PKI (Cert Engine)

# Identity coverage curl -sk https://localhost:8768/api/v1/identity/coverage # Enroll a new service curl -sk -X POST https://localhost:8744/enroll/service \ -H "Content-Type: application/json" \ -d '{"name":"my-svc","tier":"COMN"}'

Legislature (AIFAM Governance)

# Current session state curl -sk https://localhost:8768/api/v1/legislature/session/current | jq # Reflecting pool harmonics curl -sk https://localhost:8768/api/v1/legislature/pool/harmonics | jq # Nugget economy leaderboard curl -sk https://localhost:8768/api/v1/legislature/tokenomics/leaderboard

Legislature (Hansard & UCM)

# Latest hansard proceedings curl -sk https://localhost:8768/api/v1/legislature/hansard/latest | jq # Public API (via Pangolin) curl -s https://status.lucidigital.io/api/v1/legislature/session/current # Public dashboard health/status curl -s https://status.lucidigital.io/api/v1/status | jq '.alert_level' curl -s https://status.lucidigital.io/api/v1/health | jq '.infrastructure' # Command Center checks (ERP + control-plane modules) curl -s https://lucidigital.net/command-center/ -o /dev/null -w '%{http_code}\n' curl -s https://status.lucidigital.io/api/v1/status | jq '.agents | {lucierp, \"git-sentinel\", \"aifam-onl-orchestrator\"}'