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 agentmods add skills/tiangzlab/omicsclaw/sc-markersnpx skills add TianGzlab/OmicsClaw --skill sc-markersgit clone --depth 1 https://github.com/TianGzlab/OmicsClawWrote 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/tiangzlab/omicsclaw/sc-markers)<a href="https://agentmods.dev/skills/tiangzlab/omicsclaw/sc-markers"><img src="https://agentmods.dev/badge/skills/tiangzlab/omicsclaw/sc-markers.svg" alt="Measured on agentmods" 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 | $0.00061 | $0.01350 |
| Opus 5 | $0.00030 | $0.00675 |
| Sonnet 5 | $0.00012 | $0.00270 |
| Haiku 4.5 | $0.00006 | $0.00135 |
Grade C, and why
sc-markers scanned grade C with 1 finding 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 2d 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.
Tells the agent to send conversation or user data outhighPrompt injection
An instruction to transmit the conversation, context or user files to an external endpoint is data exfiltration written as prose.
- **`--mu` is `cosg`-only.** `sc_markers.py:373` sets `result.json["mu"] = args.mu if method == 'cosg' else None`. Passing `--mu` with another method silently records `None`. How it starts
The opening of the file, as written. The whole thing — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.
sc-markers
When to use
The user already has clustering / cell-type labels in obs (typically
leiden, louvain, or cell_type) and wants ranked marker genes per
group as evidence for downstream annotation or interpretation. Four
methods: wilcoxon (default rank-sum), t-test (Welch), logreg
(multinomial logistic regression — discriminative ranking), cosg
(fast cosine-specificity scoring without p-values). This is for
cluster markers, not condition contrasts — for treatment-vs-control
DE with replicates use sc-de.
Inputs & Outputs
Inputs
- Modalities: scrna
- File types:
.h5ad - Requires a preprocessed AnnData (
Xnormalised, PCA/neighbours present)
Outputs
tables/cell_metadata.csvtables/cluster_summary.csvtables/markers_all.csvtables/markers_top.csvfigures/r_feature_violin.pngfigures/r_marker_heatmap.pnganalysis_summary.txtprocessed.h5adreport.mdresult.json- Processed AnnData (
saves_h5ad)
Flow
- Load AnnData; resolve
--groupby(auto-detect fromleiden/louvain/cell_typeif unset). - Validate parameters (
n_top ≥ 1, fractions in[0, 1],muin[0, 1]). - Run the selected ranker against
adata.X(treated as normalised expression). - Apply post-filters (
--min-in-group-fraction,--min-fold-change,--max-out-group-fraction). - Build top-N table, per-cluster summary, and figure-data CSVs.
- Save
processed.h5ad(withrank_genes_groups*purged fromuns),tables/,figures/,report.md,result.json.
Gotchas
--groupbyauto-detection requires a recognised column.sc_markers.py:135raisesValueError("Grouping column '...' not found in adata.obs")for an explicit-but-missing key;:137raisesValueError('No cluster/cell-type grouping column available for marker discovery.')when nothing amongleiden/louvain/cell_typeexists. Runsc-clusteringfirst or pass--groupby <real-obs-column>.cosgreturns no p-values.sc_markers.py:91-94registerscosgas a cosine-similarity specificity scorer —tables/markers_all.csvwill lackpvals/pvals_adjcolumns. Downstream filters that branch on adjusted p-value must handle the method ==cosgcase.--muiscosg-only.sc_markers.py:373setsresult.json["mu"] = args.mu if method == 'cosg' else None. Passing--muwith another method silently recordsNone.adata.Xis treated as normalised expression with no guard.sc_markers.pysetsexpression_source = 'adata.X'without verifying.Xis log-normalised. If.Xstill holds raw counts (e.g., the user skippedsc-preprocessing), the Wilcoxon / t-test runs on counts and the rankings are unreliable.--inputis mandatory unless--demo.sc_markers.py:316raisesValueError('--input required when not using --demo').
What ships with it
7 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.
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.
- 2d ago First seen · 111 lines · 61 tokens per session scan C 42658b2004b6
sc-markers is a skill published in the GitHub repository TianGzlab/OmicsClaw (160 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 61 tokens to every session and 1,350 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (tells the agent to send conversation or user data out). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
Virtual Embryo — atlas data + knowledge graph
Query the Virtual Embryo knowledge graph (mouse/human developmental biology: genes, anatomy, Theiler/Carnegie stages, gene expression, diseases, papers) and its 3D atlas catalog (anatomical OPT/light-sheet volumes + 3D spatial- transcriptomics datasets), and visualise those datasets in 3D with the volume3d / spatial3d…
Single-Cell Analysis Skills Index
Core skills for single-cell RNA-seq analysis: quality control, cell type annotation, and trajectory inference. These are high-priority actionable workflows — load them first for common single-cell tasks.
spatial-de
Differential expression analysis — find marker genes for clusters or compare two groups. Supports Wilcoxon rank-sum, t-test, and PyDESeq2 methods with publication-ready figures and CSV tables.
uniprot
Access UniProt for protein sequence and annotation retrieval. Use this skill when: (1) Looking up protein sequences by accession, (2) Finding functional annotations, (3) Getting domain boundaries, (4) Finding homologs and variants, (5) Cross-referencing to PDB structures. For structure retrieval, use pdb. For sequence…
uniprot
Access UniProt for protein sequence and annotation retrieval. Use this skill when: (1) Looking up protein sequences by accession, (2) Finding functional annotations, (3) Getting domain boundaries, (4) Finding homologs and variants, (5) Cross-referencing to PDB structures. For structure retrieval, use pdb. For sequence…
differential_expression_helper
Interpret a differential expression result with replicate-aware context, likely confounders, and the next analysis decision.