All cards
Workstream active local-only

mac-never-hosts

Policy: Mac never hosts UAI product runtimes. Mac is for docs, Obsidian, archives, and agent workstations only.

Endpoint
policy:mac-workstation
Packaging
policy
Owner
operator
Version
v1
Updated
2026-07-04
Health check
policy-card

Purpose

Standing policy workstream enforcing mac_hosting=never. Safe access path: use Mac for documentation, Obsidian vault, archives, and agent workstation tasks. Denied paths: no Docker or product runtimes, no listeners, no service daemons for any UAI product on Mac. Redaction rules: standard; no Mac-local credential material in cards. This is a binding policy card referenced by other cards and the operator bio. Any plan proposing Mac hosting for a UAI product must be rejected and reported as policy violation.

Capabilities 1

policy-enforcement
Enforces mac_hosting=never across all UAI product plans.

History 1

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

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "mac-never-hosts",
  "kind": "workstream",
  "summary": "Policy: Mac never hosts UAI product runtimes. Mac is for docs, Obsidian, archives, and agent workstations only.",
  "purpose": "Standing policy workstream enforcing mac_hosting=never. Safe access path: use Mac for documentation, Obsidian vault, archives, and agent workstation tasks. Denied paths: no Docker or product runtimes, no listeners, no service daemons for any UAI product on Mac. Redaction rules: standard; no Mac-local credential material in cards. This is a binding policy card referenced by other cards and the operator bio. Any plan proposing Mac hosting for a UAI product must be rejected and reported as policy violation.",
  "endpoint": "policy:mac-workstation",
  "exposure": "local-only",
  "capabilities_json": "[{\"name\": \"policy-enforcement\", \"description\": \"Enforces mac_hosting=never across all UAI product plans.\"}]",
  "dependencies_json": "[]",
  "instructions_slug": "uai-doc-governance-uai-agent-protocol-vnext",
  "health_check": "policy-card",
  "credential_alias": "none",
  "packaging": "policy",
  "owner": "operator",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"docs\", \"uai-explorer\", \"workstream\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 1,
  "created_at": "2026-07-04T13:12:10.088461+00:00",
  "updated_at": "2026-07-04T13:12:10.088461+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/mac-never-hosts
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/mac-never-hosts",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/mac-never-hosts",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();