The Commonplace
Home Three-study pilot Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

LabAgent turns a lab’s public code and papers into reusable, executable skills and reproduces many computational-biology results more reliably than two commercial agent harnesses; it often reaches published metrics (32/65 ADMET entries within reported SD) but does so at higher per-task cost.

LabAgent: Customize Any Research Hubs for Scientific Discoveries Using AI Agents
Lei Liu, Yikun Zhang, Jialin Chen, Wanjia Zhao, Rex Ying, Wengong Jin, Hua Xu, James Zou, Tianyu Liu, Hongyu Zhao · September 11, 2026
arxiv descriptive medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Lei Liu unresolved corpus identity
  2. Yikun Zhang unresolved corpus identity
  3. Jialin Chen unresolved corpus identity
  4. Wanjia Zhao unresolved corpus identity
  5. Rex Ying unresolved corpus identity
  6. Wengong Jin unresolved corpus identity
  7. Hua Xu unresolved corpus identity
  8. James Zou unresolved corpus identity
  9. Tianyu Liu unresolved corpus identity
  10. Hongyu Zhao unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Lei Liu provider ID
  2. Yi-Kun Zhang unresolved corpus identity
  3. Jia-Lin Chen unresolved corpus identity
  4. Wan-Jia Zhao provider ID
  5. Rex Ying provider ID
  6. Wen-Gong Jin provider ID
  7. Hua Xu unresolved corpus identity
  8. James Zou provider ID
  9. Tian-Yu Liu unresolved corpus identity
  10. Hongyu Zhao provider ID
LabAgent constructs laboratory-specific executable 'skills' from a lab’s public artifacts and, by reusing run-time diagnoses and fixes in a persistent memory, reproduces and extends computational biology methods more often than two commercial generalist agent harnesses, albeit at higher cost.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Scientific research is a continuous process that emphasizes inheritance. Methods developed by predecessors are often expanded upon by new researchers to explore more novel and in-depth scientific questions. However, the change of lab staff, such as student graduation, leads to a lack of personnel capable of replicating methods. Methods that have been developed with significant effort and resources cannot be continued. To address these limitations, we propose LabAgent, a reproduce and discovery harness tailored for a lab's continuous work. LabAgent employs two mechanisms to guarantee that all skills can be executed and verified and to record the corrective methods and experiences, allowing for direct correction or avoidance of similar errors. We applied LabAgent to drug property prediction, biomedical problem analysis, protein variant effect prediction, and statistical genetics in life science domains. LabAgent ranks first over commercial generalist agents in every domain, and demonstrates accurate reproduction of a published figure. Overall, these results demonstrate that LabAgent can effectively integrate and reasonably expand laboratory knowledge.

Summary

Main Finding

LabAgent is a multi-agent framework that converts a laboratory’s public artifacts (papers, code, issues, tutorials) into a persistent, executable skill library and an experience-conditioned reproduce agent. By (1) extracting and validating “skills” that capture the procedural tacit knowledge of methods, (2) recording execution traces, diagnoses and fixes in persistent memory, and (3) assembling role-specialized agents to plan/implement/run/verify reproductions, LabAgent both reproduces published computational biology results and uses the validated methods to drive new discovery. Across four life-science domains it outperforms two commercial agent harnesses (Claude Code CLI on Opus 4.8 and Codex CLI on GPT-5.5) on reproducibility and analysis benchmarks, at a modestly higher operational cost.

