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 ItamarZand88/awesome-agent-conventions --skill omicverse-single-cell-clusteringgit clone --depth 1 https://github.com/ItamarZand88/awesome-agent-conventionsWrote 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/itamarzand88/awesome-agent-conventions/omicverse-single-cell-clustering)<a href="https://agentmods.dev/skills/itamarzand88/awesome-agent-conventions/omicverse-single-cell-clustering"><img src="https://agentmods.dev/badge/skills/itamarzand88/awesome-agent-conventions/omicverse-single-cell-clustering/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/itamarzand88/awesome-agent-conventions/omicverse-single-cell-clustering"><img src="https://agentmods.dev/badge/skills/itamarzand88/awesome-agent-conventions/omicverse-single-cell-clustering.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.00000 | $0.02041 |
| Opus 5 | $0.00000 | $0.01020 |
| Sonnet 5 | $0.00000 | $0.00408 |
| Haiku 4.5 | $0.00000 | $0.00204 |
Grade A, and why
omicverse-single-cell-clustering 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.
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 — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.
name: single-cell-clustering-and-batch-correction-with-omicverse title: Single-cell clustering and batch correction with omicverse description: "Single-cell clustering (Leiden, Louvain, scICE, GMM), batch correction (Harmony, scVI, BBKNN, Combat), topic modeling, and cNMF in OmicVerse."
Single-cell clustering and batch correction with omicverse
Overview
This skill distills the single-cell tutorials t_cluster.ipynb and t_single_batch.ipynb. Use it when a user wants to preprocess an AnnData object, explore clustering alternatives (Leiden, Louvain, scICE, GMM, topic/cNMF models), and evaluate or harmonise batches with omicverse utilities.
Instructions
- Import libraries and set plotting defaults
- Load
omicverse as ov,scanpy as sc, and plotting helpers (scvelo as scvwhen using dentate gyrus demo data). - Apply
ov.plot_set()orov.utils.ov_plot_set()so figures adopt omicverse styling before embedding plots.
- Load
- Load data and annotate batches
- For demo clustering, fetch
scv.datasets.dentategyrus(); for integration, read provided.h5adfiles viaov.read()and setadata.obs['batch']identifiers for each cohort. - Confirm inputs are sparse numeric matrices; convert with
adata.X = adata.X.astype(np.int64)when required for QC steps.
- For demo clustering, fetch
- Run quality control
- Execute
ov.pp.qc(adata, tresh={'mito_perc': 0.2, 'nUMIs': 500, 'detected_genes': 250}, batch_key='batch')to drop low-quality cells and inspect summary statistics per batch. - Save intermediate filtered objects (
adata.write_h5ad(...)) so users can resume from clean checkpoints.
- Execute
- Preprocess and select features
- Call
ov.pp.preprocess(adata, mode='shiftlog|pearson', n_HVGs=3000, batch_key=None)to normalise, log-transform, and flag highly variable genes; assignadata.raw = adataand subset toadata.var.highly_variable_featuresfor downstream modelling. - Scale expression (
ov.pp.scale(adata)) and compute PCA scores withov.pp.pca(adata, layer='scaled', n_pcs=50). Encourage reviewing variance explained viaov.utils.plot_pca_variance_ratio(adata).
- Call
- Construct neighbourhood graph and baseline clustering
- Build neighbour graph using
sc.pp.neighbors(adata, n_neighbors=15, n_pcs=50, use_rep='scaled|original|X_pca')orov.pp.neighbors(...). - Generate Leiden or Louvain labels through
ov.utils.cluster(adata, method='leiden'|'louvain', resolution=1),ov.single.leiden(adata, resolution=1.0), orov.pp.leiden(adata, resolution=1); remind users that resolution tunes granularity. - IMPORTANT - Dependency checks: Always verify prerequisites before clustering or plotting:
# Before clustering: check neighbors graph exists if 'neighbors' not in adata.uns: if 'X_pca' in adata.obsm: ov.pp.neighbors(adata, n_neighbors=15, use_rep='X_pca') else: raise ValueError("PCA must be computed before neighbors graph") # Before plotting by cluster: check clustering was performed if 'leiden' not in adata.obs: ov.single.leiden(adata, resolution=1.0) - Visualise embeddings with
ov.pl.embedding(adata, basis='X_umap', color=['clusters','leiden'], frameon='small', wspace=0.5)and confirm cluster separation. Always check that columns incolor=parameter exist inadata.obsbefore plotting.
- Build neighbour graph using
- Explore advanced clustering strategies
- scICE consensus: instantiate
model = ov.utils.cluster(adata, method='scICE', use_rep='scaled|original|X_pca', resolution_range=(4,20), n_boot=50, n_steps=11)and inspect stability viamodel.plot_ic(figsize=(6,4))before selectingmodel.best_kgroups. - Gaussian mixtures: run
ov.utils.cluster(..., method='GMM', n_components=21, covariance_type='full', tol=1e-9, max_iter=1000)for model-based assignments. - Topic modelling: fit
LDA_obj = ov.utils.LDA_topic(...), reviewLDA_obj.plot_topic_contributions(6), derive cluster calls withLDA_obj.predicted(k)and optionally refine usingLDA_obj.get_results_rfc(...). - cNMF programs: initialise
cnmf_obj = ov.single.cNMF(... components=np.arange(5,11), n_iter=20, num_highvar_genes=2000, output_dir=...), factorise (factorize,combine), select K viak_selection_plot, and propagate usage scores back withcnmf_obj.get_results(...)andcnmf_obj.get_results_rfc(...).
- scICE consensus: instantiate
- Evaluate clustering quality
- Compare predicted labels against known references with
adjusted_rand_score(adata.obs['clusters'], adata.obs['leiden'])and report metrics for each method (Leiden, Louvain, GMM, LDA variants, cNMF models) to justify chosen parameters.
- Compare predicted labels against known references with
- Embed with multiple layouts
- Use
ov.utils.mde(...)to create MDE projections from different latent spaces (adata.obsm["scaled|original|X_pca"], harmonised embeddings, topic compositions) and plot viaov.pl.embedding(..., color=['batch','cell_type'])orov.pl.embeddingfor consistent review of cluster/batch mixing.
- Use
- Perform batch correction and integration
- Apply
ov.single.batch_correction(adata, batch_key='batch', methods='harmony'|'combat'|'scanorama'|'scVI'|'CellANOVA', n_pcs=50, ...)sequentially to generate harmonised embeddings stored inadata.obsm(X_harmony,X_combat,X_scanorama,X_scVI,X_cellanova). ForscVI, mention latent size (n_latent=30) andgene_likelihood="nb"; for CellANOVA define control pools viacontrol_dict. - After each correction, project to 2D with
ov.utils.mdeand visualisebatchvscell_typeto check mixing and conservation.
- Apply
- Benchmark integration performance
- Persist final object (
adata.write_h5ad('neurips2021_batch_all.h5ad', compression='gzip')) and reload when necessary. - Use
scib_metrics.benchmark.Benchmarkerwith embeddings list (["X_pca", "X_combat", "X_harmony", "X_cellanova", "X_scanorama", "X_mira_topic", "X_mira_feature", "X_scVI"]) to compute batch-vs-biology trade-offs viabm.benchmark()and summarise withbm.plot_results_table(min_max_scale=False).
- Persist final object (
- General troubleshooting
- Ensure
adata.rawcaptures the unscaled log-normalised matrix before subsetting to HVGs. - Confirm
use_rep='scaled|original|X_pca'strings exist inadata.obsmprior to clustering; rerun preprocessing if missing. - Monitor memory when running cNMF or scVI; adjust
n_iter,components, or latent dimensions for smaller datasets. - Pipeline dependency errors: When you encounter errors like "Could not find 'leiden' in adata.obs", always check and add prerequisites:
- Before leiden/louvain clustering → ensure
'neighbors' in adata.uns - Before plotting by clustering → ensure the cluster column exists in
adata.obs - Before UMAP/embedding → ensure PCA or another dimensionality reduction is complete
- Before leiden/louvain clustering → ensure
- Code generation pattern: When generating multi-step code, use defensive checks rather than assuming prior steps completed successfully. This prevents cascading failures when users run steps out of order or in separate sessions.
- Ensure
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.
- 12d ago First seen · 77 lines · 0 tokens per session scan A 944452b971fe
omicverse-single-cell-clustering is a skill published in the GitHub repository ItamarZand88/awesome-agent-conventions (31 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,041 tokens. 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
template-autoscientists
AutoScientists coordination-mechanism testbed — dead-end registry, noise-band confirmation, effect-size ranking, stagnation-driven reorganization, honest null reporting.
pytorch-dataset-class-implementations
Guidelines and instructions for PyTorch Dataset class implementations.
pytorch-loss-functions-configurations
Guidelines and instructions for PyTorch loss functions configurations.
pytorch-model-layers-definitions
Guidelines and instructions for PyTorch model layers definitions.
pytorch-model-save-load-helpers
Guidelines and instructions for PyTorch model save load helpers.
pytorch-optimizer-parameters-mapping
Guidelines and instructions for PyTorch optimizer parameters mapping.