Node Manifest Persistence
During cluster initialization via colabbio-node-init.sh, the system persists the node configuration to /etc/colabbio/node-manifest.json and bootstrap logs to /var/log/colabbio/node-init.log.
The ColabBio Unified Management CLI (cb-svc-cli) provides DevOps, MLOps, and bioinformaticians with a sovereign, terminal-native control plane for cluster observation, AI pipelines, model lifecycle, tenant auditing, and conversational clinical assistance.
┌────────────────────────────────────────────────────────────────────────┐│ COLABBIO UNIFIED MANAGEMENT CLI (cb-svc-cli) │├────────────────────────────────────────────────────────────────────────┤│ • Spring Shell 3.2 + Native Wrapper (`cb-devops/scripts/colabbio`) ││ • Dual Execution Mode: Connected Live Cluster & Standalone Fallback ││ • Interactive AI Companion with ANSI Rich Widget Rendering ││ • Real-Time Diagnostics: MicroK8s, MedVFS, Triton, OMERO, OHDSI DQD │└────────────────────────────────────────────────────────────────────────┘The CLI is compiled into a self-contained executable Java JAR within cb-svc-parent and accessed via the convenient wrapper script colabbio.
# 1. Compile and package the CLI suitecd cb-svc-parentmvn clean package -DskipTests=false
# 2. (Optional) Add colabbio to your PATHexport PATH="$PATH:$(pwd)/../cb-devops/scripts"
# 3. Verify installationcolabbio helpThe CLI is organized into focused sub-command suites designed for hospital cluster administrators, MLOps engineers, and bioinformaticians.
colabbio node)Inspect the host machine, GPU accelerators, Tailscale mesh connectivity, and bootstrap initialization logs.
# Check node hardware, available cores, memory, and manifest statuscolabbio node status
# Query deep GPU telemetry via nvidia-smicolabbio node status --gpu
# View bootstrap and initialization logscolabbio node logs -n 50Node Manifest Persistence
During cluster initialization via colabbio-node-init.sh, the system persists the node configuration to /etc/colabbio/node-manifest.json and bootstrap logs to /var/log/colabbio/node-init.log.
colabbio cluster)Audit MicroK8s microservices, Ingress endpoints, and MedVFS storage classes.
# Audit all core pods, services, and Ingress routing in the colabbio namespacecolabbio cluster audit
# Stream logs from a specific core service (omero, triton, fhir, ai)colabbio cluster logs --service triton --lines 100colabbio study)Track execution progress, step-by-step pipeline stages (SlideLab, PyTorch WSI-MIL training, Triton registration), and generate validation reports.
# Inspect real-time status of a running study pipelinecolabbio study status --run-id run-tcga-brca-001
# Compile and display the Markdown clinical validation reportcolabbio study report --run-id run-tcga-brca-001colabbio model)Inspect registered pathology models, ONNX tensor signatures, and MLflow Model Cards.
# List all registered models in the sovereign registrycolabbio model list
# Inspect tensor shapes, normalization methods, and SHA-256 digestscolabbio model inspect --name abmil-brca-v1colabbio visor)Monitor OMERO.server (Blitz), OMERO.web, and ingest Whole Slide Images (SVS, NDPI, MRXS).
# Check health of OMERO.server (port 4064) and DeepZoom rendering bridgecolabbio visor status
# Batch ingest digital pathology slides into OMERO repositorycolabbio visor ingest --path /data/wsi_samples/colabbio inference)Benchmark GPU forward-pass latency and attention heatmap computation under load.
# Run latency benchmark with concurrency level 4colabbio inference benchmark --model abmil-brca-v1 --concurrency 4colabbio tenant)Manage hospital tenants and execute Data Quality Dashboard (DQD) checks.
# List registered hospital tenants and active dataset quotascolabbio tenant list
# Run OHDSI Achilles & DQD conformance and plausibility auditcolabbio tenant audit --tenant hospital-la-feask & chat)The CLI integrates directly with the Clinical AI Companion backend (cb-svc-ai), enabling engineers and bioinformaticians to query datasets, diagnose failures, and inspect pathology slides in natural language.
# Query active models in Tritoncolabbio ask "cuales son los modelos en triton"
# Analyze a biopsy slide and generate hotspotscolabbio ask "analiza la biopsia de la slide 1092"
# Pipe AI markdown reports directly to diskcolabbio ask "Genera un reporte del paciente PAT-77402" > reporte.md# Start an interactive REPL conversational sessioncolabbio chat
# Example session:colabbio> ¿Cuál es el estado del estudio run-tcga-brca-001?companion> El estudio se encuentra en progreso (Paso 2/4: SlideLab Feature Extraction). Se han procesado 78 de 120 portaobjetos digitales (65%).
colabbio> exitThe backend emits structured Markdown with A2UI embedded widgets using the fenced code syntax:
```widget:score_bar{ "label": "Probabilidad de Malignidad", "score": 0.9412, "threshold": 0.50, "status": "HIGH_RISK"}```
```widget:omero_viewport_action{ "imageId": "1092", "x": 18450, "y": 9200, "zoom": 20, "label": "Centrar Visor en Hotspot 1"}```When rendered in the CLI, the parser transforms JSON blocks into clean, high-contrast ANSI terminal components:
┌─ [SCORE BAR: Probabilidad de Malignidad] ───────────────────────── │ Valor: 94.12% [HIGH_RISK] │ Barra: [███████████████████░] └────────────────────────────────────────────────────────────
[🔬 OMERO Viewport Action] Centrar Visor en Hotspot 1 Coordenadas: X: 18450, Y: 9200, Zoom: 20x (Slide ID: 1092) Enlace Visor: https://omero.colabbio.local/webclient/?show=image-1092To ensure operational reliability in disconnected environments (such as isolated edge VMs or air-gapped clinical networks):
🟢 Live Cluster): Connects to cb-svc-ai on http://localhost:8080 (or configured COLABBIO_AI_URL) and queries live Kubernetes API, PostgreSQL, and Triton Inference Server.🟡 Standalone): If the backend is offline or undergoing maintenance, the CLI operates locally with built-in diagnostic engines and simulated clinical models.