homology-modeling

homology-modeling is a skill for Claude Code from Kdevos12/ALKYL. It costs 87 tokens per session (1,788 once invoked), scanned A, original, MIT.

Methods for predicting a protein’s three-dimensional shape from its amino-acid sequence when no suitable experimental structure is available. Homology modeling uses a related protein as a template; AI methods can predict structures directly.

In plain words
What is it for?
Use it to search for templates, build models with MODELLER, AlphaFold2, ColabFold, or ESMFold, assess model quality, and prepare structures for later simulations.
Why use it?
It supplies a starting structure for tasks such as docking or molecular-dynamics simulation when laboratory structures are missing or incomplete.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the alkyl plugin — 27 skills shipped together

Good fit Use it to search for templates, build models with MODELLER, AlphaFold2, ColabFold, or ESMFold, assess model quality, and prepare structures for later simulations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kdevos12/alkyl/homology-modeling
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 Kdevos12/ALKYL --skill homology-modeling
Clone the repo
git clone --depth 1 https://github.com/Kdevos12/ALKYL

Made for: Claude Code.

Or install alkyl, the plugin that ships this one along with the rest of its 27 skills.

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 homology-modeling

README.md
[![agentmods](https://agentmods.dev/badge/skills/kdevos12/alkyl/homology-modeling.svg)](https://agentmods.dev/skills/kdevos12/alkyl/homology-modeling)
Your own site
<a href="https://agentmods.dev/skills/kdevos12/alkyl/homology-modeling"><img src="https://agentmods.dev/badge/skills/kdevos12/alkyl/homology-modeling.svg" alt="Measured on agentmods" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,788 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.
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.00087 $0.01788
Opus 5 $0.00044 $0.00894
Sonnet 5 $0.00017 $0.00358
Haiku 4.5 $0.00009 $0.00179

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

Security

Grade A, and why

homology-modeling 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.

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/homology-modeling/SKILL.md · 166 lines

How it starts

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

Homology Modeling — Protein Structure Prediction

MODELLER 10.x · ColabFold · ESMFold · Biopython · pdbfixer · ProDy. For building protein 3D models from sequence when no experimental structure is available.

When to Use This Skill

  • No X-ray/CryoEM structure for your target protein (or coverage is partial)
  • Building a receptor model for docking or MD when AlphaFold DB lacks your variant/mutant
  • Constructing chimeric or engineered proteins not in existing databases
  • Validating or improving an AI-predicted structure with experimental template data
  • Generating a starting conformation for free-energy calculations (→ force-fields skill)

Decision Tree — Which Method to Use

Target sequence available?
  NO → retrieve from UniProt / NCBI first

Do you have a homologous template (sequence identity > 25%)?
  YES + identity > 50%  → MODELLER (comparative, references/modeller-basics.md)
  YES + identity 25–50% → MODELLER multi-template or AlphaFold2 with template
  NO / < 25%             → AlphaFold2 / ColabFold (references/alphafold-esm.md)

Throughput?
  Single target           → ColabFold interactive / MODELLER script
  Batch (>10 proteins)    → ColabFold batch CLI or ESMFold API
  No MSA / fast screen    → ESMFold (references/alphafold-esm.md)

After modeling:
  → Validate model        → references/structure-quality.md
  → Prepare for MD        → references/structure-prep.md
  → Prepare for docking   → references/structure-prep.md + docking skill

Quick Start

# --- Option A: MODELLER comparative modeling (single template) ---
from modeller import Environ
from modeller.automodel import AutoModel

env = Environ()
env.io.atom_files_directory = ['.', '../templates']

a = AutoModel(env,
              alnfile  = 'alignment.pir',   # PIR format — see modeller-basics.md
              knowns   = '5HT2A_template',  # template code (PDB ID, no extension)
              sequence = 'TARGET_SEQ')      # target sequence ID in .pir file

a.starting_model = 1
a.ending_model   = 5    # generate 5 models, pick best by DOPE score

a.make()

# Select best model
results = [(m.molpdf, m.name) for m in a.outputs
           if m['failure'] is None]
results.sort()
print(f"Best model: {results[0][1]}  DOPE: {results[0][0]:.1f}")

Read the full file on GitHub · 166 lines

Files

What ships with it

5 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 · 166 lines · 87 tokens per session scan A 54b39d34f0f2

Subscribe to this mod's changes

homology-modeling is a skill published in the GitHub repository Kdevos12/ALKYL (6 stars, last pushed 5mo ago), licensed MIT. It adds 87 tokens to every session and 1,788 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-31.

Related

Other skills, from other repositories