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 aristoteleo/PantheonOS --skill structural_biologygit clone --depth 1 https://github.com/aristoteleo/PantheonOSWrote 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/aristoteleo/pantheonos/structural_biology)<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.
<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>- NVIDIA SkillSpector warn
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.
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.00063 | $0.01227 |
| Opus 5 | $0.00032 | $0.00613 |
| Sonnet 5 | $0.00013 | $0.00245 |
| Haiku 4.5 | $0.00006 | $0.00123 |
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( 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)
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.
- 11d ago First seen · 117 lines · 63 tokens per session scan B 7f578f66248c
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.
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…
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…
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.
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.
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.
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…