All cards
Service active public

cadence-nuc-lab-controller

LIVE: Cadence v6 on NUC-IPEX. Public cadence.united-ai.ca via Beacon+VPS tunnel :8786. Residuals: memory-bridge Thaladex gap; RO director-mirror; Mac NUC jump DOWN.

Endpoint
https://cadence.united-ai.ca · NUC 127.0.0.1:8786-8791 · VPS tunnel 127.0.0.1:8786 only
Packaging
nuc-scheduled-task+beacon-tunnel
Owner
Version
v2
Updated
2026-07-15
Health check
curl -fsS https://cadence.united-ai.ca/ready

Purpose

Authoritative Cadence runtime is NUC-IPEX (task CadenceLabController, C:\Cadence-v6). NUC ports: :8786 core, :8787 conductor, :8788 tool-broker, :8789 worker-router, :8790 memory-bridge, :8791 sync. Public path: Beacon cadence.united-ai.ca → VPS 127.0.0.1:8786 via cadence-nuc-tunnel (dial-home :22099). Only :8786 tunnelled; siblings NUC-local. Safe: GET /ready /health on public URL. Denied: Mac never hosts; not Director/Forge/CT hosts; Cadence UP ≠ Diffuser Pool I joined. Residuals (not dial-home DOWN): memory-bridge cortex_status=unavailable (expects NUC :5810); write/dispatch not proven (read-only-director-mirror). Redact jobs.sqlite/task ids. Mac→NUC jump may be DOWN — use Beacon. Card-read-first before mutate.

Capabilities 3

cadence-runtime
Live Cadence v6 execution runtime on NUC lab controller (six local services).
public-edge-core
Beacon-fronted public core via VPS local-forward of NUC :8786 only.
jobs-preserve-authority
jobs.sqlite authority colocated with NUC Cadence (job_count observed on ready).

History 1

Createdai2026-07-04
Card created by AI session (audit 3226).

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "cadence-nuc-lab-controller",
  "kind": "service",
  "summary": "LIVE: Cadence v6 on NUC-IPEX. Public cadence.united-ai.ca via Beacon+VPS tunnel :8786. Residuals: memory-bridge Thaladex gap; RO director-mirror; Mac NUC jump DOWN.",
  "purpose": "Authoritative Cadence runtime is NUC-IPEX (task CadenceLabController, C:\\Cadence-v6). NUC ports: :8786 core, :8787 conductor, :8788 tool-broker, :8789 worker-router, :8790 memory-bridge, :8791 sync. Public path: Beacon cadence.united-ai.ca \u2192 VPS 127.0.0.1:8786 via cadence-nuc-tunnel (dial-home :22099). Only :8786 tunnelled; siblings NUC-local. Safe: GET /ready /health on public URL. Denied: Mac never hosts; not Director/Forge/CT hosts; Cadence UP \u2260 Diffuser Pool I joined. Residuals (not dial-home DOWN): memory-bridge cortex_status=unavailable (expects NUC :5810); write/dispatch not proven (read-only-director-mirror). Redact jobs.sqlite/task ids. Mac\u2192NUC jump may be DOWN \u2014 use Beacon. Card-read-first before mutate.",
  "endpoint": "https://cadence.united-ai.ca \u00b7 NUC 127.0.0.1:8786-8791 \u00b7 VPS tunnel 127.0.0.1:8786 only",
  "exposure": "public",
  "capabilities_json": "[{\"name\": \"cadence-runtime\", \"description\": \"Live Cadence v6 execution runtime on NUC lab controller (six local services).\"}, {\"name\": \"public-edge-core\", \"description\": \"Beacon-fronted public core via VPS local-forward of NUC :8786 only.\"}, {\"name\": \"jobs-preserve-authority\", \"description\": \"jobs.sqlite authority colocated with NUC Cadence (job_count observed on ready).\"}]",
  "dependencies_json": "[\"beacon-edge\"]",
  "instructions_slug": "uai-doc-ecosystem-product-cadence-v6",
  "health_check": "curl -fsS https://cadence.united-ai.ca/ready",
  "credential_alias": "cadence-public-edge",
  "packaging": "nuc-scheduled-task+beacon-tunnel",
  "owner": "",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"cadence\", \"capability-card\", \"docs\", \"service\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 2,
  "created_at": "2026-07-04T13:12:11.764777+00:00",
  "updated_at": "2026-07-15T22:45:25.264767+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/cadence-nuc-lab-controller
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/cadence-nuc-lab-controller",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/cadence-nuc-lab-controller",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();