Agent skill

query-interpro

Query InterPro for protein domains and families. Use when user asks about protein domains, functional sites, protein families, domain architecture, or motifs. Triggers on "interpro", "protein domain", "domain architecture", "protein family", "functional site", "motif".

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill query-interpro --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/bioclaw/query-interpro/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 144
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# InterPro Protein Domain Database Query the InterPro REST API for protein domains, families, and functional sites. ## When to Use - User asks about domains in a protein - User wants to know what family a protein belongs to - User asks about functional sites or motifs - User wants domain architecture visualization ## How to Execute ```python import requests import json BASE_URL = "https://www.ebi.ac.uk/interpro/api" # 1. Get protein annotation (domains/families for a UniProt ID) def get_protein_domains(uniprot_id): url = f"{BASE_URL}/protein/uniprot/{uniprot_id}" r = requests.get(url, headers={"Accept": "application/json"}) r.raise_for_status() return r.json() # 2. Get InterPro entry details def get_interpro_entry(interpro_id): url = f"{BASE_URL}/entry/interpro/{interpro_id}" r = requests.get(url, headers={"Accept": "application/json"}) r.raise_for_status() return r.json() # 3. Search InterPro by text def search_interpro(query, max_results=10): url = f"{BASE_URL}/entry/interpro" params = {"search": query, "page_size": max_results} r = requests.get(url, params=params, headers={"Accept": "application/json"}) r.raise_for_status() return r.json() # 4. Get domain matches for a protein d

What's inside
Steps it walks through
  1. When to Use
  2. How to Execute
  3. Entry Types
  4. Follow-up Suggestions
More from awesome-bio-agent-skills
All skills →
About this skill
What does the query-interpro skill do?

Query InterPro for protein domains and families. Use when user asks about protein domains, functional sites, protein families, domain architecture, or motifs. Triggers on "interpro", "protein domain", "domain architecture", "protein family", "functional site", "motif".

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill query-interpro --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From BioTender-max/awesome-bio-agent-skills, a repository with 144 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going