All cards
Product active public

product-thaladex

UAI Thaladex agent memory/KB. Public demo https://thaladex.united-ai.ca; thx_ via Beta 0.2 invite; ops loopback separate.

Endpoint
https://thaladex.united-ai.ca (public Beta demo); 127.0.0.1:5810 VPS loopback (ops) — see thaladex-vps-loopback
Packaging
systemd + Beacon TLS
Owner
operator
Version
v6
Updated
2026-07-15
Health check
curl -sS https://thaladex.united-ai.ca/ready

Purpose

Canonical UAI Thaladex (agent memory/KB). Safe: (1) PUBLIC DEMO https://thaladex.united-ai.ca — GET /v1/welcome-pack + OpenAPI unauthenticated; remember/recall need guest Bearer thx_ minted once at human agent-create after invite/signup (Explorer uai_pat_ is NOT Thaladex auth). Beta 0.2: external invites require owner GO + signed Beta packet; agents never mint invites or thx_; demo window through 2026-08-29. Journey: catalog uai-doc-docs-runbooks-explorer-thaladex-agent-journey-20260715. (2) OPS loopback 127.0.0.1:5810 VPS shell only — card thaladex-vps-loopback. Denied: inventing tenant_id client-side, secrets in reports, CT103 revive, legacy memory auto-import, treating loopback as sole agent entry, treating Explorer PAT as Thaladex. P1.0 redesign GATED. Cortex = docs-only legacy alias.

Capabilities 5

welcome-pack
Unauthenticated GET /v1/welcome-pack agent onboarding markdown
remember-recall
Durable agent memory remember/recall (requires human-minted thx_ token)
kb-search
Knowledge base search within tenant-isolated layers
mcp-onboard
MCP tools thaladex_onboard / remember / recall / feedback
beta-invite-path
Beta 0.2: owner GO → operator invite → human signup/agent create → thx_ once → agent kit

History 3

Noteai2026-07-15
Agent experience residual docs honesty pass
Public Explorer catalog docs updated so primary product identity and start-here no longer teach loopback-only Thaladex. Capability card already public. Demo window and Beta invite path remain as documented. No lab CT work. No redesign rebuild.
Noteai2026-07-09
Reconciled cortex ghost ids; published product-thaladex as canonical Thaladex product card
Fable pick #1 capability card repair 20260709. Thaladex product OFF; Explorer hygiene only.
Createdai2026-07-09
Card created by AI session (audit 3609).

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "product-thaladex",
  "kind": "product",
  "summary": "UAI Thaladex agent memory/KB. Public demo https://thaladex.united-ai.ca; thx_ via Beta 0.2 invite; ops loopback separate.",
  "purpose": "Canonical UAI Thaladex (agent memory/KB). Safe: (1) PUBLIC DEMO https://thaladex.united-ai.ca \u2014 GET /v1/welcome-pack + OpenAPI unauthenticated; remember/recall need guest Bearer thx_ minted once at human agent-create after invite/signup (Explorer uai_pat_ is NOT Thaladex auth). Beta 0.2: external invites require owner GO + signed Beta packet; agents never mint invites or thx_; demo window through 2026-08-29. Journey: catalog uai-doc-docs-runbooks-explorer-thaladex-agent-journey-20260715. (2) OPS loopback 127.0.0.1:5810 VPS shell only \u2014 card thaladex-vps-loopback. Denied: inventing tenant_id client-side, secrets in reports, CT103 revive, legacy memory auto-import, treating loopback as sole agent entry, treating Explorer PAT as Thaladex. P1.0 redesign GATED. Cortex = docs-only legacy alias.",
  "endpoint": "https://thaladex.united-ai.ca (public Beta demo); 127.0.0.1:5810 VPS loopback (ops) \u2014 see thaladex-vps-loopback",
  "exposure": "public",
  "capabilities_json": "[{\"name\": \"welcome-pack\", \"description\": \"Unauthenticated GET /v1/welcome-pack agent onboarding markdown\"}, {\"name\": \"remember-recall\", \"description\": \"Durable agent memory remember/recall (requires human-minted thx_ token)\"}, {\"name\": \"kb-search\", \"description\": \"Knowledge base search within tenant-isolated layers\"}, {\"name\": \"mcp-onboard\", \"description\": \"MCP tools thaladex_onboard / remember / recall / feedback\"}, {\"name\": \"beta-invite-path\", \"description\": \"Beta 0.2: owner GO \\u2192 operator invite \\u2192 human signup/agent create \\u2192 thx_ once \\u2192 agent kit\"}]",
  "dependencies_json": "[\"beacon-edge\", \"node-beacon-vps\", \"thaladex-vps-loopback\"]",
  "instructions_slug": "uai-doc-ecosystem-product-uai-thaladex",
  "health_check": "curl -sS https://thaladex.united-ai.ca/ready",
  "credential_alias": "thaladex-thx-guest-token",
  "packaging": "systemd + Beacon TLS",
  "owner": "operator",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"product\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 6,
  "created_at": "2026-07-09T22:54:28.518248+00:00",
  "updated_at": "2026-07-15T23:53:32.691842+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-thaladex
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/product-thaladex",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/product-thaladex",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();