BIODEFENSE OS is an AI-native national biosurveillance and biosecurity command layer.
Biological threats are hard to monitor because signals are fragmented across epidemiology feeds, lab activity, synthesis/procurement indicators, and operational incident channels. Teams often react late, without a unified real-time picture or a trustworthy workflow for supervised AI actions.
BIODEFENSE OS closes that gap by continuously detecting, correlating, simulating, escalating, and supervising response actions in one command system.
What Wiz did for cloud security visibility and risk context, BIODEFENSE OS does for biology:
- Comprehensive visibility into biosurveillance signals, threats, incidents, and command events
- Context-rich risk prioritization with graph-linked evidence and simulation outputs
- Real-time operational monitoring with supervised autonomous agents and safety gates
- Always-on command runtime with scheduled worker loops (
worker+worker-beat) - Realtime websocket event stream for live operational updates
- Dedicated command cockpit and AI-agent Kanban supervision board
- Comprehensive biosurveillance workspace with:
- Live signal/event timeline
- Threat and incident context panels
- Tenant-scoped AI chat with grounded citations
- Human-in-the-loop approvals and immutable command audit trail
- Web: Next.js + TypeScript (
apps/web) - API: FastAPI + SQLAlchemy (
apps/api) - Workers: Celery + Redis (
apps/worker) - Database: PostgreSQL + pgvector
- Realtime: FastAPI WebSocket route + command event broadcaster
- Deployment: Docker Compose (local) + Kubernetes manifests (
infra/k8s)
apps/web- command UX, realtime biosurveillance workspace, AI supervision boardapps/api- command-plane APIs, typed data APIs, AI orchestration, realtime routesapps/worker- continuous loops and autonomous state transitionsdb- schema migrations and seed supportinfra- Docker Compose and Kubernetes deployment manifestsdocs- product, security, and deployment documentationtests- backend and e2e verification suites
cp .env.example .env
docker compose --env-file ".env" -f infra/docker-compose.yml up -d --build- Web:
http://localhost:${WEB_PORT}(default local mapping used in this repo:http://localhost:13000) - API:
http://localhost:${APP_PORT}(default local mapping used in this repo:http://localhost:18000) - OpenAPI:
http://localhost:${APP_PORT}/docs
docker compose --env-file ".env" -f infra/docker-compose.yml ps
curl http://localhost:${APP_PORT}/system-health- Realtime socket:
ws://localhost:${APP_PORT}/realtime/ws?token=<jwt> - Biosurveillance workspace:
http://localhost:${WEB_PORT}/biosurveillance - AI agents board:
http://localhost:${WEB_PORT}/ai-agents
- Tenant isolation on operational data paths
- Role-gated high-consequence actions (SuperAdmin/TenantAdmin/NationalCommander)
- Safety-aware AI orchestration and supervised execution controls
- Command audit chain for reviewability and accountability