Key Points

  • Architecture
    • Explore agent: mines a lab’s public artifacts, grounds descriptions to code, synthesizes executable skills (including undocumented preprocessing, pinned versions, failure modes).
    • Reproduce agent: assembles role-specialized subagents (Probe, Code, Env/Data, Runner, Verifier, Analyst), reuses prior lessons from persistent memory, runs and verifies against the original study metrics, localizes and repairs failures, writes back fixes and logs.
    • Persistent skill & reproduction memory: stores skills, evidence grounding, execution logs, diagnoses (failures→fixes), and verified results so later reproductions can be experience-conditioned rather than starting fresh.
    • Skill admission policy: a skill only enters the library after running end-to-end successfully.
  • Empirical performance (selected results)
    • ADMET drug-property leaderboard reproductions (Therapeutics Data Commons):
    • Rebuilt 65/66 target entries (one upstream repo deleted).
    • Landed within the published standard deviation on 32/65 entries — more than the two commercial harnesses.
    • Mean rank across entries: LabAgent 2.62 (best among agents); leaderboard ground truth mean rank 1.87.
    • Example trace: rebuilding MiniMol required iterative fixes (deps, pinning, shared-object issues) and achieved AUPRC 0.455 vs published 0.474 ± 0.025.
    • Cost: US$4.56 per entry (higher than comparators), with higher spend tied to iterative debugging and dependency resolution that produced durable fixes.
    • Biomedical data-analysis benchmarks:
    • BiomniBench-DA: LabAgent mean rubric score 74.4 (lead of +2.1 vs Claude Code, +8.7 vs Codex). Ablation without the explore agent scored 71.6 (shows importance of the skill library).
    • GeneBench-Pro: passed 2/10 public problems (Claude Code 1/10, Codex 0/10). Partial-credit averages: LabAgent 31.4, Claude Code 28.0, Codex 16.2. Cost ≈ US$2.43/problem.
    • Example domain insight: in a cis-eQTL single-cell task LabAgent reconstructed activated monocyte subpopulation and ultimately recovered an effect estimate close to the reference; discrepancies traced to downstream handling of a donor-level nuisance variable.
    • Additional domains: applied to protein variant effect prediction and statistical genetics; LabAgent reconstructed a published figure even when no figure code was released, and made departures locatable and named in memory.
  • Comparative baseline
    • Baselines: Claude Code CLI (Opus 4.8) and Codex CLI (GPT-5.5). LabAgent typically yields better reproducibility & process scores but at higher monetary cost and with variability across task types.
  • Limitations observed
    • Higher per-run cost due to iterative execution and debugging.
    • Not all tasks reproduced perfectly; some domains and cases still fail or return partial credit.
    • Relies on the availability and completeness of public artifacts (papers, code, issues).

Data & Methods

  • Data sources and domains
    • Therapeutics Data Commons ADMET leaderboards (22 datasets; 65 reproducible entries used).
    • BiomniBench-DA (50 tasks spanning 16/17 task types; rubric scores process decisions).
    • GeneBench-Pro (10 public problems; end-point estimand scoring).
    • Additional case studies in protein variant effect prediction and statistical fine-mapping (including reconstruction of a published figure without released code).
  • Skill generation
    • Two routes: repository mode (target names repo) and task-type mode (agent searches for code implementing method).
    • Draft skills are synthesized and then validated by running end-to-end; only passing skills are stored.
  • Reproduction workflow
    • The reproduce agent loads the best-matching skill, reads prior execution experience from memory (commands/fixes), then executes a multi-role iterative pipeline that plans, edits, runs, diagnoses failures, and retries until verifier metrics match published values or a budget is exhausted.
    • Verification is scientific: success requires reproducing reported metrics (not merely finishing without error).
  • Baselines and costing
    • Compared to two commercial harnesses (Claude Code CLI, Codex CLI). Costs reported per-task (USD) reflect compute and model usage during runs.
  • Metrics reported
    • Reproducibility: within published standard deviation, mean rank on leaderboard entries.
    • Process quality: rubric scores on BiomniBench-DA.
    • Outcome accuracy: pass/partial/failed on GeneBench-Pro and specific numerical closeness to published estimates.
    • Operational cost per run/task.

