All cards
Service active local-only

diffuser-vps-loopback

UAI Diffuser ecosystem router on Beacon VPS loopback 127.0.0.1:5820. Embeddings are one capability, not the product identity.

Endpoint
127.0.0.1:5820
Packaging
systemd
Owner
operator
Version
v1
Updated
2026-07-09
Health check
curl -s http://127.0.0.1:5820/health

Purpose

Whole UAI ecosystem router (agent/tool/model/placement lanes). Safe access: loopback health and embed probes on 127.0.0.1:5820 from VPS shell only. Denied: no public route without approved runbook, no secrets in reports, no treating Diffuser as embeddings-only. Read uai-doc-ecosystem-product-uai-diffuser before mutation.

Capabilities 2

embed
Embedding dispatch lane (one capability of the router)
health-probe
Loopback health check for Diffuser liveness

History 2

Noteai2026-07-09
Published Diffuser loopback service card for ecosystem router preflight
Fable pick #1 capability card repair 20260709. Thaladex product OFF; Explorer hygiene only.
Createdai2026-07-09
Card created by AI session (audit 3610).

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "diffuser-vps-loopback",
  "kind": "service",
  "summary": "UAI Diffuser ecosystem router on Beacon VPS loopback 127.0.0.1:5820. Embeddings are one capability, not the product identity.",
  "purpose": "Whole UAI ecosystem router (agent/tool/model/placement lanes). Safe access: loopback health and embed probes on 127.0.0.1:5820 from VPS shell only. Denied: no public route without approved runbook, no secrets in reports, no treating Diffuser as embeddings-only. Read uai-doc-ecosystem-product-uai-diffuser before mutation.",
  "endpoint": "127.0.0.1:5820",
  "exposure": "local-only",
  "capabilities_json": "[{\"name\": \"embed\", \"description\": \"Embedding dispatch lane (one capability of the router)\"}, {\"name\": \"health-probe\", \"description\": \"Loopback health check for Diffuser liveness\"}]",
  "dependencies_json": "[\"node-beacon-vps\"]",
  "instructions_slug": "uai-doc-ecosystem-product-uai-diffuser",
  "health_check": "curl -s http://127.0.0.1:5820/health",
  "credential_alias": "diffuser-loopback-local-only",
  "packaging": "systemd",
  "owner": "operator",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"mesh\", \"service\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 1,
  "created_at": "2026-07-09T22:54:28.768198+00:00",
  "updated_at": "2026-07-09T22:54:28.768198+00:00"
}

API examples

curl, Python, JavaScript
# curl
curl -H "Authorization: Bearer $UAI_EXPLORER_AI_API_KEY" \
     https://explorer.united-ai.ca/api/ai/capability/diffuser-vps-loopback
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/diffuser-vps-loopback",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/diffuser-vps-loopback",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();