Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Query and search the EMBL-EBI Ontology Lookup Service (OLS) for biomedical ontology terms, definitions, and hierarchies across 250+ ontologies (e.g., GO, DOID, HP). Use when the user asks to search for terms, retrieve details, navigate hierarchies (parents, children, ancestors), look up properties and individuals, get autocomplete suggestions, or access ontology metadata and statistics.
.claude/skills/mkurman-embl-ebi-ols/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-09 | ✗→✓ | ▲ Improved | 419% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 57% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 70% | 0% |
| case-14 | ✗→✓ | ▲ Improved | 203% | 0% |
| case-18 | ✓→✗ | ▼ Worse | 131% | 0% |
uv: Read the uv skill and follow its Setup instructions to ensureuv is installed and on PATH.
this skill directory then (1) prominently notify the user to check the terms at https://www.ebi.ac.uk/ols4/api-docs, then (2) create the file recording the notification text and timestamp.
utility script under scripts/ for all API interactions, including checking status. NEVER use curl or custom Python requests to query API directly.
maximum 5 requests per second. The provided utility scripts automatically enforce this.
output.
Use this skill whenever a user query matches one of these patterns:
--summary
--relations children
get_term.py --obo_id <ID> --relations parents--obo_id <ID> --relations ancestors
get_term.py --ontology <id> --roots--relations hierarchicalParents
--relations hierarchicalChildren
--relations parents,hierarchicalParents
--ontology <id>
--ontology go --exact
"..." --ontology <id> --defining
--rows N --start <offset>
suggest_ols.py --query "..."get_ontology.py --id <id>get_stats.py> Multi-step queries (e.g., "What is the parent of myocardial infarction?"): > When the user names a term but you don't know its OBO ID, complete in > exactly 2 steps — do NOT search across multiple ontologies: > > 1. Search in the single most appropriate ontology: search_ols.py --query > "myocardial infarction" --ontology doid --exact --rows 1 --output > /tmp/step1.json > 2. Get relations using the OBO ID from step 1: get_term.py --obo_id > DOID:5844 --relations parents --output /tmp/step2.json > > Ontology selection rule: ALWAYS use doid for common human diseases > (e.g., diabetes, cancer), hp for phenotypes, go for gene functions, > chebi for chemicals, uberon for anatomy, cl for cell types. Use mondo > ONLY when cross-species context is explicitly mentioned or needed.
1. Search Terms Across Ontologies
Search for ontology terms by keyword and return clean JSON.
bashuv run scripts/search_ols.py --query "diabetes" \ --rows 5 --output /tmp/ols_search_results.json 2>/dev/null
> Important: --output is required for all scripts. Results are always > written to the specified file. For larger output, you can limit --rows > (e.g., 5-10) or paginate using --start.
Returned Fields: JSON results include iri, label, description, ontology_name, ontology_prefix, obo_id, short_form, type, is_defining_ontology, and exact_synonyms.
Pagination: Output includes a pagination block with start, rows, and has_more so you can decide whether to fetch more results.
Options:
--query: Search string (required). Searches labels, synonyms,descriptions, and identifiers.
--ontology: Filter by ontology ID (e.g., go, doid, efo, hp).Recommended when you know which ontology to search — avoids noise from 250+ ontologies.
--type: Filter by entity type: class, property, individual, orontology.
--exact: Flag for exact label match only. Use this for entityresolution when mapping a user's string to a specific ontology term ID.
--defining: Only return terms from their defining (authoritative)ontology. E.g., GO:0005634 only from GO, not cross-referenced copies.
--obsolete: Flag to include obsolete terms in results.--local: Only return terms in their defining ontology.--childrenOf: Restrict to children of given term IRI(s), comma-separated.--allChildrenOf: Restrict to all children including transitive relations(part of, develops from), comma-separated IRIs.
--queryFields: Comma-separated fields to search in (e.g.,label,synonym,description).
--fieldList: Comma-separated fields to return.--groupField: Group results by unique IRI.--isLeaf: Only return leaf terms (no children).--rows: Number of results to return (default 10).--start: Pagination offset (default 0).--output: File path to save results (required).2. Autocomplete / Suggest
Get autocomplete suggestions for partial term names.
bashuv run scripts/suggest_ols.py --query "diabet" --rows 5 \ --output /tmp/ols_suggest.json 2>/dev/null
Options:
--query: Partial term to autocomplete (required).--ontology: Filter by ontology ID(s), comma-separated.--rows: Number of suggestions (default 10).--start: Pagination offset (default 0).--output: File path to save results (default: stdout).3. Get Term Details
Retrieve full details for a specific ontology term by its OBO ID or IRI.
bashuv run scripts/get_term.py --obo_id "GO:0005634" \ --output /tmp/ols_term.json 2>/dev/null
Returned Fields: JSON includes iri, label, description, obo_id, synonyms, ontology_name, is_obsolete, is_defining_ontology, has_children, is_root, annotation, in_subset, and any requested relations.
Summary Mode: Use --summary to get a clean, human-readable block on stdout (Label, OBO ID, Ontology, Definition, Synonyms). The full JSON is always saved to the --output file.
bashuv run scripts/get_term.py --obo_id "GO:0005634" --summary \ --output /tmp/nucleus_full.json
Options:
--obo_id: OBO-style identifier (e.g., GO:0005634, DOID:9351). Mutuallyexclusive with --iri. Auto-converts to IRI with double encoding.
--iri: Full IRI of the term. Mutually exclusive with --obo_id.--ontology: Ontology ID (auto-derived from --obo_id if not provided).--relations: Comma-separated list of relations to fetch.parents, children, ancestors,descendants
hierarchicalParents, hierarchicalChildren, hierarchicalAncestors, hierarchicalDescendants
graph — full graph JSON for a term> Note: Use hierarchical variants for anatomical/developmental > ontologies (UBERON, CL) where transitive relations like "part of" and > "develops from" are critical for navigating the hierarchy.
--roots: List root terms of the ontology (requires --ontology).--preferred_roots: List preferred root terms (requires --ontology).--summary: Human-readable summary on stdout, full JSON to --output.--output: File path to save results (default: stdout).4. Get Property Details
Retrieve details for an ontology property (relation type) with hierarchy.
bashuv run scripts/get_property.py --obo_id "BFO:0000051" --ontology go \ --output /tmp/ols_property.json 2>/dev/null
Options:
--obo_id: OBO-style ID of the property. Mutually exclusive with --iri.--iri: Full IRI of the property. Mutually exclusive with --obo_id.--ontology: Ontology ID (required with --iri).--relations: Comma-separated: parents, children, ancestors,descendants.
--roots: List root properties of the ontology (requires --ontology).--output: File path to save results (default: stdout).5. Get Individual Details
Retrieve details for an ontology individual (instance).
bashuv run scripts/get_individual.py --obo_id "IAO:0000103" --ontology iao --types \ --output /tmp/ols_individual.json 2>/dev/null
Options:
--obo_id: OBO-style ID. Mutually exclusive with --iri.--iri: Full IRI. Mutually exclusive with --obo_id.--ontology: Ontology ID (required with --iri).--types: Fetch the direct types (classes) of this individual.--alltypes: Fetch all types including ancestor classes.--output: File path to save results (default: stdout).6. Get Ontology Information
List available ontologies or retrieve details for a specific one.
bashuv run scripts/get_ontology.py --id go \ --output /tmp/ols_ontology.json 2>/dev/null
Options:
--id: Specific ontology ID (e.g., go, efo, doid). If omitted, listsall ontologies.
--page: Page number for pagination (default 0).--size: Number of ontologies per page (default 20).--output: File path to save results (default: stdout).7. Get OLS Statistics
Retrieve index statistics (total ontologies, classes, properties, individuals).
bashuv run scripts/get_stats.py --output /tmp/ols_stats.json 2>/dev/null
Options:
--output: File path to save results (default: stdout).references/api_reference.md for common ontology IDs, OBO ID format, and key API endpoints.
suggest_ols.py for autocomplete when you have a partial term name.search_ols.py. Use --defining to prioritizeauthoritative definitions. Use --exact for entity resolution.
get_term.py with the OBO ID or IRI. Use--summary for a concise view.
parents,children for is-a only, or --relations hierarchicalParents,hierarchicalChildren for "part of" etc.
get_term.py --ontology go --roots.get_property.py or get_individual.py.get_ontology.py.get_stats.py.| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-10 | fail→fail | 5,027 | 6,441 | +28% | 1 | 1 | 0% | 228 | 3,514 | +1441% | 0 | 0 | — |
case-01 | fail→fail | 10,882 | 7,418 | -32% | 1 | 1 | 0% | 2,147 | 3,661 | +71% | 0 | 0 | — |
case-02 | fail→fail | 9,360 | 7,841 | -16% | 1 | 1 | 0% | 1,821 | 3,681 | +102% | 0 | 0 | — |
case-03 | fail→fail | 4,030 | 4,675 | +16% | 1 | 1 | 0% | 752 | 3,841 | +411% | 0 | 0 | — |
case-04 | fail→fail | 7,518 | 7,484 | -0% | 1 | 1 | 0% | 1,272 | 3,644 | +186% | 0 | 0 | — |
case-05 | pass→pass | 5,037 | 8,127 | +61% | 1 | 1 | 0% | 778 | 4,822 | +520% | 0 | 0 | — |
case-06 | fail→fail | 7,756 | 7,038 | -9% | 1 | 1 | 0% | 1,521 | 3,617 | +138% | 0 | 0 | — |
case-07 | fail→fail | 8,175 | 7,850 | -4% | 1 | 1 | 0% | 1,486 | 3,838 | +158% | 0 | 0 | — |
case-08 | fail→fail | 15,064 | 8,750 | -42% | 1 | 1 | 0% | 3,012 | 3,786 | +26% | 0 | 0 | — |
case-09 | fail→pass | 4,473 | 4,370 | -2% | 1 | 1 | 0% | 777 | 4,031 | +419% | 0 | 0 | — |
case-11 | fail→pass | 13,218 | 7,978 | -40% | 1 | 1 | 0% | 2,372 | 3,720 | +57% | 0 | 0 | — |
case-12 | fail→pass | 11,942 | 3,295 | -72% | 1 | 1 | 0% | 2,194 | 3,728 | +70% | 0 | 0 | — |
case-13 | fail→fail | 9,924 | 8,586 | -13% | 1 | 1 | 0% | 1,722 | 3,775 | +119% | 0 | 0 | — |
case-14 | fail→pass | 6,704 | 4,375 | -35% | 1 | 1 | 0% | 1,212 | 3,673 | +203% | 0 | 0 | — |
case-15 | fail→fail | 47,344 | 8,690 | -82% | 1 | 1 | 0% | 2,141 | 3,746 | +75% | 0 | 0 | — |
case-16 | fail→fail | 7,575 | 7,702 | +2% | 1 | 1 | 0% | 1,498 | 3,772 | +152% | 0 | 0 | — |
case-17 | fail→fail | 5,546 | 4,394 | -21% | 1 | 1 | 0% | 1,128 | 3,760 | +233% | 0 | 0 | — |
case-18 | pass→fail | 9,948 | 8,995 | -10% | 1 | 1 | 0% | 1,664 | 3,836 | +131% | 0 | 0 | — |
case-19 | fail→fail | 5,579 | 5,848 | +5% | 1 | 1 | 0% | 1,007 | 3,443 | +242% | 0 | 0 | — |
case-20 | pass→pass | 5,160 | 6,762 | +31% | 1 | 1 | 0% | 918 | 4,448 | +385% | 0 | 0 | — |
case-21 | pass→pass | 10,206 | 10,641 | +4% | 1 | 1 | 0% | 1,716 | 5,055 | +195% | 0 | 0 | — |
case-22 | pass→fail | 5,480 | 7,591 | +39% | 1 | 1 | 0% | 1,050 | 3,696 | +252% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 9 counted toward the lift figure. The other 13 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +9 percentage points is the difference between those two pass rates over the 9 comparable cases. 7 cases got worse with the skill loaded, and they are included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.