Implications for AI Economics

  • Productivity and R&D efficiency
    • LabAgent formalizes and preserves tacit experimental and computational knowledge as executable assets; this can lower the recurring cost of method handoff and reduce repeated debugging across labs, increasing effective R&D throughput and reducing waste from lost institutional knowledge.
    • The approach turns reproducibility work into a durable public good (executable skills + fixes), potentially raising the marginal productivity of downstream researchers who reuse validated workflows.
  • Labor demand and skill composition
    • Automation of reproduction and method maintenance may substitute for some experienced research-engineer time (dependency debugging, environment setup), shifting human labor toward higher-level experimental design and interpretation.
    • Demand rises for engineers who can curate, audit, and extend agent-generated skills; also for domain experts to validate scientific verification criteria and edge-case decisions.
  • Cost structure and business models
    • Lab-specific agent creation has higher up-front and per-run compute cost than some general commercial harnesses, but produces persistent knowledge that amortizes over subsequent reproductions and discovery tasks—favorable returns as reuse scales (economies of scope).
    • Potential services/products: lab-specific agent-as-a-service, reproducibility-as-a-service for publishers/funders, and marketplaces for verified skill libraries. Pricing models could reflect upfront skill extraction + pay-per-execution.
  • Incentives and public-good provision
    • Incentivizing labs to publish richer artifacts (pinned envs, issue histories, runnable demos) increases the agent’s effectiveness; funders and journals could accelerate adoption by requiring artifact quality standards.
    • A standardized format for skill packaging and execution logs would lower transaction costs in reuse and enable easier valuation of reproducibility investments.
  • Measurement and evaluation
    • Economists can model the value of LabAgent-style systems by estimating reduced replication costs, increased rate of valid follow-on research, and time saved per researcher; these inputs feed return-on-investment calculations for adopting agent technologies in research institutions.
  • Risks, market concentration, and governance
    • Centralized provider dominance (few LLM/agent vendors) combined with labs outsourcing reproducibility could create lock-in and concentration risks; open standards and interoperability are important.
    • Incorrect skill synthesis or silent failures introduce scientific risks—necessitating audits, provenance, and human-in-the-loop verification for high-stakes research.
  • Policy and regulatory considerations
    • Funders or journals might require machine-verifiable reproducibility artifacts; otherwise, inequities could grow between well-resourced labs that can pay for agent curation and under-resourced groups.
    • Intellectual property and data/privacy rules matter: agents ingest public artifacts, but deploying agent-derived pipelines on private or sensitive datasets raises compliance complexity.
  • Research-agenda suggestions for AI economists
    • Quantify productivity gains from experience-conditioned skill reuse across labs and over time.
    • Model labor reallocation effects: how much and which research roles shrink/grow with agent adoption.
    • Analyze market structures for lab-specific agent services (competition, pricing, and welfare effects).
    • Evaluate social returns from mandating artifact standards that facilitate agent extraction of skills.

If you want, I can (a) extract a concise list of the quantitative results (tables of scores/costs) from the paper for economic modeling, or (b) sketch a simple economic model to estimate ROI of deploying LabAgent in a university lab. Which would you prefer?

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper reports systematic empirical comparisons across multiple benchmarks (Therapeutics Data Commons ADMET leaderboards, BiomniBench-DA, GeneBench-Pro, plus case studies) and shows consistent gains versus two commercial harnesses, but the evaluation is domain-limited (computational biology), some baselines use different underlying LLMs (confounding model vs. harness performance), and key details (full dataset splits, hyperparameters, and raw logs) are not fully available in the provided excerpt. Methods Rigormedium — The authors evaluate on multiple public benchmarks, report quantitative metrics (counts inside published SD, rubric scores, costs), and include ablation (removing the explore agent). However, there are potential confounds (different base LLMs across harnesses), selection of tasks/repositories may bias outcomes, and some important reproducibility details (full experimental protocol, randomness control, and statistical tests) are not visible in the supplied text. SampleEmpirical evaluation on: (1) 65 reproductions of top-3 entries from 22 ADMET leaderboards of the Therapeutics Data Commons (collapse to 11 distinct code repositories); (2) 50 public tasks from BiomniBench-DA spanning 16 task types; (3) 10 public problems from GeneBench-Pro; plus case studies in protein variant effect prediction and statistical genetics; comparisons were made to two commercial harnesses (Claude Code CLI running on Opus 4.8 and Codex CLI on GPT-5.5), reporting metrics such as counts inside published standard deviations, rubric scores, AUPRC, and cost per run. Themeshuman_ai_collab productivity innovation adoption GeneralizabilityFocused on computational biology domains; performance may not transfer to other scientific fields or to wet-lab procedures., Relies on the availability and quality of public code, papers and issue histories—labs with little public artifactation will be poorly served., Results depend on compute budget, environment setup, and the underlying LLMs; comparisons confounded when baselines use different base models., Benchmarks emphasize end-to-end executable code; methods may not generalize to non-code knowledge artifacts or proprietary codebases., Higher monetary cost per reproduction may limit practical adoption at scale.

