biomed-skill-creator

biomed-skill-creator is a skill for Claude Code, Codex from PharMolix/OpenBioMed. It costs 89 tokens per session (1,955 once invoked), scanned A, original, MIT.

A guided process for creating or improving biomedical skills for the OpenBioMed toolkit. It starts by defining the task and inputs, then designs, tests, finalizes, and evaluates the workflow.

In plain words
What is it for?
Use it to automate biomedical tasks involving inputs such as molecules, proteins, pockets, or text, and produce outputs such as reports, predictions, or visualizations.
Why use it?
Biomedical workflows need domain-specific checks and real-data validation. The process helps turn an idea into a reusable skill while exposing missing requirements and edge cases.

Skill for Claude CodeCodex

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

Good fit Use it to automate biomedical tasks involving inputs such as molecules, proteins, pockets, or text, and produce outputs such as reports, predictions, or visualizations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pharmolix/openbiomed/biomed-skill-creator
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 biomed-skill-creator
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 biomed-skill-creator

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/pharmolix/openbiomed/biomed-skill-creator"><img src="https://agentmods.dev/badge/skills/pharmolix/openbiomed/biomed-skill-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,955 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.00089 $0.01955
Opus 5 $0.00044 $0.00978
Sonnet 5 $0.00018 $0.00391
Haiku 4.5 $0.00009 $0.00196

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

Security

Grade A, and why

biomed-skill-creator 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (examples/create_skill_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/biomed-skill-creator/SKILL.md · 229 lines

How it starts

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

BioMed Skill Creator

A meta-skill for creating and improving skills in the OpenBioMed biomedical toolkit.

Overview

This skill guides you through creating biomedical skills with interactive validation. Biomedical workflows require domain-specific validation with real data before finalization.

Workflow:

1. Capture Intent → 2. Design Workflow → 3. Interactive Validation → 4. Finalize → 5. Evaluate
        ↑                                                              ↓
        └──────────────────── Iterate if needed ←─────────────────────┘

Step 1: Capture Intent

Ask clarifying questions:

  1. What biomedical task should this skill perform?
  2. What inputs will users provide? (molecule name/SMILES, protein ID, text)
  3. What outputs should the skill produce? (reports, files, predictions, visualizations)
  4. Are there edge cases or constraints?

Input Types

Input Type Factory Method Example
Molecule Molecule.from_smiles() "CC(=O)OC1=CC=CC=C1C(=O)O"
Protein Protein.from_fasta() "MKFLILLFNILCLFPVLAADNH..."
Pocket Pocket.from_protein_ref_ligand() Protein + reference ligand
Text Text.from_str() "What is this molecule?"

Step 2: Design Workflow

Identify tools and steps. See references/tools_reference.md for available tools.

Common Workflow Patterns

Pattern Tools Flow
Drug-likeness molecule_name_requestmolecule_qed/sa/logp/lipinski → summarize
Protein Mutation protein_uniprot_requestmutation_explanationprotein_folding → visualize
Structure-Based Design protein_pdb_requestextract_moleculesstructure_based_drug_design → docking
Molecule Q&A molecule_name_requestmolecule_question_answering → format

Basic Workflow Code Pattern

from open_biomed.tools.tool_registry import TOOLS

# Get entity
tool = TOOLS["tool_name"]
result, message = tool.run(parameter=value)
entity = result.get("protein") or result.get("molecule")

# Process with other tools
another_tool = TOOLS["another_tool"]
output, msg = another_tool.run(entity=entity)

Read the full file on GitHub · 229 lines

Files

What ships with it

6 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. 12d ago First seen · 229 lines · 89 tokens per session scan A a7f74fe8346d

Subscribe to this mod's changes

biomed-skill-creator is a skill published in the GitHub repository PharMolix/OpenBioMed (1,106 stars, last pushed 1mo ago), licensed MIT. It adds 89 tokens to every session and 1,955 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

yao-meta-skill

A workflow for creating, improving, or evaluating reusable coding-agent skills from repeatable procedures, prompts, scripts, or standard operating instructions.

yaojingang/yao-meta-skill · 76 tokens

agentsop-bio-fraud-forensics

Screens biomedical / life-science papers for signs of data fabrication, image manipulation, and statistical anomalies, using the detection techniques distilled from the field's canonical exposure platforms (PubPeer, Data Colada, Science Integrity Digest, For Better Science) and tools (ImageTwin/Proofig, statcheck…

agentsope/SkillAlchemy · 167 tokens

energy-expert

Expert-level energy systems, smart grids, renewable energy, power management, and energy analytics. Use when the user mentions smart grid, renewable, power, utilities, or SCADA, or when the task involves Energy Systems, Smart Grid Technology, Standards and Protocols, or Smart Grid Operations.

personamanagmentlayer/pcl · 62 tokens

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

aws-healthomics-mcp

Generate, run, debug lifescience workflows.

Friz-zy/ai-capability-registry · 16 tokens

foldseek

Structure similarity search with Foldseek. Use this skill when: (1) Finding similar structures in PDB/AFDB databases, (2) Structural homology search, (3) Database queries by 3D structure, (4) Finding remote homologs not detected by sequence, (5) Clustering structures by similarity. For sequence similarity, use uniprot…

adaptyvbio/protein-design-skills · 90 tokens