Tools

What You'll Build

Nothing new, actually. That is the point. You already have an AI agent on your machine. This playbook shows you how to hand it a second job it can do in the background: contributing to real medical research toward curing a disease called LHON.

You install one small file, tell your agent to work on the project, and it joins a swarm of other people's agents all chipping away at the same goal. Finding funding sources. Mapping which researchers are working on what. Digging up promising ideas from nearby fields of science. Organizing scattered data into something usable.

No lab coat. No biology degree. No new subscription. It is the closest thing to donating your AI's spare time to a good cause.

What LHON Is and Why It Needs This

Leber's Hereditary Optic Neuropathy is a genetic disorder that steals the eyesight of young people, usually between 15 and 35. It hits suddenly. Someone healthy starts losing central vision in one eye, then the other follows within weeks. For most people it does not come back.

It is rare, somewhere around 1 in 15,000 to 50,000 people. And that rarity is exactly the problem. Rare diseases do not attract big research budgets. The work gets done in scattered pockets by underfunded teams who often do not know what the other teams are doing. Progress is slow not because the science is impossible, but because the effort is fragmented and starved of hands.

That is a coordination problem. And coordination is something a swarm of AI agents is genuinely good at.

How the Swarm Works

Think of it like a volunteer crew where every volunteer is an AI agent running on a different person's computer.

Instead of one researcher slowly working through a giant to-do list, hundreds of agents pick up small pieces in parallel. One agent maps out which foundations fund mitochondrial research. Another builds a directory of the scientists publishing on LHON and adjacent conditions. Another scans breakthroughs in gene therapy and optic nerve repair for anything that might transfer. Another takes all the messy notes and turns them into a clean, structured knowledge base that the next agent can build on.

None of them get tired. None of them charge by the hour. And because the work is shared out in the open on GitHub, the results pile up where everyone can see and use them.

This is the same pattern that makes AI agents useful in a business. One agent doing everything is slow. Many agents each owning a narrow task, coordinating through a shared workspace, gets a mountain of work done fast. Here that pattern is pointed at a disease instead of a sales pipeline.

How to Join

The whole thing is one command. You are downloading a skill file, which is just a set of instructions that teaches your agent what the project is and how to help.

Step 1: Make sure your agent is set up. You need OpenClaw installed and working. If you have used it for anything else, you are ready.

Step 2: Install the research skill. Run this in your terminal:

curl -o ~/.openclaw/skills/lhon-research/SKILL.md \
  https://organicoder42.github.io/openclawresearch/skill/SKILL.md

That drops the project's instructions into your agent's skills folder.

Step 3: Point your agent at it. Start your agent and tell it to work on the LHON research project. It reads the skill, understands the current tasks, picks one, and gets going. Results get shared back to the project.

Step 4: Let it run when you are not using it. This is background work. Kick it off at the end of your day, or whenever your machine is otherwise idle, and let it contribute while you do something else.

If you would rather not run an agent at all, you can still help by hand through the project's GitHub Issues, or by sponsoring a specific task so someone else's agent tackles it.

Why This Belongs in a Business Newsletter

Fair question. This one does not save you money or replace a vendor. It is here because it reframes what the thing on your computer actually is.

Most people think of an AI agent as a tool that does chores. This shows it is closer to a worker you can lend out. The same setup you use to draft estimates or chase invoices can, in its off hours, do real good in the world. That is a story worth telling your customers, your team, and yourself.

And selfishly, watching a swarm of agents coordinate on a hard, open-ended research problem is the fastest way to understand what these systems can really do. Once you have seen your agent go find funding sources and organize a research corpus on its own, you will start seeing places to point that same capability inside your own business.

Gotchas and Tips


Keep Reading