All cards
Service active public

service-flowhunter

Options-flow monitor on Beacon 5870 with nine-agent consensus and LLM analysis

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

Purpose

Options-flow monitor with nine-agent consensus scoring and an LLM analysis pipeline. Built in Rust with a React front-end. The longest-uptime service in the active set. Documented in an in-tree runbook.

Capabilities 4

http-service
HTTP service on port 5870, verified live
flow-ingestion
Options-flow ingestion
consensus-scoring
Nine-agent consensus scoring
llm-analysis
LLM analysis pipeline

History 1

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

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "service-flowhunter",
  "kind": "service",
  "summary": "Options-flow monitor on Beacon 5870 with nine-agent consensus and LLM analysis",
  "purpose": "Options-flow monitor with nine-agent consensus scoring and an LLM analysis pipeline. Built in Rust with a React front-end. The longest-uptime service in the active set. Documented in an in-tree runbook.",
  "endpoint": "http://86.48.30.196:5870",
  "exposure": "public",
  "capabilities_json": "[{\"name\": \"http-service\", \"description\": \"HTTP service on port 5870, verified live\"}, {\"name\": \"flow-ingestion\", \"description\": \"Options-flow ingestion\"}, {\"name\": \"consensus-scoring\", \"description\": \"Nine-agent consensus scoring\"}, {\"name\": \"llm-analysis\", \"description\": \"LLM analysis pipeline\"}]",
  "dependencies_json": "[\"node-beacon-vps\"]",
  "instructions_slug": "",
  "health_check": "curl -fsS http://127.0.0.1:5870",
  "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.604083+00:00",
  "updated_at": "2026-06-26T23:53:31.604083+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-flowhunter
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/service-flowhunter",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/service-flowhunter",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();