$32
Operationalize WELLab's lifespan wellbeing science into executable AI systems that accelerate discovery, intervention, and public impact.
Core loop: Capture data → Model dynamics → Generate insights → Deploy interventions → Feed back into research.
The platform is organized into 4 AI Modules, a Unified Data Model, an Advanced AI Capabilities Layer, and 3 Dashboard UIs.
references/modules.md for full specs)| Module | Domain | Key Capability |
|---|---|---|
| Real-Time Emotional Dynamics Engine | Short-term wellbeing dynamics | EMA, emotion-coupling, IDELS |
| Behavioral + Physiological Health Engine | Wellbeing ↔ physical health | Causal inference, longitudinal regression |
| Lifespan Trajectory Engine | Long-term wellbeing change | Growth curves, trajectory clustering |
| Cognitive Health & Dementia Prevention Engine | Wellbeing ↔ cognition / ADRD | Survival analysis, risk stratification |
references/data-model.md)Core entities: Participants, Observations, Health, Lifespan, Cognitive, Interventions. Each entity has standard fields plus module-specific extensions.
references/ai-capabilities.md)references/dashboards.md)| User request | Read this file |
|---|---|
| Build or modify an AI module, add EMA/sampling, emotion coupling, health prediction, trajectory analysis, cognitive risk | references/modules.md |
| Data model, schema, entity relationships, new fields | references/data-model.md |
| IDELS, temporal dynamics, bidirectional modeling, advanced AI layer | references/ai-capabilities.md |
| Dashboard UI, participant view, researcher view, policy view | references/dashboards.md |
| API routes, deployment, infrastructure, security | references/architecture.md |
| Ethics, fairness, reproducibility, scientific integrity | references/ethics.md |
| Roadmap, wearables, coaching agents, extensions | references/roadmap.md |
When building features for this platform, follow these patterns:
Include: Goals, Non-goals, User stories, Data model changes, API routes, Security considerations, Edge cases, Test plan, Rollout plan.
participant_id, timestamp, source_module# Clone and install
git clone <repo-url> wellab-platform
cd wellab-platform
npm install # frontend + backend
pip install -r requirements.txt # ML pipelines
# Dev
npm run dev # Vite dev server
npm run api:dev # Express API (nodemon)
# Test
npm test # Jest + React Testing Library
pytest tests/ # ML pipeline tests
# Deploy
npm run deploy:staging
npm run deploy:prod