Claims (10)

ClaimDirectionOutcomeConfidence & EvidenceDetails
LabAgent ranked first among the three evaluated agents on reproducing published ADMET leaderboard results, landing inside the published standard deviation for 32 of 65 entries. Output Quality positive Agreement of reproduced model performance values with published leaderboard values
Reading fidelity high
Study strength medium
n=65
32 of 65 entries inside the published standard deviation
0.18
LabAgent achieved the best mean rank among the evaluated agents on the 65 ADMET leaderboard entries, with a mean rank of 2.62, and ranked first on 13 entries. Output Quality positive Mean rank and number of first-place ranks in reproduction accuracy
Reading fidelity high
Study strength medium
n=65
mean rank 2.62; ranked first on 13 of 65 entries
0.18
LabAgent cost more per ADMET reproduction entry than the closest commercial harness, spending US$4.56 per entry, approximately one-third more. Organizational Efficiency negative Agent cost per reproduction entry
Reading fidelity high
Study strength medium
n=65
US$4.56 per entry; about a third more than the closest harness
0.18
For the BiomniBench-DA benchmark, LabAgent obtained the highest mean rubric score among the three systems, scoring 74.4. Decision Quality positive Mean rubric score for biomedical data-analysis tasks
Reading fidelity high
Study strength medium
n=50
mean rubric score 74.4
0.18
LabAgent's full system scored 2.8 rubric points higher than its ablated version without the explore-agent skill library on BiomniBench-DA, with a standard error of 1.7. Decision Quality positive Mean rubric score on biomedical data-analysis tasks
Reading fidelity high
Study strength medium
n=50
2.8 points higher; standard error 1.7
0.18
On the 10 public GeneBench-Pro problems, LabAgent passed 2 outright, compared with 1 for Claude Code and none for Codex. Decision Quality positive Number of GeneBench-Pro problems passed outright
Reading fidelity high
Study strength medium
n=10
2 of 10 problems passed outright
0.18
On GeneBench-Pro, LabAgent achieved a higher average partial-credit score than Claude Code and Codex: 31.4 versus 28.0 and 16.2, respectively. Decision Quality positive Average partial-credit score on genetic-analysis problems
Reading fidelity high
Study strength medium
n=10
31.4 average partial credit versus 28.0 and 16.2
0.18
For the CXCL10 cis-eQTL task, LabAgent's estimate was within the grader's tolerance of the published estimate, whereas Claude Code's and Codex's estimates were outside tolerance. Decision Quality positive Accuracy of the estimated cis-eQTL effect for CXCL10 in activated monocytes
Reading fidelity high
Study strength medium
n=1
LabAgent estimate -0.561 versus published -0.600; 0.77 of the allowed tolerance
0.18
In the CXCL10 single-cell state-recovery task, all three systems recovered the activated population from the same 588 cells and produced state calls close to the reference, although LabAgent had the lowest agreement and missed 29 activated cells. Decision Quality mixed Agreement with the reference activated-cell population
Reading fidelity high
Study strength medium
n=588
agreement 0.951 for LabAgent; 29 activated cells missed
0.18
The immediate-turn recovery rate after a failing turn was 116 successes out of 145 failures. Organizational Efficiency positive Success on the turn immediately following a failed turn
Reading fidelity high
Study strength low
n=145
116 successes out of 145 failing turns
0.09

Notes