Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add fmschulz/omics-skills --skill bio-interdomain-hgtgit clone --depth 1 https://github.com/fmschulz/omics-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/fmschulz/omics-skills/bio-interdomain-hgt)<a href="https://agentmods.dev/skills/fmschulz/omics-skills/bio-interdomain-hgt"><img src="https://agentmods.dev/badge/skills/fmschulz/omics-skills/bio-interdomain-hgt/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/fmschulz/omics-skills/bio-interdomain-hgt"><img src="https://agentmods.dev/badge/skills/fmschulz/omics-skills/bio-interdomain-hgt.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00047 | $0.03765 |
| Opus 5 | $0.00023 | $0.01883 |
| Sonnet 5 | $0.00009 | $0.00753 |
| Haiku 4.5 | $0.00005 | $0.00377 |
Grade A, and why
bio-interdomain-hgt scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 232 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Bio Interdomain HGT
Detect, polarize, and confirm horizontal gene transfer between a query genome
(virus, MAG, isolate, or bin) and other domains of life. Built for the common
asymmetric case where the query is well annotated but the comparison set is
genome-only (proteins missing). Pairs with /bio-annotation (homology/taxonomy),
/bio-phylogenomics (trees), /bio-viromics (viral classification), and
/bio-fasta-database-curator (building the arbiter database).
Instructions
Run the steps in order; capture outputs and provenance at each step. Steps 0 (database gate) and 5 (frame-aware context guard on eukaryotic DNA) are the ones most often skipped and most often responsible for wrong conclusions.
Use the versioned evidence driver after the homology, context, and tree tools have produced their normalized TSVs:
uv run --script skills/bio-interdomain-hgt/scripts/run_hgt_evidence.py \
forward_hits.tsv --arbiter-hits arbiter_hits.tsv --reciprocal reciprocal.tsv \
--context context.tsv --trees trees.tsv --sampling-depth sampling_depth.tsv \
--databases databases.json --hypotheses hypotheses.tsv --reflections reflections.tsv \
--query-domain ncldv --out results/bio-interdomain-hgt
The driver checksum-verifies the comprehensive arbiter, labels, and comparison collection; applies homology, reciprocal-best-hit, direction, frame-aware context, and phylogeny gates; normalizes confirmed candidates by lineage sampling depth; and requires a hypothesis reflection at every gate. Its run contract is schemas/hgt-evidence.schema.json.
Step 0 — Database availability gate (DO THIS FIRST; never hardcode paths)
HGT calls are only as good as the reference. Resolve the site/project DB root from
$BIO_DB_ROOT (or ask) — never bake absolute paths into the analysis. Verify that
BOTH of the following exist before any search; if one is missing, build it or STOP.
- A comprehensive multi-domain reciprocal-arbiter proteome: a single protein
search database (DIAMOND
.dmndor MMseqs2) that contains eukaryotes + bacteria- archaea + viruses (including NCLDV/giant viruses and phages) + organelles,
with a parallel
genome_id -> lineagelabels table. This one database is what makes "best-hit taxon" — and therefore transfer direction — meaningful.
- Building blocks: EukProt, GTDB, NCBI nr/RefSeq, IMG/VR, a giant-virus proteome (GVDB / gvclass-style), organelle RefSeq.
- Check: list
$BIO_DB_ROOTfor an existing combined-proteome.dmnd+ labels. - If absent: build it with
/bio-fasta-database-curator(prefix every header by domain, e.g.EUK__,BAC__,ARC__,NCLDV__,PHAGE__, thendiamond makedb). A clustered build (clusterednr / MMseqs2-reduced) is much faster at comparable sensitivity — prefer it. - A euk-only or virus-only arbiter CANNOT polarize transfer. Confirm it spans every candidate donor domain.
- archaea + viruses (including NCLDV/giant viruses and phages) + organelles,
with a parallel
- A per-domain genome/proteome collection for the comparison side (e.g. a
eukaryote genome catalog such as EukProt/MMETSP/NCBI/Mycocosm; a viral genome
catalog such as IMG/VR/RefSeq). Prefer one with a queryable metadata table
(per-genome taxonomy + completeness + contamination) so hits can be quality-flagged.
- Record whether the collection ships PROTEINS or only NUCLEOTIDES — this decides the forward-search tool in Step 2.
What ships with it
16 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- docs/database-availability.md 3.5 KB
- docs/README.md 2.1 KB
- fixtures/arbiter_hits.tsv 163 B
- fixtures/arbiter.dmnd 29 B
- fixtures/comparison.fna 27 B
- fixtures/context.tsv 136 B
- fixtures/databases.json 609 B
- fixtures/forward_hits.tsv 189 B
- fixtures/hypotheses.tsv 433 B
- fixtures/labels.tsv 77 B
- fixtures/reciprocal.tsv 82 B
- fixtures/reflections.tsv 642 B
- fixtures/sampling_depth.tsv 38 B
- fixtures/trees.tsv 128 B
- schemas/hgt-evidence.schema.json 511 B
- scripts/run_hgt_evidence.py 10 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 232 lines · 47 tokens per session scan A 85664f0a43a1
bio-interdomain-hgt is a skill published in the GitHub repository fmschulz/omics-skills (7 stars, last pushed 5d ago), licensed MIT. It adds 47 tokens to every session and 3,765 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
imaging-data-commons
Query and download public cancer imaging data from NCI Imaging Data Commons. Invoke for any question about IDC collections, cancer imaging datasets, DICOM data access, radiology (CT, MR, PET) or pathology AI training sets, metadata queries, visualization, or license checks — even when the user doesn't explicitly…
tamarind
Access a collection of open-source molecular design and structural biology tools on the Tamarind Bio platform, via its REST API or MCP server — no local GPUs required. Tamarind bundles popular open-source models for structure prediction (AlphaFold, Boltz, Chai, ESMFold), protein, binder, and de novo design…
lab-hardware-cad
Design custom laboratory hardware as parametric build123d models and export fabrication-ready STEP, STL, and DXF files - microfluidic chips and molds, optomechanical mounts and breadboard adapters, cuvette and microplate holders, tube racks, animal-behavior rigs, and 3D-printed instrument fixtures. Use when a research…
pkpd-modeling
Pharmacokinetic and pharmacodynamic modelling and simulation - non-compartmental analysis, compartmental and population PK, PK/PD and exposure-response, TMDD, PBPK orientation, bioequivalence, allometric scaling and first-in-human dose, drug interaction prediction, and Bayesian therapeutic drug monitoring. Use when…
relsa-severity-assessment
Multivariate severity assessment and humane endpoint prediction for laboratory animal studies using the RELSA (RELative Severity Assessment) score and ARIMA-based foRcast forecasting. Use when combining welfare readouts — body weight or weight loss, body temperature, clinical or nesting scores, biomarkers, activity…
scientific-slides
Build slide decks and presentations for research talks. Use this for making PowerPoint slides, conference presentations, seminar talks, research presentations, thesis defense slides, or any scientific talk. Provides slide structure, design templates, timing guidance, and visual validation. Works with PowerPoint and…