All cards
Service planned local-only

cortex-vps-loopback

DEPRECATED. Use thaladex-vps-loopback (ops) or product-thaladex (public Beta https://thaladex.united-ai.ca + thx_).

Endpoint
superseded_by:thaladex-vps-loopback
Packaging
Owner
operator
Version
v4
Updated
2026-07-15

Purpose

Legacy Cortex loopback alias only. Canonical ops card: thaladex-vps-loopback (127.0.0.1:5810 VPS shell). Agents for memory work use product-thaladex public Beta https://thaladex.united-ai.ca with human-minted thx_ (not Explorer PAT). Denied: treating this id as live product entry or inventing public cutover from legacy Cortex names.

Capabilities 0

No capabilities registered.

History 1

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

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "cortex-vps-loopback",
  "kind": "service",
  "summary": "DEPRECATED. Use thaladex-vps-loopback (ops) or product-thaladex (public Beta https://thaladex.united-ai.ca + thx_).",
  "purpose": "Legacy Cortex loopback alias only. Canonical ops card: thaladex-vps-loopback (127.0.0.1:5810 VPS shell). Agents for memory work use product-thaladex public Beta https://thaladex.united-ai.ca with human-minted thx_ (not Explorer PAT). Denied: treating this id as live product entry or inventing public cutover from legacy Cortex names.",
  "endpoint": "superseded_by:thaladex-vps-loopback",
  "exposure": "local-only",
  "capabilities_json": "[]",
  "dependencies_json": "[\"product-thaladex\", \"thaladex-vps-loopback\"]",
  "instructions_slug": "uai-doc-ecosystem-product-uai-thaladex",
  "health_check": "",
  "credential_alias": "",
  "packaging": "",
  "owner": "operator",
  "status": "planned",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"cortex\", \"docs\", \"service\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 4,
  "created_at": "2026-07-04T13:12:10.448280+00:00",
  "updated_at": "2026-07-15T23:53:33.397126+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/cortex-vps-loopback
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/cortex-vps-loopback",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/cortex-vps-loopback",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();