All cards
Service active public

service-skipper

Newfoundland AI chatbot on Beacon 3456, part of Finance Wing B1 plumbing

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

Purpose

Newfoundland AI chatbot service. Built in Rust with Axum. Part of the UAI Finance Wing revenue plumbing. Refreshes live context on a roughly 30-minute loop. Has a Stripe billing integration.

Capabilities 3

http-service
HTTP service on port 3456, verified live
live-context-refresh
Cron-like context refresh every 30 minutes
stripe-billing
Stripe billing integration

History 1

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

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "service-skipper",
  "kind": "service",
  "summary": "Newfoundland AI chatbot on Beacon 3456, part of Finance Wing B1 plumbing",
  "purpose": "Newfoundland AI chatbot service. Built in Rust with Axum. Part of the UAI Finance Wing revenue plumbing. Refreshes live context on a roughly 30-minute loop. Has a Stripe billing integration.",
  "endpoint": "http://86.48.30.196:3456",
  "exposure": "public",
  "capabilities_json": "[{\"name\": \"http-service\", \"description\": \"HTTP service on port 3456, verified live\"}, {\"name\": \"live-context-refresh\", \"description\": \"Cron-like context refresh every 30 minutes\"}, {\"name\": \"stripe-billing\", \"description\": \"Stripe billing integration\"}]",
  "dependencies_json": "[\"node-beacon-vps\"]",
  "instructions_slug": "",
  "health_check": "curl -fsS http://127.0.0.1:3456",
  "credential_alias": "skipper-stripe-env",
  "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.867106+00:00",
  "updated_at": "2026-06-26T23:53:31.867106+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-skipper
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/service-skipper",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/service-skipper",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();