protenix

protenix is a skill for Claude Code from 001TMF/blatant-why. It costs 3 tokens per session (4,463 once invoked), scanned A, original, MIT.

A tool for predicting the three-dimensional shapes of proteins, protein groups, and protein–drug combinations from molecular input data. It uses Protenix v1 and reports confidence measures for the predictions.

In plain words
What is it for?
Use it to predict a protein or complex structure, check a designed binder, evaluate a protein–ligand combination, or run multi-seed predictions on a local GPU, approved computing cluster, or Tamarind cloud.
Why use it?
It gives researchers a documented, validated way to run structure predictions and combine results from several random starting points.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md.

Good fit Use it to predict a protein or complex structure, check a designed binder, evaluate a protein–ligand combination, or run multi-seed predictions on a local GPU, approved computing cluster, or Tamarind cloud.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/001tmf/blatant-why/protenix
Install

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.

Any agent
npx skills add 001TMF/blatant-why --skill protenix
Clone the repo
git clone --depth 1 https://github.com/001TMF/blatant-why

Made for: Claude Code.

Wrote 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.

agentmods badge for protenix

README.md
[![agentmods](https://agentmods.dev/badge/skills/001tmf/blatant-why/protenix.svg)](https://agentmods.dev/skills/001tmf/blatant-why/protenix)
Your own site
<a href="https://agentmods.dev/skills/001tmf/blatant-why/protenix"><img src="https://agentmods.dev/badge/skills/001tmf/blatant-why/protenix.svg" alt="Measured on agentmods" height="20"></a>
Per session 3 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,463 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00003 $0.04463
Opus 5 $0.00002 $0.02232
Sonnet 5 $0.00001 $0.00893
Haiku 4.5 $0.00000 $0.00446

Measured 8d ago against content hash bf621858e9de, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

protenix 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 8d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/multi_seed_ensemble.py, scripts/protenix_fold.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

templates/.claude/skills/protenix/SKILL.md · 319 lines

How it starts

The opening of the file, as written. The whole thing — 319 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Protenix — Structure Prediction Skill

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 scripts instead of ad-hoc bash invocations.

The default compute target is the local GPU. HPC (RunPod) is the second choice and Tamarind cloud is the fallback — set the target via --target (see scripts).

When to Use This Skill

Use Protenix when you have:

  • A sequence (or set of sequences) and need a 3D structure — single chain, complex, homo-oligomer, or protein-ligand.
  • A designed binder to validate by refolding — predict the binder + target complex and inspect ipTM / interface pLDDT.
  • A need for explicit confidence metrics — ipTM, pTM, pLDDT, ranking_score.
  • A need for multi-seed ensemble stability — 3-25 seeds with variance reported.
  • A protein-ligand complex — SMILES + protein chain via the ligand entity type.
  • A local GPU available (CUDA, bf16 capable) or an approved HPC / Tamarind path.

Do NOT use Protenix when:

  • You need to design a new binder → use pxdesign (de novo binder) or boltzgen (antibody / nanobody).
  • You only need to score an existing prediction (ipSAE from PAE matrices) → use by-scoring.
  • You need the full liability + developability battery → use by-screening.
  • You need to fetch sequences from PDB/UniProt → use by-database first, then return here.
  • You are running on CPU only → Protenix requires a CUDA-capable GPU; no CPU fallback.
  • You want pipeline orchestration across research → design → screen → use by-design-workflow.

Quick Start

Local GPU (default). Write an input JSON, then run the wrapper script:

# 1. Write input spec (one prediction object, JSON array form)
cat > /tmp/fold_run/input.json <<'JSON'
[
  {
    "name": "lysozyme_pred",
    "sequences": [
      {"proteinChain": {"sequence": "KVFGRCELAA...", "count": 1}}
    ],
    "modelSeeds": [42],
    "sampleCount": 1
  }
]
JSON

# 2. Run via the wrapper (validates input, invokes local GPU CLI)
python scripts/protenix_fold.py \
  --input /tmp/fold_run/input.json \
  --output-dir /tmp/fold_run/output \
  --model protenix_base_default_v1.0.0 \
  --target local

# 3. Read confidence
ls /tmp/fold_run/output/lysozyme_pred/seed_42/*_summary_confidence_sample_*.json

Read the full file on GitHub · 319 lines

Files

What ships with it

4 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.

Changes

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.

  1. 8d ago First seen · 319 lines · 3 tokens per session scan A bf621858e9de

Subscribe to this mod's changes

protenix is a skill published in the GitHub repository 001TMF/blatant-why (114 stars, last pushed 22d ago), licensed MIT. It adds 3 tokens to every session and 4,463 once invoked, about $0.0000 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-30.

Related

Other skills, from other repositories

esm2

Skill for working with ESM2 protein language models from Meta FAIR. Use this skill whenever the user wants to generate protein embeddings or representations, score variant effects or predict mutation fitness, run contact prediction, or use ESMFold for structure prediction. Also trigger when the user mentions ESM2…

naity/FM4Life · 86 tokens

evo2

Skill for genomic sequence modeling and design with Evo2 from Arc Institute. Use this skill when a user wants to model or generate DNA sequences, score variant effects at single-nucleotide resolution, extract genomic embeddings, analyze mutations in non-coding or coding regions, design synthetic genomic elements…

naity/FM4Life · 153 tokens

alphafold

Skill for protein structure prediction and analysis with AlphaFold. Use this skill whenever a user wants to predict or fetch a protein 3D structure, download structures from the AlphaFold Database (AFDB), run ColabFold for novel proteins, parse pLDDT confidence scores or PAE (predicted aligned error) from AlphaFold…

naity/FM4Life · 141 tokens

prott5

Skill for protein embeddings using ProtTrans models (ProtT5, ProtBERT) from Rostlab. Use this skill whenever a user wants protein embeddings or representations for downstream ML tasks, protein classification (subcellular localization, membrane prediction, secondary structure annotation), similarity search, or…

naity/FM4Life · 146 tokens

deepchem

Molecular ML with diverse featurizers and pre-built datasets. Use for property prediction (ADMET, toxicity) with traditional ML or GNNs when you want extensive featurization options and MoleculeNet benchmarks. Best for quick experiments with pre-trained models, diverse molecular representations. For graph-first…

synthetic-sciences/openscience · 78 tokens

binding-affinity

Empirical affinity estimates, ligand energy inspection, docking-score consensus, and batch virtual screening. Full MM/GBSA requires a validated external workflow.

synthetic-sciences/openscience · 33 tokens