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

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

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