\n\n\n\n Thirty-Two Hours to Solve Aging, Give or Take - AI7Bot \n

Thirty-Two Hours to Solve Aging, Give or Take

📖 5 min read•846 words•Updated Sep 7, 2026

A hackathon runs 32 hours. Human aging runs about 80 years. Caltech’s Longevity Hackathon put those two numbers in the same room in May 2026 and asked students to make something of the gap.

I build bots for a living, so my instinct with any event like this is to ask what actually ships. A $4,000 prize fund across a weekend sprint at the intersection of biology, neuroscience, AI, medicine, and entrepreneurship is not going to produce a cure for cellular senescence. What it can produce is tooling. And tooling is where I think the interesting story sits.

Why a research-adjacent hackathon is a different animal

Most hackathons I have judged or entered have a known shape. You pick an API, wire up a frontend, add an LLM call somewhere in the middle, and demo it before the pizza goes cold. The problem space is bounded because someone already bounded it. Payments, scheduling, chat, recommendations — solved categories with clear success criteria.

Longevity research does not work like that. There is no endpoint you can hit that returns “healthspan extended: true.” The questions are open at the research level, which means a team has 32 hours to do something much harder than build a product. They have to decide what a useful artifact even looks like.

That constraint changes what teams build. When you cannot solve the science, you build things that help other people work on the science. Literature triage. Data normalization across incompatible study formats. Pipelines that turn messy biological datasets into something queryable. Interfaces that let a researcher ask a question in plain language instead of writing another one-off script.

If that sounds familiar, it should. That is the bot builder’s job description.

The agent pattern fits research work better than it fits most things

I have written a lot on this site about retrieval pipelines and tool-calling agents, usually in the context of customer support or internal documentation. The pattern is well understood at this point: index a corpus, expose a set of tools, let a model plan a sequence of calls, keep a human in the loop for anything consequential.

Research workflows map onto that pattern more cleanly than most business processes do. Consider what a researcher actually does in a given afternoon:

  • Search for prior work on a specific mechanism or intervention
  • Pull data from several sources that do not agree on units, naming, or format
  • Run a transformation or statistical check
  • Compare the result against what the literature claims
  • Write down what happened so the next person can reproduce it

Every one of those steps is a tool call. The retrieval step is a retrieval step. The normalization step is a deterministic function you can wrap and expose. The comparison step is exactly the kind of task where a model shines at surfacing candidates and a human is essential for judging them. The write-up step is a structured logging problem dressed up as prose.

The reason this is a good fit is not that models understand biology. They do not, not in any way I would trust. The fit comes from the shape of the work: many small, well-defined operations chained together across incompatible data sources, with a domain expert supervising the chain. That is the exact scenario where agent architectures earn their keep, and the exact scenario where a chatbot with no tools falls flat.

What I would build with 32 hours

If I dropped into an event like this without a biology background, I would not try to compete on domain knowledge. I would build the boring layer nobody wants to build.

Pick two public datasets that describe overlapping things in different vocabularies. Write the mapping between them. Expose it as a tool with a clean schema. Put a thin agent on top that can answer questions requiring both sources at once, and make it cite which record every claim came from. Then spend the last four hours on the part most teams skip: showing what the system gets wrong and why.

That last part matters more in a research context than anywhere else. A support bot that hallucinates an answer costs a company a refund. A research tool that hallucinates a citation costs someone a month. Building the failure surface into the demo is not a weakness, it is the whole value proposition when your users are scientists.

The interesting part is the format

Caltech’s event brought together students and researchers from different disciplines, which is the actual mechanism doing the work here. A neuroscientist who has never written a tool-calling loop and an engineer who has never read a paper on cellular aging will, given a deadline and a shared table, produce something neither would have alone. Usually rough. Occasionally worth continuing.

Weekend sprints do not solve research problems. They introduce people who might, and they produce scaffolding that outlives the weekend. For those of us building bots, the lesson is that the most valuable systems in these domains are rarely the ones that try to answer the hard question. They are the ones that make the hard question cheaper to ask.

🕒 Published:

💬
Written by Jake Chen

Bot developer who has built 50+ chatbots across Discord, Telegram, Slack, and WhatsApp. Specializes in conversational AI and NLP.

Learn more →
Browse Topics: Best Practices | Bot Building | Bot Development | Business | Operations
Scroll to Top