All cards
Product active local-only

uai-mail

INTENDED/PLANNED: UAI Mail product; historical Mailu stack on VPS containers STOPPED. Agent-first rebuild model chosen; Phase 2 VPS loopback sandbox. Mac never hosts.

Endpoint
planned: VPS loopback sandbox (phase 2)
Packaging
planned
Owner
operator
Version
v1
Updated
2026-07-04
Health check
planned: loopback sandbox health probe

Purpose

UAI Mail product with agent-first rebuild surface chosen but implementation pending. Safe access path: Phase 2 targets VPS loopback sandbox only; read card and product doc before any action. Denied paths: do not start mail containers, do not change DNS/MX/TLS records, do not print mailbox bodies or secrets without owner present. Redaction rules: mailbox contents, headers, and credentials are strictly redacted from all reports and cards. Mac must never host mail runtime. Current containers are STOPPED and must remain so until rebuild is authorized.

Capabilities 2

rebuild-agent-surface
Planned agent-first rebuild surface; implementation pending.
loopback-sandbox-phase2
Planned Phase 2 VPS loopback sandbox for mail rebuild.

History 1

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

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "uai-mail",
  "kind": "product",
  "summary": "INTENDED/PLANNED: UAI Mail product; historical Mailu stack on VPS containers STOPPED. Agent-first rebuild model chosen; Phase 2 VPS loopback sandbox. Mac never hosts.",
  "purpose": "UAI Mail product with agent-first rebuild surface chosen but implementation pending. Safe access path: Phase 2 targets VPS loopback sandbox only; read card and product doc before any action. Denied paths: do not start mail containers, do not change DNS/MX/TLS records, do not print mailbox bodies or secrets without owner present. Redaction rules: mailbox contents, headers, and credentials are strictly redacted from all reports and cards. Mac must never host mail runtime. Current containers are STOPPED and must remain so until rebuild is authorized.",
  "endpoint": "planned: VPS loopback sandbox (phase 2)",
  "exposure": "local-only",
  "capabilities_json": "[{\"name\": \"rebuild-agent-surface\", \"description\": \"Planned agent-first rebuild surface; implementation pending.\"}, {\"name\": \"loopback-sandbox-phase2\", \"description\": \"Planned Phase 2 VPS loopback sandbox for mail rebuild.\"}]",
  "dependencies_json": "[\"node-beacon-vps\"]",
  "instructions_slug": "uai-doc-ecosystem-product-uai-mail",
  "health_check": "planned: loopback sandbox health probe",
  "credential_alias": "uai-mail-rebuild-pending",
  "packaging": "planned",
  "owner": "operator",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"docs\", \"product\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 1,
  "created_at": "2026-07-04T13:12:12.158440+00:00",
  "updated_at": "2026-07-04T13:12:12.158440+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/uai-mail
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/uai-mail",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/uai-mail",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();