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 leonardodalinky/SciDER --skill huggingface-model-searchgit clone --depth 1 https://github.com/leonardodalinky/SciDERWrote 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/leonardodalinky/scider/huggingface-model-search)<a href="https://agentmods.dev/skills/leonardodalinky/scider/huggingface-model-search"><img src="https://agentmods.dev/badge/skills/leonardodalinky/scider/huggingface-model-search/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/leonardodalinky/scider/huggingface-model-search"><img src="https://agentmods.dev/badge/skills/leonardodalinky/scider/huggingface-model-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.03948 |
| Opus 5 | $0.00032 | $0.01974 |
| Sonnet 5 | $0.00013 | $0.00790 |
| Haiku 4.5 | $0.00006 | $0.00395 |
Grade A, and why
huggingface-model-search 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 251 lines — stays where its author put it; the contents beside it link to each section on GitHub.
HuggingFace Model Search
Find a pretrained model on the HuggingFace Hub to fine-tune or use zero-shot. Use this when the task spec names a dataset/metric and you need a strong backbone — e.g. AIRS-Bench tasks where training from scratch is off the table.
When to use
- The task asks you to beat a SOTA paper on a named dataset — find the model the paper (or a close descendant) released on HF.
- You need a backbone of a particular size (e.g. ~7B, ≤16B) for a task family (text classification, QA, code gen, molecular property, time series, ...).
- You want to check whether a candidate model actually exists + has the expected files (config, tokenizer, weights) before writing training code.
Method 1 — HF Hub API (preferred)
huggingface_hub is already available in most workspaces (or installable via
uv add huggingface_hub). Use HfApi().list_models(...) — it supports filters
for task, library, language, and sorts by downloads/likes/trending.
from huggingface_hub import HfApi
api = HfApi()
# Example: top-downloaded text-classification models, sorted
models = api.list_models(
task="text-classification", # pipeline_tag filter
sort="downloads", # or "likes", "trending", "lastModified"
direction=-1,
limit=30,
search="sentiment", # free-text name/tag search (optional)
)
for m in models:
print(m.id, m.downloads, m.tags[:6])
Common task= values: text-classification, text-generation,
question-answering, token-classification, translation, summarization,
sentence-similarity, image-classification, time-series-forecasting,
graph-ml. The full list is at https://huggingface.co/tasks.
Filter by size (rough — use tags + model card)
list_models doesn't expose a numeric param count, so filter by the tags
convention (7b, 13b, mistral, llama) or by the org/name prefix, then
confirm by reading the model card:
models = api.list_models(task="text-generation", tags=["7b"], sort="downloads", limit=20)
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 · 251 lines · 63 tokens per session scan A ec024aa42ecd
huggingface-model-search is a skill published in the GitHub repository leonardodalinky/SciDER (88 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 63 tokens to every session and 3,948 once invoked, about $0.0003 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.
Other skills, from other repositories
esmfold2
Biohub ESMFold2 / ESMFold2-Fast all-atom co-folding (Candido et al. 2026, github.com/Biohub/esm). Single-sequence and MSA modes; protein, DNA, RNA, ligand (CCD/SMILES), modified residues. FoldBench Ab-Ag 50-55%, PPI 70-77% DockQ-pass. Also covers the ESMC-{300M,600M,6B} protein language models from the same release…
scvi-tools
Probabilistic single-cell RNA-seq with scvi-tools — scVI for a batch-corrected latent space, scANVI for semi-supervised label transfer, and Bayesian differential expression. Reach for this skill to integrate scRNA-seq batches, embed cells for clustering, transfer annotations from a reference onto a query, or score…
boltz
Structure prediction for protein, nucleic-acid, and small-molecule complexes with Boltz-2 (Passaro & Wohlwend et al. 2025, github.com/jwohlwend/boltz). Reach for this skill to validate designed binders against a target, to co-fold a protein with a SMILES or CCD ligand, or to get an open-source AlphaFold3 alternative…
evo2
Score, embed, and generate DNA sequences with Evo 2, a long-context genomic foundation model. Use this skill when: (1) Computing per-nucleotide or per-sequence likelihoods for variant effect scoring, (2) Embedding genomic windows for downstream classification, (3) Generating DNA conditioned on a prefix, (4) Scoring…
scgpt
Embed and annotate single-cell expression data with scGPT, a foundation model for single-cell biology. Use this skill when: (1) Producing cell embeddings from an AnnData for clustering/integration, (2) Zero-shot or fine-tuned cell-type annotation, (3) Gene-level representation for perturbation/GRN tasks. For…
using-model-endpoint
Call a registered model endpoint over its native HTTP API from the endpoint's scoped inference kernel (BASEURL preloaded). Load once a task needs predictions from a registered model endpoint.