#!/usr/bin/env node /** * atrium CLI — a thin shell client over the same /api/v1 calls the * MCP server exposes. Same env-var auth (OPENCLAW_WEBCHAT_API_BASE + * OPENCLAW_WEBCHAT_API_KEY); the Bearer key is only ever sent in the * Authorization header (never echoed, never in a URL). * * Usage: * atrium health * atrium traces [--limit N] [--q TEXT] [--from T] [--to T] [--kind K] * [--status CODE] [--status-class 2xx|4xx|5xx] [--direction D] * [--principal-type T] [--role-key K] [--correlation-id ID] * atrium kpi [--metric M] [--since ISO] [--from T] [--to T] * atrium anomalies [--limit N] [--since ISO] [--q TEXT] [--from T] * [--to T] [--status S] [--severity S] [--source S] [--kind K] * atrium query-openclaw [--question TEXT] * atrium anomaly-occurrences [--anomaly-id ID] [--kind K] [--limit N] * atrium report-anomaly --kind K --severity S --message M [--correlation-id ID] * atrium bridge-status * atrium sync --instance NAME * * --from/--to accept epoch ms OR a Grafana relative token (e.g. now-24h, now). */ export {};