BioHermes · built on BioClaw · powered by Hermes Agent
BioClaw on the Hermes Agent runtime. Same BioClaw bioinformatics workflows and skill library, packaged for Hermes-based chat, CLI, and gateway usage.
You: I have SEC data for six protein constructs; analyze them and send me a PDF.
Agent: [loads sec-report skill] → [runs sec_pipeline.py on your data]
→ [mcp_bioclaw_send_image with the PDF]
→ [via Telegram / Slack / Discord / WhatsApp / Signal / your CLI]
You: 📄 SEC_Analysis_Report.pdf (7 pages)
Top candidate: Monomer_Only_09 (Q=10.0, monodisperse)
BioHermes is not a separate bioinformatics product line from BioClaw. It is a Hermes Agent runtime edition of BioClaw: the same BioClaw-oriented bio workflows and skills, adapted to run on top of Hermes's Python agent runtime, terminal tooling, and messaging gateway.
If you already know BioClaw, the shortest description is:
- BioClaw is the bioinformatics agent/project identity and skill source of truth.
- BioHermes is a BioClaw-for-Hermes distribution.
- Hermes Agent provides the runtime layer underneath.
So the name BioHermes is mainly about the runtime base, not a new scientific stack or a separate community push.
The BioClaw bioinformatics skill library on Hermes — 40 procedures carried over from BioClaw and normalized to Hermes's skill format:
| Category | Skills |
|---|---|
| Sequence databases | query-pdb, query-uniprot, query-alphafold, query-ensembl, query-geo, query-clinvar, query-interpro, query-kegg, query-reactome, query-stringdb, query-opentarget |
| Genomics pipelines | atac-seq, chip-seq, scrna-preprocessing-clustering, cell-annotation, differential-expression, metagenomics, sequence-analysis, blast-search |
| Structural biology | structural-biology, query-alphafold |
| Proteomics / biochem | proteomics, sec-report, sds-gel-review |
| Manuscript / reporting | bio-manuscript-pipeline, bio-manuscript-text, bio-manuscript-refine, bio-manuscript-common, bio-figure-design, bio-ppt-generate, report-template |
| Meta / orchestration | skills-hub, bio-task-system, bio-analysis-system, bio-dataset-search, bio-innovation-check, bio-human-feedback, bio-metric-system, bio-tools, agent-browser, pubmed-search |
A BioClaw-compatible file-I/O shim (biohermes/mcp_bioclaw_server.py) — preserves the send_image / send_file semantics BioClaw skills rely on, with a send_message hand-off so outputs flow through Hermes-supported messaging platforms (Telegram, Slack, Discord, WhatsApp, Signal, Matrix, WeChat).
The full Hermes Agent runtime underneath — memory tool with auto-injected MEMORY.md / USER.md, smart model routing (simple turns → cheap model), shadow-git checkpoints before destructive ops, smart approvals via auxiliary LLM, 6 terminal backends (local / docker / ssh / singularity / daytona / modal), FTS5 session search, Atropos RL environments, cron scheduling.
git clone https://github.com/cheatthegod/BioHermes.git
cd BioHermes
pip install -e . # exposes `biohermes`, `hermes`, etc.
# First biohermes invocation creates .biohermes-profile/ (gitignored)
# and seeds its config from config-examples/biohermes-cli-config.yaml.
biohermes --version
# Put provider credentials in the PROFILE's .env — not ~/.hermes/.env,
# because BioHermes uses HERMES_HOME=<repo>/.biohermes-profile/
cat > .biohermes-profile/.env <<'EOF'
OPENROUTER_API_KEY=sk-or-...
OPENROUTER_BASE_URL=https://openrouter.ai/api/v1
EOF
biohermes chat -q "what SEC analysis workflows do you have?"
biohermes mcp test bioclaw # verify the file-I/O shim is up
biohermes skills list # 74 bundled + 40 bioinformatics = 114BioClaw's core user experience is: chat -> agent runs a bio workflow -> PDF / image returns in the chat. BioHermes reproduces that loop using Hermes's native messaging gateway plus send_message:
User on Telegram / Slack / Discord / WhatsApp / Signal / Matrix / WeChat
│ chat
▼
Hermes gateway (sets TELEGRAM_HOME_CHANNEL etc. in the agent subprocess env)
│ spawn
▼
BioHermes agent — loads sec-report / atac-seq / blast-search / … skill
│ invoke
▼
skill script — produces PDF / figure / CSV
│
▼
mcp_bioclaw_send_image — writes outbox/<ts>.pdf + returns:
"GATEWAY ACTIVE: call send_message(
target='telegram:<chat_id>',
media_files=['/…/outbox/<ts>.pdf'],
text='…')"
│ follow-up tool call
▼
Hermes send_message tool — dispatches via platform API
│
▼
User receives the PDF in their chat, same as BioClaw on WhatsApp
To run it end-to-end with a real channel:
biohermes gateway setup # interactive — e.g., Telegram bot token
biohermes gateway start # leave running in one shell
# From the chat client, send `/sethome` once so the gateway records your chat_id.
biohermes chat -q "run sec-report on <attachment> and send me the PDF"When no gateway is running, send_image / send_file fall back to the outbox directory — useful for local CLI dogfooding.
NousResearch/hermes-agent qwibitai/nanoclaw
(Python · MIT) (TypeScript · MIT)
│ │
fork ─────┤ ├───── fork
│ │
▼ ▼
cheatthegod/BioHermes ◀── ships ── same fork pattern ── ships ──▶ Runchuan-BU/BioClaw
(this repo) (skill source of truth)
-
BioClaw is the bioinformatics project identity and the skill source of truth. The migrated skills in this repo come from BioClaw, and BioClaw remains the place where the bio layer is conceptually rooted.
-
BioHermes is the Hermes-runtime edition of BioClaw. It consumes BioClaw skills via
biohermes/skill_migrator.py, rewriting BioClaw'sSKILL.mdfrontmatter into Hermes's schema and mappingsend_image/send_fileto the MCP shim. When BioClaw updates its skills, this repo should re-run the migrator and stay aligned. -
Hermes Agent is the runtime base. BioHermes is a hard fork of Hermes Agent at commit
4b6ff0ebwith the BioClaw layer added on top. The upstream Hermes README is preserved unchanged asHERMES_UPSTREAM_README.md. To pull upstream improvements:git fetch upstream && git merge upstream/main(the BioClaw/BioHermes layer is mostly additive, so conflicts are expected mainly where upstream touchesREADME.md,NOTICE, orpyproject.toml).
BioHermes/
├── biohermes/ BioHermes bio layer (new on top of Hermes)
│ ├── cli.py `biohermes` console script entry
│ ├── bin/biohermes equivalent bash wrapper
│ ├── mcp_bioclaw_server.py send_image / send_file (gateway-aware)
│ ├── mcp_probe_server.py Phase 0 MCP discovery probe
│ ├── skill_migrator.py BioClaw → Hermes SKILL.md migrator
│ └── skill_classifier.py 4-dimension skill complexity scorer
│
├── optional-skills/
│ └── bioinformatics/ 40 migrated BioClaw skills (bundled)
│
├── config-examples/
│ └── biohermes-cli-config.yaml Tier B preset + mcp_bioclaw registration
│
├── docs/biohermes/ Plan + execution reports
│ ├── BIOCLAW_HERMES_PLAN_ZH.md design doc v10 (Chinese, 775 lines)
│ ├── PHASE0_RESULTS.md Phase 0 + 0.5 execution report
│ └── PHASE1_PROGRESS.md Phase 1 execution report
│
├── HERMES_UPSTREAM_README.md upstream Hermes README, preserved
├── NOTICE MIT attribution for Hermes + BioClaw + BioHermes
├── LICENSE MIT (Nous Research 2025 + BioHermes additions)
└── … full Hermes Agent tree (unchanged) …
Per docs/biohermes/PHASE1_PROGRESS.md:
biohermes chatsmoke test via OpenRouter +anthropic/claude-opus-4.6biohermes mcp test bioclaw— 2 tools (send_image,send_file) discovered in 834ms- 4-dimension spot check: trivial API (
query-uniprot→ real UniProt API → P00533 = EGFR / Homo sapiens), moderate D1 external binary (blast-search→ blastn / blastp), moderate D2 heavy Python (proteomics→ pyopenms / pandas), moderate D3 cross-skill (skills-hub→ atac-seq + scrna-preprocessing) — all 4 PASS - sec-report full loop: agent consumes SKILL.md →
pip installdeps → runssec_pipeline.pyon test dataset → emits 7-page PDF viamcp_bioclaw_send_image→ lands in outbox (31s, 11 tool calls) - Tier B all three active:
smart_model_routingroutes simple turns togemini-2.5-flash;approvals.mode: smartauto-approves safe ops;checkpoints.enabledcreates shadow-git snapshots before destructive file ops - Gateway mode verified in simulation (
TELEGRAM_HOME_CHANNEL=-1001234567890forced): shim emitsGATEWAY ACTIVE: call send_message(target='telegram:-1001234567890', media_files=['<path>'], text='…')— the hand-off the agent uses to dispatch through Hermes's native platform API
- Telegram / Discord / … e2e not yet run with a real bot token. Gateway mode is verified in simulation; a real messaging e2e (chat → agent → PDF returned in chat) is the next validation.
terminal.backend: local— the agent'spip installlands in the host Python env. Run under a throwaway venv if you want hard isolation; Docker / Singularity backends work too.- Non-editable
pip installdoes NOT ship the bio skills. The core runtime (biohermes,biohermes-reseed,hermesentry points, the MCP shim, the preset) does install correctly from a wheel and was verified end-to-end. Butoptional-skills/bioinformatics/(40 skills) is not in the wheel — this mirrors upstream Hermes, whose wheels also don't shipoptional-skills/. For bio skills, use one of:- Editable install (recommended):
pip install -e .from the checkout — bio skills are then visible viaskills.external_dirsin the auto-seeded config. - Manual copy for non-editable users:
cp -r optional-skills/bioinformatics ~/.biohermes/skills/afterpip install biohermes. - A future
biohermes-bundle-skillsconsole script will fetch skills from the fork automatically.
- Editable install (recommended):
- Skill runtime coverage is tiered. As of
docs/biohermes/PHASE1_COVERAGE.md: all 13 moderate + 2 complex skills have passed agent-loop consultation (agent reads SKILL.md and answers grounded questions correctly; 100% on those tiers). 3 of 24 trivial skills were consulted — the remaining 21 are mostly API-query wrappers of the same shape as the ones tested. Full-pipeline runtime validation (e.g. actually running MACS3, Kraken2, scanpy workflows end-to-end) has so far been done forsec-reportonly; other deep runtimes are Phase 1 part 2 work. bio-toolsandbio-manuscript-commonare resource skills expecting certain binaries / sibling skills to be available; see their SKILL.md for details.
BioHermes would not exist without:
- Hermes Agent © 2025 Nous Research, MIT — the runtime underneath. See
HERMES_UPSTREAM_README.mdfor Hermes's own README, preserved as shipped. - BioClaw © Runchuan-BU and contributors, MIT — the bioinformatics skill library.
BioHermes additions are © BioHermes contributors, MIT. See NOTICE and LICENSE.