Build the Future of Healthcare AI
We are building a global, open-standard for healthcare agents. Whether you are a developer, student, or researcher, your contribution matters.
Governance Model
We follow the Commercial Open Source Software (COSS) model.
Core Platform
License: Apache 2.0 / MIT
The core agentic framework, FHIR connectors, and basic safety guardrails are free and open forever. We encourage widespread adoption.
Enterprise Features
License: Commercial
Advanced features like SSO, Long-term Audit Logs, and Advanced Analytics are available for enterprise deployments.
Roadmap to Launch
Our phased approach to building the operating system for healthcare agents.
Q1: The "Skeletal" MVP
Goal: Developer-friendly framework.
Deliverable: pip install healthcare-agent-core. Demo "Appointment Agent"
connecting to HAPI FHIR.
Q2: The "Scribe" Pilot
Goal: Solve one real problem.
Deliverable: Ambient listening agent for clinical notes. Beta testing with private practices.
Q3: The "Guardian" Release
Goal: Enterprise readiness.
Deliverable: Full Guardian Layer with RBAC and "Human-in-the-Loop" dashboards.
Q4: The Ecosystem
Goal: Scale via community.
Deliverable: Launch "Agent Marketplace" for third-party developers.
Repository Structure
A look inside the openhealth-agents codebase.
openhealth-agents/
├── core/ # THE ENGINE (Framework Agnostic Logic)
│ ├── orchestrator.py # Main loop (LangGraph)
│ └── memory/ # Vector Store (RAG)
├── guardian/ # THE SHIELD (Safety & Compliance)
│ ├── pii_scanner.py # PII Redaction
│ └── validators/ # Clinical & Tone Checks
├── connectors/ # THE HANDS (Interoperability)
│ ├── fhir/ # HL7 FHIR Handlers
│ └── ehr/ # Epic/Cerner Adapters
├── agents/ # THE IMPLEMENTATIONS (Personas)
│ ├── provider/ # Scribe Agent
│ ├── patient/ # Navigator Agent
│ └── payer/ # Claims Agent
└── interface/ # THE FACE (API & UI)
├── api/ # FastAPI Backend
└── dashboard/ # HITL Approval Queues