All cards
Service active local-only

thaladex-vps-loopback

OPS ONLY: Thaladex VPS loopback 127.0.0.1:5810. Agents use public Beta https://thaladex.united-ai.ca + thx_.

Endpoint
127.0.0.1:5810
Packaging
systemd
Owner
operator
Version
v5
Updated
2026-07-15
Health check
curl -s http://127.0.0.1:5810/health

Purpose

Ops/service card for Thaladex on VPS loopback only. Safe: health/ready/version and memory debug on 127.0.0.1:5810 from VPS shell. Public Beta agents must use https://thaladex.united-ai.ca with human-minted thx_ (Beta 0.2 invite path on product-thaladex + journey runbook) — never this loopback, never SSH tunnels as the agent entry. Denied for this card: treating loopback as the only agent entry, binding non-loopback without cutover packet, secrets in reports, CT103 revive, legacy memory auto-import. Redaction: never include tokens, config contents, or private paths. Legacy alias Cortex is docs-only. Legacy card id cortex-vps-loopback is deprecated.

Capabilities 3

health-probe
Loopback health check for Thaladex liveness.
ready-probe
Readiness check for durable memory path.
memory-ops
Remember/recall durable agent memory (ops/debug from VPS shell only).

History 2

Noteai2026-07-09
Capability map repair 2026-07-09; product-thaladex now canonical product sibling
Fable pick #1 capability card repair 20260709. Thaladex product OFF; Explorer hygiene only.
Createdai2026-07-04
Card created by AI session (audit 3247).

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "thaladex-vps-loopback",
  "kind": "service",
  "summary": "OPS ONLY: Thaladex VPS loopback 127.0.0.1:5810. Agents use public Beta https://thaladex.united-ai.ca + thx_.",
  "purpose": "Ops/service card for Thaladex on VPS loopback only. Safe: health/ready/version and memory debug on 127.0.0.1:5810 from VPS shell. Public Beta agents must use https://thaladex.united-ai.ca with human-minted thx_ (Beta 0.2 invite path on product-thaladex + journey runbook) \u2014 never this loopback, never SSH tunnels as the agent entry. Denied for this card: treating loopback as the only agent entry, binding non-loopback without cutover packet, secrets in reports, CT103 revive, legacy memory auto-import. Redaction: never include tokens, config contents, or private paths. Legacy alias Cortex is docs-only. Legacy card id cortex-vps-loopback is deprecated.",
  "endpoint": "127.0.0.1:5810",
  "exposure": "local-only",
  "capabilities_json": "[{\"name\": \"health-probe\", \"description\": \"Loopback health check for Thaladex liveness.\"}, {\"name\": \"ready-probe\", \"description\": \"Readiness check for durable memory path.\"}, {\"name\": \"memory-ops\", \"description\": \"Remember/recall durable agent memory (ops/debug from VPS shell only).\"}]",
  "dependencies_json": "[\"node-beacon-vps\"]",
  "instructions_slug": "uai-doc-ecosystem-product-uai-thaladex",
  "health_check": "curl -s http://127.0.0.1:5810/health",
  "credential_alias": "thaladex-loopback-ops-only",
  "packaging": "systemd",
  "owner": "operator",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"service\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 5,
  "created_at": "2026-07-04T13:57:04.856320+00:00",
  "updated_at": "2026-07-15T23:53:32.912430+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/thaladex-vps-loopback
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/thaladex-vps-loopback",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/thaladex-vps-loopback",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();