← Back to Blog | Portfolio Home

CoDaS Explained: Google's Multi-Agent AI System for Biomarker Discovery from Wearables

Published on 2026-08-21 by Mukesh Pal

#CoDaS Google Research multi-agent biomarker#AI co-data-scientist#multi-agent AI architecture#wearable data biomarker discovery#AI agent adversarial validation#health AI agents

CoDaS Explained: Google's Multi-Agent AI System for Biomarker Discovery from Wearables

Introduction

Wearable devices have solved the data collection problem in health monitoring — heart rate, sleep, and activity data now flow continuously, at population scale. What hasn't been solved is turning that raw signal into biomarkers reliable and meaningful enough for clinical or research use.

On August 21, 2026, Google Research published CoDaS (AI Co-Data-Scientist), a multi-agent system designed to close that gap — not simply by throwing a more capable model at the problem, but by building structural, adversarial self-checking directly into the agent architecture.

---

What Happened?

A large team of researchers spanning Google Research, Google DeepMind, Google Cloud AI, MIT, and multiple academic medical centers (including Seoul National University Hospital, Mass General Brigham, and Brigham and Women's Hospital) introduced CoDaS, a multi-agent system that integrates hypothesis generation, deterministic statistical analysis, adversarial validation, and literature-grounded interpretation, all under explicit human oversight.

Tested across three wearable-device cohorts comprising 9,279 participant-observations, CoDaS was shown to reliably prioritize genuine, defensible biomarker candidates while filtering out spurious statistical artifacts.

---

The Technology Behind It

The paper is explicit about the specific failure mode it's designed to prevent: existing LLM-based agent systems that automate scientific workflows tend to optimize primarily for predictive performance, and in doing so, can overlook statistical validity — leading to spurious correlations, data leakage, and features that look promising but don't hold up under scrutiny.

This is a particularly acute risk with physiological time-series data from wearables, which is noisy, high-dimensional, and prone to producing patterns that look meaningful but aren't.

CoDaS's core design response is architectural: rather than relying on a single model pass to both generate and validate a hypothesis, the system distributes these responsibilities across specialized sub-agents that operate over a shared state, with each agent's role deliberately narrow and adversarial where appropriate.

---

How It Works

CoDaS structures its workflow around four specialized sub-agents collaborating around a deterministic evaluation core:

+------------------------------------------------------------+
|  CoDaS Multi-Agent Adversarial Architecture                |
|                                                            |
|         [ Scout ] Proposes hypothesis                      |
|            |                                               |
|            v                                               |
|  [ Statistical Evaluation Core ] (Deterministic math check)|
|            |                                               |
|            +-----------------------+                       |
|            |                       |                       |
|            v                       v                       |
|        [ Critic ]  <=======>  [ Defender ]                 |
|      Attacks findings      Adversarial debate loop         |
|            |                                               |
|            v                                               |
|       [ Mechanism ] grounds in literature                  |
|            |                                               |
|            v                                               |
|     (Human Review)                                         |
+------------------------------------------------------------+