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 naity/FM4Life --skill evo2git clone --depth 1 https://github.com/naity/FM4LifeWrote 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/naity/fm4life/evo2)<a href="https://agentmods.dev/skills/naity/fm4life/evo2"><img src="https://agentmods.dev/badge/skills/naity/fm4life/evo2.svg" alt="Measured on agentmods" height="20"></a>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.00153 | $0.02860 |
| Opus 5 | $0.00077 | $0.01430 |
| Sonnet 5 | $0.00031 | $0.00572 |
| Haiku 4.5 | $0.00015 | $0.00286 |
Grade A, and why
evo2 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 7d 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 — 289 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Evo2: Genome-Scale DNA Foundation Model
Overview
Evo2 is a DNA language model from Arc Institute that operates at single-nucleotide resolution with up to 1 million base pair context. It is trained on 8.8 trillion tokens from OpenGenome2 — sequences spanning all domains of life.
This is a DNA model, not a protein model. Input is raw nucleotide sequence (A/C/G/T). For protein tasks, use ESM2 or ESM-C instead.
Core capabilities:
- Variant effect scoring — zero-shot log-likelihood scoring of SNPs, indels, regulatory variants
- Sequence embeddings — genomic representations for downstream ML (classification, regression)
- Sequence generation — autoregressive DNA sequence design from a prompt
- Positional entropy — per-nucleotide uncertainty across a sequence
- Perplexity analysis — sliding window perplexity for detecting unusual regions
Architecture: StripedHyena 2 — hybrid attention + gated convolutions. Not a standard Transformer. Attention only at layers 3, 10, 17, 24, 31; the rest are Hyena convolution blocks.
Installation
# Full install (all models including 20B/40B)
conda install -c nvidia cuda-nvcc cuda-cudart-dev
conda install -c conda-forge transformer-engine-torch=2.3.0
pip install flash-attn==2.8.0.post2 --no-build-isolation
pip install evo2
# Light install (7B models only — no FP8 required)
pip install flash-attn==2.8.0.post2 --no-build-isolation
pip install evo2
Requirements: Python 3.11–3.12, CUDA 12.1+, Linux (WSL2 with caveats).
Model Selection
| Checkpoint | Context | Params | Hardware | Use case |
|---|---|---|---|---|
evo2_1b_base |
8K | 1B | Any GPU | Testing, quick iteration |
evo2_7b_base |
8K | 7B | Any GPU | Good quality, short contexts |
evo2_7b_262k |
262K | 7B | Any GPU | Mid-range genomic context |
evo2_7b |
1M | 7B | Any GPU | Best default |
evo2_20b |
1M | 20B | H100 (FP8) | High accuracy |
evo2_40b |
1M | 40B | Multi-H100 | Maximum accuracy |
evo2_7b_microviridae |
8K | 7B | Any GPU | Phage/viral sequences |
What ships with it
3 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.
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.
- 7d ago First seen · 289 lines · 0 tokens per session scan A 9ec7989465d2
evo2 is a skill published in the GitHub repository naity/FM4Life (2 stars, last pushed 5mo ago), licensed MIT. It adds 153 tokens to every session and 2,860 once invoked, about $0.0008 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
cerna-analysis
Use when building a ceRNA regulatory network from a key gene list by combining bundled miRNA-mRNA and miRNA-lncRNA database files, with flat-file CSV exports and PDF visualization in a single output directory. NOT for: differential expression, single-cell analysis, enrichment analysis, or workflows without a key gene…
cibersort-immune-infiltration-analysis
Use when estimating relative immune cell infiltration from a bulk expression matrix with a CIBERSORT-style nu-SVR deconvolution workflow based on an LM22 signature matrix, comparing one case group against one control group, and generating structured tables plus immune-fraction plots. NOT for single-cell RNA-seq…
gene-protein-expression-matrix-normalization
Use when normalizing bulk gene or protein expression matrices with log2 transform, z-score standardization, or min-max scaling before downstream visualization or exploratory analysis. NOT for count-model normalization such as TPM/DESeq2 size factors, batch correction, or single-cell preprocessing.
by-campaign-optimizer
Multi-round design campaigns generate scored designs at every iteration. This skill turns that scoring history into actionable parameter changes for the next round — training a lightweight Random Forest on the designs you already have, ranking which features actually discriminate good from bad, and proposing…
protenix
Protenix v1 is an AF3-class structure prediction model (368M parameters) for proteins, complexes, and protein-ligand systems. This skill wraps the protenix CLI with a documented input spec, an input-validating Python entry point, and a multi-seed ensemble aggregator so that callers can drive predictions through…
bedpe-format-handling
Use when your ChIP-Seq input is paired-end sequencing data stored in BEDPE format (e.g., CTCFPEChIPchr2250k.bedpe.gz), and you need to estimate fragment length and call peaks while respecting the paired nature of the reads rather than treating them as independent single-end alignments.