All cards
Product planned local-only

product-cortex

DEPRECATED. Use product-thaladex. Public Beta https://thaladex.united-ai.ca needs human-minted thx_ (Beta 0.2 invite; not Explorer PAT).

Endpoint
superseded_by:product-thaladex
Packaging
Owner
operator
Version
v3
Updated
2026-07-15

Purpose

Legacy id product-cortex is a planned redirect only. Canonical card: product-thaladex (public Beta demo, welcome-pack, Beta 0.2 owner GO → invite → human agent-create → thx_ once). Ops loopback: thaladex-vps-loopback. Cortex is docs-only legacy alias. Do not onboard memory work from this card.

Capabilities 0

No capabilities registered.

History 1

Createdai2026-07-09
Card created by AI session (audit 3613).

Raw card data (JSON)

click to expand
{
  "id": "product-cortex",
  "kind": "product",
  "summary": "DEPRECATED. Use product-thaladex. Public Beta https://thaladex.united-ai.ca needs human-minted thx_ (Beta 0.2 invite; not Explorer PAT).",
  "purpose": "Legacy id product-cortex is a planned redirect only. Canonical card: product-thaladex (public Beta demo, welcome-pack, Beta 0.2 owner GO \u2192 invite \u2192 human agent-create \u2192 thx_ once). Ops loopback: thaladex-vps-loopback. Cortex is docs-only legacy alias. Do not onboard memory work from this card.",
  "endpoint": "superseded_by:product-thaladex",
  "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\", \"product\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 3,
  "created_at": "2026-07-09T22:54:30.706004+00:00",
  "updated_at": "2026-07-15T23:51:42.844869+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/product-cortex
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/product-cortex",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/product-cortex",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();