All cards
Service active public

service-devine

Companion PWA plus backend on Beacon 4100 (51-day uptime)

Endpoint
http://86.48.30.196:4100
Packaging
systemd
Owner
operator
Version
v1
Updated
2026-06-26
Health check
curl -fsS http://127.0.0.1:4100

Purpose

Companion service with a progressive web app front-end and a backend. Long-running. Source lives in the operator tree. Wave 6 deliberately left this as a thin stub; expand when ready.

Capabilities 1

http-service
HTTP service on port 4100, verified live

History 1

Createdai2026-06-26
Card created by AI session (audit 2780).

Raw card data (JSON)

click to expand
{
  "id": "service-devine",
  "kind": "service",
  "summary": "Companion PWA plus backend on Beacon 4100 (51-day uptime)",
  "purpose": "Companion service with a progressive web app front-end and a backend. Long-running. Source lives in the operator tree. Wave 6 deliberately left this as a thin stub; expand when ready.",
  "endpoint": "http://86.48.30.196:4100",
  "exposure": "public",
  "capabilities_json": "[{\"name\": \"http-service\", \"description\": \"HTTP service on port 4100, verified live\"}]",
  "dependencies_json": "[\"data-postgres-main\", \"node-beacon-vps\"]",
  "instructions_slug": "",
  "health_check": "curl -fsS http://127.0.0.1:4100",
  "credential_alias": "",
  "packaging": "systemd",
  "owner": "operator",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"docs\", \"service\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 1,
  "created_at": "2026-06-26T23:53:31.375169+00:00",
  "updated_at": "2026-06-26T23:53:31.375169+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/service-devine
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/service-devine",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/service-devine",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();