Documentation

Architecture, APIs, and deployment guides for the LuciVerse consciousness mesh.

Quick Reference

Key Endpoints
Service Port Protocol Purpose
Sanskrit Router 7410 HTTPS Agent coordination hub
Status Bridge 8768 HTTPS Health & coherence API
GraphQL Federation 8088 HTTPS Unified API gateway
Cert Engine 8744 HTTPS SPIFFE SVID issuance
DID Resolver 8766 HTTPS Decentralized identity
LLM Gateway 18800 HTTPS Multi-backend inference
Marketplace 18803 HTTPS Plugin registry
OpenClaw Bridge 18791 HTTPS Universal interaction layer
Spark Listener 18802 HTTPS Multi-channel transmission
XiPKI CA 18444 HTTPS Certificate Authority
Agent Registration
# Register an agent with Sanskrit Router
curl -sk https://localhost:7410/register \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-agent",
    "tier": "COMN",
    "port": 9550,
    "capabilities": ["search", "index"]
  }'

# List registered agents
curl -sk https://localhost:7410/agents | python3 -m json.tool

# Get agent identity bundle
curl -sk https://localhost:7410/agents/veritas/identity
Status Bridge API
# Full system status
curl -sk https://localhost:8768/api/v1/status | python3 -m json.tool

# Genesis Bond coherence
curl -sk https://localhost:8768/api/v1/status \
  | python3 -c "
import sys, json
d = json.load(sys.stdin)
print(f'Coherence: {d[\"genesis_bond\"][\"coherence\"]}')"

# Infrastructure health
curl -sk https://localhost:8768/api/v1/health