protein-function-prediction

protein-function-prediction is a skill for Claude Code, Codex from PharMolix/OpenBioMed. It costs 73 tokens per session (938 once invoked), scanned A, original, MIT.

A protein-analysis workflow that uses the BioT5 model to suggest a protein's function and properties from its amino-acid sequence. An amino-acid sequence is the ordered list of building blocks that makes up a protein.

In plain words
What is it for?
Use it to inspect a FASTA protein sequence, ask a functional question, and obtain a concise description of possible biological roles, pathways, or interactions.
Why use it?
It gives researchers a quick way to generate functional clues for known or unannotated proteins without experimental data.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to inspect a FASTA protein sequence, ask a functional question, and obtain a concise description of possible biological roles, pathways, or interactions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pharmolix/openbiomed/protein-function-prediction
About the project

OpenBioMed is an agent platform and toolkit collection for biomedical research and drug discovery, covering areas such as molecular design, protein analysis, and single-cell data analysis. It is intended for researchers and provides the biomedical skills listed in the catalogue as workflows for Claude Code.

PharMolix/OpenBioMed · 1,106 stars · on GitHub

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 PharMolix/OpenBioMed --skill protein-function-prediction
Clone the repo
git clone --depth 1 https://github.com/PharMolix/OpenBioMed

Made for: Claude Code, Codex.

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 protein-function-prediction

README.md
[![agentmods](https://agentmods.dev/badge/skills/pharmolix/openbiomed/protein-function-prediction.svg)](https://agentmods.dev/skills/pharmolix/openbiomed/protein-function-prediction)
Your own site
<a href="https://agentmods.dev/skills/pharmolix/openbiomed/protein-function-prediction"><img src="https://agentmods.dev/badge/skills/pharmolix/openbiomed/protein-function-prediction.svg" alt="Measured on agentmods" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 938 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.00073 $0.00938
Opus 5 $0.00036 $0.00469
Sonnet 5 $0.00015 $0.00188
Haiku 4.5 $0.00007 $0.00094

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

Security

Grade A, and why

protein-function-prediction 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 1 executable file (examples/basic_example.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.

skills/protein-function-prediction/SKILL.md · 111 lines

How it starts

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

Protein Function Prediction

Predict functional annotations and properties for proteins from their amino acid sequences using the BioT5 model.

When to Use

  • You have a protein FASTA sequence and need to understand its biological role
  • You want to identify enzyme function, pathway involvement, or molecular mechanisms
  • You need quick functional insights without experimental data
  • You're characterizing novel or unannotated protein sequences

Workflow

from open_biomed.data import Protein, Text
from open_biomed.core.pipeline import InferencePipeline

# Create protein from FASTA sequence
protein = Protein.from_fasta("YOUR_AMINO_ACID_SEQUENCE")

# Create the question for functional annotation
question = Text.from_str(
    "Inspect the protein sequence and offer a concise description of its properties."
)

# Load the BioT5 model for protein question answering
pipeline = InferencePipeline(
    task="protein_question_answering",
    model="biot5",
    model_ckpt="./checkpoints/server/protein_question_answering_biot5.ckpt",
    device="cuda:0"
)

# Run inference to get functional annotation
outputs = pipeline.run(protein=protein, text=question)
function_description = outputs[0][0].str
print(function_description)

See examples/basic_example.py for a complete runnable script.

Expected Outputs

The model returns a text description that typically includes:

Output Component Example
Enzyme name Phosphoribosylformylglycinamidine synthase
Biological pathway Purine biosynthesis pathway
Catalytic activity FGAR to FGAM conversion
Complex membership Part of FGAM synthase complex (PurQ, PurL, PurS)
Mechanism details ATP-dependent, glutamine amidotransferase activity

Example Output

Part of the phosphoribosylformylglycinamidine synthase complex involved in the purines biosynthetic pathway. Catalyzes the ATP-dependent conversion of formylglycinamide ribonucleotide (FGAR) and glutamine to yield formylglycinamidine ribonucleotide (FGAM) and glutamate.

Read the full file on GitHub · 111 lines

Files

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.

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 · 111 lines · 73 tokens per session scan A 2bd2ce936d49

Subscribe to this mod's changes

protein-function-prediction is a skill published in the GitHub repository PharMolix/OpenBioMed (1,106 stars, last pushed 1mo ago), licensed MIT. It adds 73 tokens to every session and 938 once invoked, about $0.0004 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

uniprot

Access UniProt for protein sequence and annotation retrieval. Use this skill when: (1) Looking up protein sequences by accession, (2) Finding functional annotations, (3) Getting domain boundaries, (4) Finding homologs and variants, (5) Cross-referencing to PDB structures. For structure retrieval, use pdb. For sequence…

adaptyvbio/protein-design-skills · 79 tokens

uniprot_lookup

Query UniProt database for protein information including function, organism, sequence, and structure. Use this skill when: (1) User provides a UniProt accession (e.g., P38398, Q9H3P7), (2) User asks about a protein by name (e.g., "BRCA1", "hemoglobin"), (3) User wants protein function, organism, or sequence…

maris205/open-rosalind · 101 tokens

esm

Comprehensive toolkit for protein language models including ESM3 (generative multimodal protein design across sequence, structure, and function) and ESM C (efficient protein embeddings and representations). Use this skill when working with protein sequences, structures, or function prediction; designing novel…

synthetic-sciences/openscience · 86 tokens

Single-Cell Analysis Skills Index

Core skills for single-cell RNA-seq analysis: quality control, cell type annotation, and trajectory inference. These are high-priority actionable workflows — load them first for common single-cell tasks.

aristoteleo/PantheonOS · 48 tokens

Protein Structures — AlphaFold & PDB

Obtain and predict protein 3D structures — fetch AlphaFold predicted models from the AlphaFold DB, experimental structures from the RCSB PDB, or predict a novel sequence with ColabFold — and visualise them in the Mol desktop app.

aristoteleo/PantheonOS · 63 tokens

tao-generate-video-reasoning-annotations

Multi-step video annotation pipeline that turns raw videos into Chain-of-Thought training data — multi-level captions, structured descriptions, and QA pairs (MCQ, binary, open-ended) with reasoning traces, via VLM/LLM distillation. Use when the user wants to "create video training data", "generate video QA datasets"…

NVIDIA-TAO/tao-skill-bank · 134 tokens