Protein Structures — AlphaFold & PDB

Protein Structures — AlphaFold & PDB is a skill for Claude Code, Codex from aristoteleo/PantheonOS. It costs 63 tokens per session (1,227 once invoked), scanned B, original, BSD-2-Clause.

A workflow for obtaining or predicting three-dimensional protein structures using the AlphaFold Database, the RCSB Protein Data Bank, or ColabFold. The RCSB PDB stores experimentally determined protein structures, while AlphaFold predicts structures from protein sequences.

In plain words
What is it for?
It helps fetch predicted AlphaFold models, download experimental PDB structures, predict structures for new protein sequences, and display them visually.
Why use it?
It helps find an existing structure before spending time predicting one, and provides instructions for viewing the result in the Mol desktop app.

Skill for Claude CodeCodex

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

Good fit It helps fetch predicted AlphaFold models, download experimental PDB structures, predict structures for new protein sequences, and display them visually.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aristoteleo/pantheonos/structural_biology
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 aristoteleo/PantheonOS --skill structural_biology
Clone the repo
git clone --depth 1 https://github.com/aristoteleo/PantheonOS

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 Structures — AlphaFold & PDB

README.md
[![agentmods](https://agentmods.dev/badge/skills/aristoteleo/pantheonos/structural_biology/github.svg)](https://agentmods.dev/skills/aristoteleo/pantheonos/structural_biology)
Your own site
<a href="https://agentmods.dev/skills/aristoteleo/pantheonos/structural_biology"><img src="https://agentmods.dev/badge/skills/aristoteleo/pantheonos/structural_biology/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.

agentmods 80×15 button for Protein Structures — AlphaFold & PDB

Your own site · 80×15
<a href="https://agentmods.dev/skills/aristoteleo/pantheonos/structural_biology"><img src="https://agentmods.dev/badge/skills/aristoteleo/pantheonos/structural_biology.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,227 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 69
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 69
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00063 $0.01227
Opus 5 $0.00032 $0.00613
Sonnet 5 $0.00013 $0.00245
Haiku 4.5 $0.00006 $0.00123

Measured 11d ago against content hash 7f578f66248c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade B, and why

Protein Structures — AlphaFold & PDB scanned grade B with 2 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 11d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

resp = requests.post("https://api.esmatlas.com/foldSequence/v1/pdb/",

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

meta = requests.get(
pantheon/factory/templates/skills/structural_biology/SKILL.md · 117 lines

How it starts

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

Protein Structures — AlphaFold & PDB

How to get a protein's 3D structure and show it to the user. Most "predict the structure of protein X" requests do not require running AlphaFold — the AlphaFold DB already holds a precomputed prediction for nearly every known protein. Run a prediction only for a sequence that is not a known UniProt entry.

1. AlphaFold DB — predicted structures (the usual path)

The AlphaFold Database has precomputed AlphaFold models for ~200M+ UniProt proteins. If the protein is a known UniProt entry, its predicted structure already exists — just fetch it (instant, free).

Use the API — do not hand-build file URLs (the model version, currently v6, changes; the API always returns the live URLs):

import requests

acc = "P00533"  # UniProt accession (human EGFR)
meta = requests.get(
    f"https://alphafold.ebi.ac.uk/api/prediction/{acc}", timeout=30
).json()[0]
cif_url = meta["cifUrl"]          # also: pdbUrl, bcifUrl
with open(f"{acc}.cif", "wb") as fh:
    fh.write(requests.get(cif_url, timeout=60).content)

No UniProt accession yet? Resolve a gene name / protein name to an accession first via the UniProt REST API (https://rest.uniprot.org/uniprotkb/search?query=<gene>+AND+organism_id:9606&format=json) or the gget package — pick the reviewed (Swiss-Prot) entry.

2. RCSB PDB — experimental structures

For a solved, experimental structure, download from the RCSB PDB by id:

https://files.rcsb.org/download/<PDBID>.cif      (or .pdb)

3. Predicting a novel sequence

If the sequence is not a known UniProt protein (a designed, mutant, or synthetic sequence), the AlphaFold DB has nothing — you must predict it.

ESMFold API — the practical path (no GPU)

ESMFold (Meta's structure predictor) has a public folding API: POST a raw amino-acid sequence, get a PDB structure back. No GPU, no install, no databases — this is the realistic way to predict a novel sequence here.

import requests

seq = "MALWMRLLPLLALLALWGPDPAAA..."          # one-letter, a single chain
resp = requests.post("https://api.esmatlas.com/foldSequence/v1/pdb/",
                     data=seq, timeout=180)
resp.raise_for_status()
with open("predicted.pdb", "w") as fh:
    fh.write(resp.text)

Read the full file on GitHub · 117 lines

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. 11d ago First seen · 117 lines · 63 tokens per session scan B 7f578f66248c

Subscribe to this mod's changes

Protein Structures — AlphaFold & PDB is a skill published in the GitHub repository aristoteleo/PantheonOS (484 stars, last pushed today), licensed BSD-2-Clause. It adds 63 tokens to every session and 1,227 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). 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

biopython

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use…

synthetic-sciences/openscience · 76 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

structure-prediction

Protein structure prediction from sequence. ESMFold-based, single GPU, no MSA needed. Predicts 3D structures with pLDDT confidence scores for drug discovery targets.

synthetic-sciences/openscience · 42 tokens

ncbi_gene

Query NCBI Gene via E-utilities/Datasets API. Search by symbol/ID, retrieve gene info (RefSeqs, GO, locations, phenotypes), batch lookups, for gene annotation and functional analysis.

ai4protein/VenusFactory2 · 49 tokens

ncbi_clinvar

Query NCBI ClinVar for variant clinical significance. Search by gene/condition/CLNSIG, interpret pathogenicity, use E-utilities or FTP; annotate VCFs. Use project tools in src.tools.database.ncbi.

ai4protein/VenusFactory2 · 53 tokens

nature_figure

Submission-grade Nature/high-impact journal figure workflow for Python or R. Use whenever the user asks to create, revise, audit, or polish manuscript figures, multi-panel scientific plots, figures4papers-style matplotlib plots, or journal-ready SVG/PDF/TIFF outputs, especially for Nature-family or other high-impact…

ai4protein/VenusFactory2 · 228 tokens